forked from ponchio/untrunc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmp4.h
More file actions
40 lines (29 loc) · 590 Bytes
/
mp4.h
File metadata and controls
40 lines (29 loc) · 590 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef MP4_H
#define MP4_H
#include <vector>
#include <string>
#include <stdio.h>
#include "track.h"
class Atom;
class File;
class AVFormatContext;
class Mp4 {
public:
int timescale;
int duration;
Mp4();
~Mp4();
void open(std::string filename);
void printMediaInfo();
void printAtoms();
void saveVideo(std::string filename);
void analyze();
void writeTracksToAtoms();
void repair(std::string filename);
protected:
Atom *root;
std::vector<Track> tracks;
AVFormatContext *context;
void parseTracks();
};
#endif // MP4_H