From 41568e4a09dc0d58f28d80624bf1bc1fc9d7473b Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 6 Nov 2002 20:39:17 +0000 Subject: [PATCH] * put there more reasnable 15fps speed (though it's probably meaningless) Originally committed as revision 1174 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libav/asf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libav/asf.c b/libav/asf.c index de34e99..74d092a 100644 --- a/libav/asf.c +++ b/libav/asf.c @@ -817,7 +817,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) get_le32(pb); st->codec.codec_type = type; - st->codec.frame_rate = 1000000; // us + st->codec.frame_rate = 15 * s->pts_den / s->pts_num; // 15 fps default if (type == CODEC_TYPE_AUDIO) { get_wav_header(pb, &st->codec, 1); /* We have to init the frame size at some point .... */ -- 2.7.4