]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/v210dec.c
avformat: use ff_alloc_extradata()
[ffmpeg] / libavcodec / v210dec.c
index c6dba23bd4b1f9ab3a96b1f553207b229fb93721..ae0395254ef512d75ec6298c9aa6c5b1637ddf81 100644 (file)
@@ -174,12 +174,12 @@ static const AVClass v210dec_class = {
 
 AVCodec ff_v210_decoder = {
     .name           = "v210",
+    .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_V210,
     .priv_data_size = sizeof(V210DecContext),
     .init           = decode_init,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
     .priv_class     = &v210dec_class,
 };