-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmp4i_ext.cpp
More file actions
49 lines (41 loc) · 891 Bytes
/
mp4i_ext.cpp
File metadata and controls
49 lines (41 loc) · 891 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
41
42
43
44
45
46
47
48
49
/* @mediagen - tune build -
*
* mp4i_ext.cpp
*
* This file was automatically generated
* from the source file:
* 'mp4i_ext.fl'
*
* For information visit the Flavor Web site at:
* http://flavor.sourceforge.net
*
* -- Do not edit by hand --
*
*/
#include "stdafx.h"
#include <TBitstream.h>
#include "mp4i_ext.h"
__ALX_BEGIN_NAMESPACE
int ilst_box::get(IBitstream &var_bs) {
int var_ret = 0;
subtype = 0;
return var_ret;
}
int ilst_box::put(IBitstream &var_bs) {
int var_ret = 0;
subtype = 0;
return var_ret;
}
int data_box::get(IBitstream &var_bs) {
int var_ret = 0;
var_ret += FullBox::get(var_bs);
reserved = var_bs.getbits(32);
return var_ret;
}
int data_box::put(IBitstream &var_bs) {
int var_ret = 0;
var_ret += FullBox::put(var_bs);
var_bs.putbits(reserved, 32);
return var_ret;
}
__ALX_END_NAMESPACE