]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/v210dec.c
vc1dsp: K&R formatting cosmetics
[ffmpeg] / libavcodec / v210dec.c
index b8b647e6f6e9b7c32fb41a0d95f2753384e0c0e5..8827397071efac9c1ddc10325193c5581c985513 100644 (file)
@@ -108,10 +108,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
 
 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,
     .init           = decode_init,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
 };