Commit 85b56e48 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/xwddec: use avpriv_report_missing_feature

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 3abbf209
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment