diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-29 19:07:04 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-29 19:07:04 +0000 |
commit | ce863d7f3647ed1aca863b820db9edbdad28c871 (patch) | |
tree | 5c1c3f19d38b216c0e7e6a8cf993d76fe368b2f3 /libavcodec/ac3dec.c | |
parent | 38e54a75abf2dbf41773f584a0afc6492baa099a (diff) | |
download | ffmpeg-ce863d7f3647ed1aca863b820db9edbdad28c871.tar.gz |
Rename ff_log_missing_feature() to av_log_missing_feature().
Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 5feb189519..99cd4e4e07 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -820,7 +820,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) /* spectral extension strategy */ if (s->eac3 && (!blk || get_bits1(gbc))) { if (get_bits1(gbc)) { - ff_log_missing_feature(s->avctx, "Spectral extension", 1); + av_log_missing_feature(s->avctx, "Spectral extension", 1); return -1; } /* TODO: parse spectral extension strategy info */ @@ -845,7 +845,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) /* check for enhanced coupling */ if (s->eac3 && get_bits1(gbc)) { /* TODO: parse enhanced coupling strategy info */ - ff_log_missing_feature(s->avctx, "Enhanced coupling", 1); + av_log_missing_feature(s->avctx, "Enhanced coupling", 1); return -1; } |