Mercurial > libavformat.hg
changeset 3335:efed46e8afb3 libavformat
flv use 32 bit pts
author | bcoudurier |
---|---|
date | Fri, 23 May 2008 21:47:30 +0000 |
parents | 7a823a401282 |
children | 664637a9867b |
files | flvdec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/flvdec.c Fri May 23 18:15:13 2008 +0000 +++ b/flvdec.c Fri May 23 21:47:30 2008 +0000 @@ -239,7 +239,7 @@ if (!st) return NULL; st->codec->codec_type = is_audio ? CODEC_TYPE_AUDIO : CODEC_TYPE_VIDEO; - av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */ + av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */ return st; }