diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-01-31 16:21:49 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-01-31 16:21:49 +0000 |
commit | 971c55f18680020908eeae3972bd20b36921b7e1 (patch) | |
tree | e827d862253edb8e50803ebd54f9f2bf5f955e41 /libavformat/bink.c | |
parent | abafc87c46ba7c61075d39b658525f3d8f63274d (diff) | |
download | ffmpeg-971c55f18680020908eeae3972bd20b36921b7e1.tar.gz |
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.c | 2 |
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) { |