Skip to content
Snippets Groups Projects
Commit 6a22f82c authored by Peter Ross's avatar Peter Ross Committed by Michael Niedermayer
Browse files

bink: decode audio track identifiers into AVStream.id


Signed-off-by: default avatarRonald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 588a3ffd)
parent 4913af0c
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,8 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -143,7 +143,8 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
ast->codec->channels = flags & BINK_AUD_STEREO ? 2 : 1; 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 */ /* frame index table */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment