[FFmpeg-cvslog] avcodec/xwddec: use avpriv_report_missing_feature

Paul B Mahol git at videolan.org
Tue Oct 8 16:53:42 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Mon Oct  7 13:41:50 2013 +0000| [85b56e4803c1dcee405ca145f78785c9da548d2b] | committer: Paul B Mahol

avcodec/xwddec: use avpriv_report_missing_feature

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85b56e4803c1dcee405ca145f78785c9da548d2b
---

 libavcodec/xwddec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/xwddec.c b/libavcodec/xwddec.c
index 6d952be..c28e19f 100644
--- a/libavcodec/xwddec.c
+++ b/libavcodec/xwddec.c
@@ -141,7 +141,7 @@ static int xwd_decode_frame(AVCodecContext *avctx, void *data,
     }
 
     if (pixformat != XWD_Z_PIXMAP) {
-        av_log(avctx, AV_LOG_ERROR, "pixmap format %d unsupported\n", pixformat);
+        avpriv_report_missing_feature(avctx, "Pixmap format %d", pixformat);
         return AVERROR_PATCHWELCOME;
     }
 



More information about the ffmpeg-cvslog mailing list