Browse Source

avcodec/xwddec: use avpriv_report_missing_feature

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol 12 years ago
parent
commit
85b56e4803
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/xwddec.c

+ 1
- 1
libavcodec/xwddec.c View File

@@ -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;
}



Loading…
Cancel
Save