summaryrefslogtreecommitdiff
path: root/libavformat/cafdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-19 18:27:46 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-19 18:27:51 +0200
commitb07dc81a9e35ddd2b2ac0109ae2e97b86ff4a4a9 (patch)
treeeaf97664c46d8222fef05af2556746d4d297a26e /libavformat/cafdec.c
parent2ba58bec20b0039ccc40cfba59af6d56de16e8b1 (diff)
parent86dfcfd0e30d6645eea2c63c1c60a0550e7c97ea (diff)
Merge commit '86dfcfd0e30d6645eea2c63c1c60a0550e7c97ea'
* commit '86dfcfd0e30d6645eea2c63c1c60a0550e7c97ea': mov: Drop unused parameter from ff_mov_read_esds() Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r--libavformat/cafdec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index e53102b368..80c5bb5962 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -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) {