]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bfi.c
Use av_frame_copy() to simplify code where appropriate.
[ffmpeg] / libavcodec / bfi.c
index 10544c5569f4362f6d530bf70b0ae9bac7945110..75b6710189ee686771d84b51ad9db84461b36bee 100644 (file)
@@ -173,6 +173,7 @@ static av_cold int bfi_decode_close(AVCodecContext *avctx)
 
 AVCodec ff_bfi_decoder = {
     .name           = "bfi",
+    .long_name      = NULL_IF_CONFIG_SMALL("Brute Force & Ignorance"),
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_BFI,
     .priv_data_size = sizeof(BFIContext),
@@ -180,5 +181,4 @@ AVCodec ff_bfi_decoder = {
     .close          = bfi_decode_close,
     .decode         = bfi_decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name      = NULL_IF_CONFIG_SMALL("Brute Force & Ignorance"),
 };