1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

Use avpriv_report_missing_feature() where appropriate

This commit is contained in:
Diego Biurrun
2015-12-16 18:01:34 +01:00
parent 59d2b00d20
commit 67deba8a41
33 changed files with 73 additions and 79 deletions

View File

@@ -396,7 +396,7 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
}
break;
default:
av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size);
avpriv_report_missing_feature(avctx, "Pixel size %d", pixel_size);
ret = AVERROR_PATCHWELCOME;
goto done;
}