diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-07-25 11:59:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-07-25 11:59:34 +0000 |
commit | 53e2f9caf80ed385a3d4cfb9200d8827b65580ef (patch) | |
tree | 821ceae2581e009ac37615348e25a5be6f6c4578 /libavformat/ffm.c | |
parent | ebb177ddef238db201a2bbbf0db21a6d7fbeba32 (diff) | |
download | ffmpeg-53e2f9caf80ed385a3d4cfb9200d8827b65580ef.tar.gz |
ffserver fixes by (Koos Vriezen <koos.vriezen at xs4all dot nl>)
Originally committed as revision 3340 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ffm.c')
-rw-r--r-- | libavformat/ffm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/ffm.c b/libavformat/ffm.c index fca46b170f..22a2a812ff 100644 --- a/libavformat/ffm.c +++ b/libavformat/ffm.c @@ -150,6 +150,7 @@ static int ffm_write_header(AVFormatContext *s) fst = av_mallocz(sizeof(FFMStream)); if (!fst) goto fail; + av_set_pts_info(st, 64, 1, 1000000); st->priv_data = fst; codec = &st->codec; |