Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2010-01-31 19:21:49 +0300
committerKostya Shishkov <kostya.shishkov@gmail.com>2010-01-31 19:21:49 +0300
commit971c55f18680020908eeae3972bd20b36921b7e1 (patch)
treee827d862253edb8e50803ebd54f9f2bf5f955e41 /libavformat/bink.c
parentabafc87c46ba7c61075d39b658525f3d8f63274d (diff)
Bink video codec id is there, demuxer can use it
Originally committed as revision 21574 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/bink.c')
-rw-r--r--libavformat/bink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/bink.c b/libavformat/bink.c
index c21db196ab..7d69387deb 100644
--- a/libavformat/bink.c
+++ b/libavformat/bink.c
@@ -115,7 +115,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
url_fskip(pb, 4);
vst->codec->codec_type = CODEC_TYPE_VIDEO;
- vst->codec->codec_id = 0; /* FIXME: CODEC_ID_BINKVIDEO */
+ vst->codec->codec_id = CODEC_ID_BINKVIDEO;
bink->num_audio_tracks = get_le32(pb);
if (bink->num_audio_tracks > BINK_MAX_AUDIO_TRACKS) {