mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avformat/dsfdec: fix calculation of size of data chunk
Ignore extra 12 bytes that belong to tag and size. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
e44498984d
commit
7c000b9cea
@ -137,8 +137,8 @@ static int dsf_read_header(AVFormatContext *s)
|
||||
dsf->data_end = avio_tell(pb);
|
||||
if (avio_rl32(pb) != MKTAG('d', 'a', 't', 'a'))
|
||||
return AVERROR_INVALIDDATA;
|
||||
dsf->data_size = avio_rl64(pb);
|
||||
dsf->data_end += dsf->data_size;
|
||||
dsf->data_size = avio_rl64(pb) - 12;
|
||||
dsf->data_end += dsf->data_size + 12;
|
||||
s->internal->data_offset = avio_tell(pb);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user