From 85b56e4803c1dcee405ca145f78785c9da548d2b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 7 Oct 2013 13:41:50 +0000 Subject: avcodec/xwddec: use avpriv_report_missing_feature Signed-off-by: Paul B Mahol --- libavcodec/xwddec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/xwddec.c b/libavcodec/xwddec.c index 6d952be3b4..c28e19fa8b 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; } -- cgit v1.2.3