diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-25 09:04:38 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-25 09:04:38 +0000 |
commit | 254629b1aa6afea51413f6492a86089132d8c239 (patch) | |
tree | ae5380c6f9e3ec0d42f9f998bb4791edfc31381a | |
parent | 7622778ed7094108b2d6af1d34c9682336ea741a (diff) | |
download | ffmpeg-254629b1aa6afea51413f6492a86089132d8c239.tar.gz |
set wrap bits to 32bit to actually use it
Originally committed as revision 12948 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/flvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index e5270ca320..0a45071a15 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -163,7 +163,7 @@ static int flv_write_header(AVFormatContext *s) if(get_audio_flags(enc)<0) return -1; } - av_set_pts_info(s->streams[i], 24, 1, 1000); /* 24 bit pts in ms */ + av_set_pts_info(s->streams[i], 32, 1, 1000); /* 32 bit pts in ms */ } put_tag(pb,"FLV"); put_byte(pb,1); |