diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-12 18:42:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-12 18:42:00 +0000 |
commit | 0bef08e5169fb3bd45346ff1b3328ce6df5262ab (patch) | |
tree | 8a5b3527c3651598ccaa6ec76e282320f68e8c55 /libavformat/asf.c | |
parent | 3e86dba24b61527ecbd1780f3f7d3bd159c203d9 (diff) | |
download | ffmpeg-0bef08e5169fb3bd45346ff1b3328ce6df5262ab.tar.gz |
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.c | 2 |
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; |