]> git.sesse.net Git - ffmpeg/commitdiff
mpegaudiodec_template: disable CRC checking for layers 1 and 2
authorLynne <dev@lynne.ee>
Sun, 2 Aug 2020 20:45:00 +0000 (22:45 +0200)
committerLynne <dev@lynne.ee>
Sun, 2 Aug 2020 20:51:55 +0000 (22:51 +0200)
Layers 1 and 2 use lengths in bits which are not a multiple of 8,
and our CRC works on a per-byte basis.

libavcodec/mpegaudiodec_template.c

index 3d7e3ba4f2e021bdc9f596d8c2b901e8d7149eb2..f03d7bc2753ee7e097fb640a04f5ca1bcc33fb5d 100644 (file)
@@ -1566,7 +1566,7 @@ static int mp_decode_frame(MPADecodeContext *s, OUT_INT **samples,
 
     init_get_bits(&s->gb, buf + HEADER_SIZE, (buf_size - HEADER_SIZE) * 8);
 
-    if (s->error_protection) {
+    if (s->error_protection && s->layer == 3) {
         uint16_t crc = get_bits(&s->gb, 16);
         if (s->err_recognition & AV_EF_CRCCHECK) {
             const int sec_len = s->lsf ? ((s->nb_channels == 1) ? 9  : 17) :