summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-12-21 02:01:32 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-12-21 02:01:32 +0000
commit6260de6ab09a7be7195a9085c04e2646d20ac142 (patch)
tree18b77f6593f8fa28667f252632fa94dc002e851a /libavformat/asf.c
parentc13449112b587e04f298d05340546d994f795e96 (diff)
fix regression test failure
Originally committed as revision 3767 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 64444b1277..b7ae087fe5 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -218,7 +218,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
get_le32(pb);
st->codec.codec_type = type;
/* 1 fps default (XXX: put 0 fps instead) */
- st->codec.frame_rate = 1;
+ st->codec.frame_rate = 1000;
st->codec.frame_rate_base = 1;
if (type == CODEC_TYPE_AUDIO) {
get_wav_header(pb, &st->codec, type_specific_size);