Browse Source

mp3demux: fix off by 1 error

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
f46185c289
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mp3dec.c

+ 1
- 1
libavformat/mp3dec.c View File

@@ -183,7 +183,7 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
return AVERROR_EOF;
}

if (ret > ID3v1_TAG_SIZE &&
if (ret >= ID3v1_TAG_SIZE &&
memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
ret -= ID3v1_TAG_SIZE;



Loading…
Cancel
Save