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/cavsdec.c | |
parent | f099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff) | |
download | ffmpeg-63d744e2be39466e3a734c2987cd713e0bac101e.tar.gz |
av_log_missing_feature() ---> avpriv_report_missing_feature()
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index fbc21c4d81..b19f09065d 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -1081,7 +1081,8 @@ static int decode_seq_header(AVSContext *h) width = get_bits(&h->gb, 14); height = get_bits(&h->gb, 14); if ((h->width || h->height) && (h->width != width || h->height != height)) { - av_log_missing_feature(h->avctx, "Width/height changing in CAVS", 0); + avpriv_report_missing_feature(h->avctx, + "Width/height changing in CAVS"); return AVERROR_PATCHWELCOME; } h->width = width; |