projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c24b404
)
Add AVClass for the private context, this will be used for codec specific options.
author
Michael Niedermayer
<michaelni@gmx.at>
Wed, 29 Sep 2010 11:59:25 +0000
(11:59 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 29 Sep 2010 11:59:25 +0000
(11:59 +0000)
Originally committed as revision 25250 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/avcodec.h
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/avcodec.h
b/libavcodec/avcodec.h
index
9f88899
..
c12d4eb
100644
(file)
--- a/
libavcodec/avcodec.h
+++ b/
libavcodec/avcodec.h
@@
-2762,6
+2762,7
@@
typedef struct AVCodec {
const enum SampleFormat *sample_fmts; ///< array of supported sample formats, or NULL if unknown, array is terminated by -1
const int64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0
uint8_t max_lowres; ///< maximum value for lowres supported by the decoder
+ AVClass *priv_class; ///< AVClass for the private context
} AVCodec;
/**