]> git.sesse.net Git - ffmpeg/commitdiff
bink: decode audio track identifiers into AVStream.id
authorPeter Ross <pross@xvid.org>
Sun, 20 Feb 2011 02:15:38 +0000 (13:15 +1100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 26 Feb 2011 02:16:09 +0000 (03:16 +0100)
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 588a3ffd9687cbef60cc26d5b3a247b8ecdbf75b)

libavformat/bink.c

index 60f4081bfb1a60f47b837e494a804da8227319cf..79c3a25ec5da7d92c7161e3fdbed4698713e98d4 100644 (file)
@@ -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 */