summaryrefslogtreecommitdiff
path: root/libavformat/bink.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2010-01-31 16:21:49 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2010-01-31 16:21:49 +0000
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) {