diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 17:19:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 6f6b0311a339c748b7be5bc15bd496321b3261b2 (patch) | |
tree | 1e79ce99d60cc438d0ea6392ad6920a21f3a9efa /libavcodec/vorbis.c | |
parent | 72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (diff) | |
download | ffmpeg-6f6b0311a339c748b7be5bc15bd496321b3261b2.tar.gz |
avcodec: Drop some silly commented-out av_log() invocations
Diffstat (limited to 'libavcodec/vorbis.c')
-rw-r--r-- | libavcodec/vorbis.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index 16fb998fab..78a24678f1 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -62,10 +62,8 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num) for (p = 0; (bits[p] == 0) && (p < num); ++p) ; - if (p == num) { -// av_log(vc->avccontext, AV_LOG_INFO, "An empty codebook. Heh?! \n"); + if (p == num) return 0; - } codes[p] = 0; if (bits[p] > 32) |