Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libav
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-11-06 23:39:17 +0300
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-11-06 23:39:17 +0300
commit41568e4a09dc0d58f28d80624bf1bc1fc9d7473b (patch)
treef17504c27b902bdf9842fe0c3cb0fb5155eacfe3 /libav
parent218baf10f879caad63ad5eac42c4e18b2123f0d3 (diff)
* put there more reasnable 15fps speed (though it's probably meaningless)
Originally committed as revision 1174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r--libav/asf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/asf.c b/libav/asf.c
index de34e99428..74d092ab9e 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 .... */