diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 23:53:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 20:42:21 +0100 |
commit | 63d744e2be39466e3a734c2987cd713e0bac101e (patch) | |
tree | ccea7c1ea4dd0e8a160472cd67a053874864208a /libavcodec/mjpegdec.c | |
parent | f099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff) | |
download | ffmpeg-63d744e2be39466e3a734c2987cd713e0bac101e.tar.gz |
av_log_missing_feature() ---> avpriv_report_missing_feature()
Diffstat (limited to 'libavcodec/mjpegdec.c')
-rw-r--r-- | libavcodec/mjpegdec.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; } |