File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 10
10
%include " AvTranscoder/swig/avException.i"
11
11
%include " AvTranscoder/swig/avExport.i"
12
12
%include " AvTranscoder/swig/avDocumentation.i"
13
+ %include " AvTranscoder/swig/avMediaType.i"
13
14
%include " AvTranscoder/swig/avRational.i"
14
15
%include " AvTranscoder/swig/avLogLevel.i"
15
16
Original file line number Diff line number Diff line change
1
+ // / ffmpeg/libav media type
2
+ enum AVMediaType {
3
+ AVMEDIA_TYPE_UNKNOWN = -1 , // /< Usually treated as AVMEDIA_TYPE_DATA
4
+ AVMEDIA_TYPE_VIDEO,
5
+ AVMEDIA_TYPE_AUDIO,
6
+ AVMEDIA_TYPE_DATA, // /< Opaque data information usually continuous
7
+ AVMEDIA_TYPE_SUBTITLE,
8
+ AVMEDIA_TYPE_ATTACHMENT, // /< Opaque data information usually sparse
9
+ AVMEDIA_TYPE_NB
10
+ };
Original file line number Diff line number Diff line change 1
- /* *
2
- * Rational number numerator/denominator.
3
- */
1
+ // / ffmpeg/libav Rational number numerator/denominator
4
2
typedef struct AVRational {
5
3
int num; // /< numerator
6
4
int den; // /< denominator
You can’t perform that action at this time.
0 commit comments