]> git.sesse.net Git - ffmpeg/commitdiff
avformat/wavdec: Detect wrongly interpreted specification about the sample value...
authorMichael Niedermayer <michael@niedermayer.cc>
Thu, 13 Aug 2015 10:14:53 +0000 (12:14 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 13 Aug 2015 10:38:31 +0000 (12:38 +0200)
Fixes Ticket703

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/wavdec.c

index 85e7da67886966db6beabe495503833ae3e328c0..666fa31f1ace859c57c1864b562548eb17b9f61e 100644 (file)
@@ -434,6 +434,15 @@ break_loop:
         data_size = 0;
     }
 
+    if (   st->codec->bit_rate > 0 && data_size > 0
+        && st->codec->sample_rate > 0
+        && sample_count > 0 && st->codec->channels > 1
+        && sample_count % st->codec->channels == 0) {
+        if (fabs(8.0 * data_size * st->codec->channels * st->codec->sample_rate /
+            sample_count /st->codec->bit_rate - 1.0) < 0.3)
+            sample_count /= st->codec->channels;
+    }
+
     if (   data_size > 0 && sample_count && st->codec->channels
         && (data_size << 3) / sample_count / st->codec->channels > st->codec->bits_per_coded_sample  + 1) {
         av_log(s, AV_LOG_WARNING, "ignoring wrong sample_count %"PRId64"\n", sample_count);