From b2677aa2a1e3a76f9281baebfeb4377e8b4392b9 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Mon, 26 May 2008 00:45:02 +0000 Subject: parse audio in ogm demuxer. fixes issue165. Originally committed as revision 13407 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/oggparseogm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/oggparseogm.c') diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c index 6067f95d11..af1e4cfaaa 100644 --- a/libavformat/oggparseogm.c +++ b/libavformat/oggparseogm.c @@ -68,6 +68,7 @@ ogm_header(AVFormatContext *s, int idx) acid[4] = 0; cid = strtol(acid, NULL, 16); st->codec->codec_id = codec_get_id(codec_wav_tags, cid); + st->need_parsing = AVSTREAM_PARSE_FULL; } p += 4; /* useless size field */ -- cgit v1.2.3