diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-05 21:09:51 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-06 09:16:06 +0200 |
commit | d97efd7f879779034cca0bd16acceed47718e04e (patch) | |
tree | d790cf3cac34a9350990a0014b93425597cd040e /libavcodec/avcodec.h | |
parent | 4418aa9cb3b2f0b83748e37d2952560cf84b3611 (diff) | |
download | ffmpeg-d97efd7f879779034cca0bd16acceed47718e04e.tar.gz |
libx264: support 9- and 10-bit output.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2e37f5a1b1..5a69c24ea0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2984,6 +2984,11 @@ typedef struct AVCodec { * Private codec-specific defaults. */ const AVCodecDefault *defaults; + + /** + * Initialize codec static data, called from avcodec_register(). + */ + void (*init_static_data)(struct AVCodec *codec); } AVCodec; /** |