diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-06 20:39:17 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-06 20:39:17 +0000 |
commit | 41568e4a09dc0d58f28d80624bf1bc1fc9d7473b (patch) | |
tree | f17504c27b902bdf9842fe0c3cb0fb5155eacfe3 | |
parent | 218baf10f879caad63ad5eac42c4e18b2123f0d3 (diff) | |
download | ffmpeg-41568e4a09dc0d58f28d80624bf1bc1fc9d7473b.tar.gz |
* put there more reasnable 15fps speed (though it's probably meaningless)
Originally committed as revision 1174 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/asf.c | 2 |
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 .... */ |