summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-07-12 18:42:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-07-12 18:42:00 +0000
commit0bef08e5169fb3bd45346ff1b3328ce6df5262ab (patch)
tree8a5b3527c3651598ccaa6ec76e282320f68e8c55 /libavformat/asf.c
parent3e86dba24b61527ecbd1780f3f7d3bd159c203d9 (diff)
New codec probing system try #1.
Originally committed as revision 14184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r--libavformat/asf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index dc6557402a..f285b73903 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -264,7 +264,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
if (is_dvr_ms_audio) {
// codec_id and codec_tag are unreliable in dvr_ms
// files. Set them later by probing stream.
- st->codec->codec_id = CODEC_ID_NONE;
+ st->codec->codec_id = CODEC_ID_PROBE;
st->codec->codec_tag = 0;
}
st->need_parsing = AVSTREAM_PARSE_FULL;