forked from ponchio/untrunc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp4.h
66 lines (47 loc) · 1.68 KB
/
mp4.h
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//==================================================================//
/*
Untrunc - mp4.h
Untrunc is GPL software; you can freely distribute,
redistribute, modify & use under the terms of the GNU General
Public License; either version 2 or its successor.
Untrunc is distributed under the GPL "AS IS", without
any warranty; without the implied warranty of merchantability
or fitness for either an expressed or implied particular purpose.
Please see the included GNU General Public License (GPL) for
your rights and further details; see the file COPYING. If you
cannot, write to the Free Software Foundation, 59 Temple Place
Suite 330, Boston, MA 02111-1307, USA. Or www.fsf.org
Copyright 2010 Federico Ponchio
*/
//==================================================================//
#ifndef MP4_H
#define MP4_H
#include <vector>
#include <string>
#include "track.h"
class Atom;
struct AVFormatContext;
class Mp4 {
public:
int timescale;
int duration;
Mp4();
~Mp4();
void open (std::string filename);
bool repair (std::string corrupt_filename);
bool save (std::string output_filename);
bool saveVideo(std::string output_filename) { return save(output_filename); }
void printMediaInfo();
void printAtoms();
void analyze(bool interactive = true);
static bool makeStreamable(std::string filename, std::string output_filename);
protected:
std::string file_name;
Atom *root;
AVFormatContext *context;
std::vector<Track> tracks;
void close();
bool parseTracks();
void writeTracksToAtoms();
};
#endif // MP4_H