blob: 472d8a0e1c20e1f92bc5f0b1551000e8e62835ec (
plain)
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
|
#ifndef MP4V2_IMPL_SRC_H
#define MP4V2_IMPL_SRC_H
///////////////////////////////////////////////////////////////////////////////
#include "libplatform/platform.h"
#include <mp4v2/mp4v2.h>
///////////////////////////////////////////////////////////////////////////////
namespace mp4v2 { namespace impl {
using namespace mp4v2::platform;
using io::File;
using io::FileSystem;
}} // namspace mp4v2::impl
///////////////////////////////////////////////////////////////////////////////
#include "text.h"
#include "enum.h"
#include "exception.h"
#include "bmff/typebmff.h"
#include "itmf/type.h"
#include "util.h"
#include "log.h"
#include "mp4util.h"
#include "mp4array.h"
#include "mp4track.h"
#include "mp4file.h"
#include "mp4property.h"
#include "mp4container.h"
#include "mp4atom.h"
#include "atoms.h"
#include "bmff/bmff.h"
#include "itmf/itmf.h"
#include "qtff/qtff.h"
#include "mp4descriptor.h"
#include "descriptors.h"
#include "ocidescriptors.h"
#include "qosqualifiers.h"
#include "odcommands.h"
#include "rtphint.h"
///////////////////////////////////////////////////////////////////////////////
#endif // MP4V2_IMPL_SRC_H
|