From d97efd7f879779034cca0bd16acceed47718e04e Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 5 Oct 2011 21:09:51 +0200 Subject: libx264: support 9- and 10-bit output. --- libavcodec/utils.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/utils.c') 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) -- cgit v1.2.3