diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-05-26 00:45:02 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-05-26 00:45:02 +0000 |
commit | b2677aa2a1e3a76f9281baebfeb4377e8b4392b9 (patch) | |
tree | 5fb212fe3b4eed3dc7923f70e60c7c932e1087c3 | |
parent | c8b9377d1573388f1c8c68acb1a640ec2e341b91 (diff) | |
download | ffmpeg-b2677aa2a1e3a76f9281baebfeb4377e8b4392b9.tar.gz |
parse audio in ogm demuxer.
fixes issue165.
Originally committed as revision 13407 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/oggparseogm.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |