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/utils.c | |
parent | 4418aa9cb3b2f0b83748e37d2952560cf84b3611 (diff) | |
download | ffmpeg-d97efd7f879779034cca0bd16acceed47718e04e.tar.gz |
libx264: support 9- and 10-bit output.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index b598942354..1c95fa1236 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -107,6 +107,9 @@ void avcodec_register(AVCodec *codec) while (*p != NULL) p = &(*p)->next; *p = codec; codec->next = NULL; + + if (codec->init_static_data) + codec->init_static_data(codec); } unsigned avcodec_get_edge_width(void) |