aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2011-02-20 13:15:38 +1100
committerMichael Niedermayer <michaelni@gmx.at>2011-02-26 03:16:09 +0100
commit6a22f82cc64cc080467d52d05abf59d649ba2ac3 (patch)
tree3d8893391e8b465cac22fc439c1087204a51e675
parent4913af0cd35917d3173f99e1b214415673869889 (diff)
downloadffmpeg-6a22f82cc64cc080467d52d05abf59d649ba2ac3.tar.gz
bink: decode audio track identifiers into AVStream.id
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 588a3ffd9687cbef60cc26d5b3a247b8ecdbf75b)
-rw-r--r--libavformat/bink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/bink.c b/libavformat/bink.c
index 60f4081bfb..79c3a25ec5 100644
--- a/libavformat/bink.c
+++ b/libavformat/bink.c
@@ -143,7 +143,8 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
ast->codec->channels = flags & BINK_AUD_STEREO ? 2 : 1;
}
- url_fskip(pb, 4 * bink->num_audio_tracks);
+ for (i = 0; i < bink->num_audio_tracks; i++)
+ s->streams[i + 1]->id = avio_rl32(pb);
}
/* frame index table */