summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-10-07 13:41:50 +0000
committerPaul B Mahol <onemda@gmail.com>2013-10-08 12:40:33 +0000
commit85b56e4803c1dcee405ca145f78785c9da548d2b (patch)
tree3cf2415c97f557ab451ee9985bef1dabecaf7941 /libavcodec
parent3abbf20962f7285e0bcdb511aab14b600ddfe345 (diff)
avcodec/xwddec: use avpriv_report_missing_feature
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/xwddec.c2
1 files changed, 1 insertions, 1 deletions
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;
}