libx264: support 9- and 10-bit output.

This commit is contained in:
Anton Khirnov
2011-10-05 21:09:51 +02:00
parent 4418aa9cb3
commit d97efd7f87
4 changed files with 37 additions and 2 deletions

View File

@@ -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)