mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 18:10:13 +01:00
mov: Drop unused parameter from ff_mov_read_esds()
This is cleaner and avoids an uninitialized variable warning with MSVC.
This commit is contained in:
@@ -109,10 +109,9 @@ static int read_kuki_chunk(AVFormatContext *s, int64_t size)
|
||||
The lavc AAC decoder requires the data from the codec specific
|
||||
description as extradata input. */
|
||||
int strt, skip;
|
||||
MOVAtom atom;
|
||||
|
||||
strt = avio_tell(pb);
|
||||
ff_mov_read_esds(s, pb, atom);
|
||||
ff_mov_read_esds(s, pb);
|
||||
skip = size - (avio_tell(pb) - strt);
|
||||
if (skip < 0 || !st->codec->extradata ||
|
||||
st->codec->codec_id != AV_CODEC_ID_AAC) {
|
||||
|
||||
Reference in New Issue
Block a user