From 971c55f18680020908eeae3972bd20b36921b7e1 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 31 Jan 2010 16:21:49 +0000 Subject: Bink video codec id is there, demuxer can use it Originally committed as revision 21574 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/bink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3