mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avcodec/xwddec: use avpriv_report_missing_feature
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
3abbf20962
commit
85b56e4803
@ -141,7 +141,7 @@ static int xwd_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pixformat != XWD_Z_PIXMAP) {
|
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;
|
return AVERROR_PATCHWELCOME;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user