[SCM] libav/experimental: huffyuv: Use avpriv_report_missing_feature() where appropriate

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:04:10 UTC 2014


The following commit has been merged in the experimental branch:
commit 3160bdc7f7bc27bb67561270b4e730cd2d844afd
Author: Diego Biurrun <diego at biurrun.de>
Date:   Sun Aug 3 11:02:22 2014 -0700

    huffyuv: Use avpriv_report_missing_feature() where appropriate

diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c
index b2fc3aa..ebde3ca 100644
--- a/libavcodec/huffyuvdec.c
+++ b/libavcodec/huffyuvdec.c
@@ -530,9 +530,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
             p->data[0][1] = get_bits(&s->gb, 8);
             p->data[0][0] = get_bits(&s->gb, 8);
 
-            av_log(avctx, AV_LOG_ERROR,
-                   "YUY2 output is not implemented yet\n");
-            return -1;
+            avpriv_report_missing_feature(avctx, "YUY2 output");
+            return AVERROR_PATCHWELCOME;
         } else {
             leftv         =
             p->data[2][0] = get_bits(&s->gb, 8);
@@ -735,9 +734,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
                        "prediction type not supported!\n");
             }
         } else {
-            av_log(avctx, AV_LOG_ERROR,
-                   "BGR24 output is not implemented yet\n");
-            return -1;
+            avpriv_report_missing_feature(avctx, "BGR24 output");
+            return AVERROR_PATCHWELCOME;
         }
     }
     emms_c();

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list