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/flacdec.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/flacdec.c')
-rw-r--r-- | libavcodec/flacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index 2d46ccda66..4ff7fae057 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -448,7 +448,7 @@ static inline int decode_subframe(FLACContext *s, int channel) s->curr_bps -= wasted; } if (s->curr_bps > 32) { - ff_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0); + av_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0); return -1; } |