diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-10-07 13:41:50 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-10-08 12:40:33 +0000 |
commit | 85b56e4803c1dcee405ca145f78785c9da548d2b (patch) | |
tree | 3cf2415c97f557ab451ee9985bef1dabecaf7941 /libavcodec/xwddec.c | |
parent | 3abbf20962f7285e0bcdb511aab14b600ddfe345 (diff) | |
download | ffmpeg-85b56e4803c1dcee405ca145f78785c9da548d2b.tar.gz |
avcodec/xwddec: use avpriv_report_missing_feature
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/xwddec.c')
-rw-r--r-- | libavcodec/xwddec.c | 2 |
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; } |