From 63d744e2be39466e3a734c2987cd713e0bac101e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 25 Feb 2013 23:53:52 +0100 Subject: av_log_missing_feature() ---> avpriv_report_missing_feature() --- libavcodec/mjpegdec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/mjpegdec.c') diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 17930080f5..abc32d11c1 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -243,9 +243,9 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s) nb_components > MAX_COMPONENTS) return -1; if (s->ls && !(s->bits <= 8 || nb_components == 1)) { - av_log_missing_feature(s->avctx, - "For JPEG-LS anything except <= 8 bits/component" - " or 16-bit gray", 0); + avpriv_report_missing_feature(s->avctx, + "JPEG-LS that is not <= 8 " + "bits/component or 16-bit gray"); return AVERROR_PATCHWELCOME; } s->nb_components = nb_components; @@ -270,7 +270,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s) } if (s->ls && (s->h_max > 1 || s->v_max > 1)) { - av_log_missing_feature(s->avctx, "Subsampling in JPEG-LS", 0); + avpriv_report_missing_feature(s->avctx, "Subsampling in JPEG-LS"); return AVERROR_PATCHWELCOME; } -- cgit v1.2.3