Commit cabb47df authored by jbr's avatar jbr

parse audio in ogm demuxer.

fixes issue165.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13407 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e1d10bdf
...@@ -68,6 +68,7 @@ ogm_header(AVFormatContext *s, int idx) ...@@ -68,6 +68,7 @@ ogm_header(AVFormatContext *s, int idx)
acid[4] = 0; acid[4] = 0;
cid = strtol(acid, NULL, 16); cid = strtol(acid, NULL, 16);
st->codec->codec_id = codec_get_id(codec_wav_tags, cid); st->codec->codec_id = codec_get_id(codec_wav_tags, cid);
st->need_parsing = AVSTREAM_PARSE_FULL;
} }
p += 4; /* useless size field */ p += 4; /* useless size field */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment