[FFmpeg-cvslog] avcodec/dca: remove useless debug message

foo86 git at videolan.org
Fri May 20 19:59:57 CEST 2016


ffmpeg | branch: master | foo86 <foobaz86 at gmail.com> | Fri May 13 12:48:32 2016 +0300| [b5cda23039115e2bb83304462723c5f198c4418e] | committer: James Almer

avcodec/dca: remove useless debug message

Most DTS-in-WAV streams trigger this, making debug output hard to read.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b5cda23039115e2bb83304462723c5f198c4418e
---

 libavcodec/dca_core.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavcodec/dca_core.c b/libavcodec/dca_core.c
index f6c22ca..46825ed 100644
--- a/libavcodec/dca_core.c
+++ b/libavcodec/dca_core.c
@@ -1921,10 +1921,8 @@ int ff_dca_core_parse(DCACoreDecoder *s, uint8_t *data, int size)
         return ret;
 
     // Workaround for DTS in WAV
-    if (s->frame_size > size && s->frame_size < size + 4) {
-        av_log(s->avctx, AV_LOG_DEBUG, "Working around excessive core frame size (%d > %d)\n", s->frame_size, size);
+    if (s->frame_size > size && s->frame_size < size + 4)
         s->frame_size = size;
-    }
 
     if (ff_dca_seek_bits(&s->gb, s->frame_size * 8)) {
         av_log(s->avctx, AV_LOG_ERROR, "Read past end of core frame\n");



More information about the ffmpeg-cvslog mailing list