Commit 81435af6 authored by bcoudurier's avatar bcoudurier

flv use 32 bit pts

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13267 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dc3d3461
......@@ -239,7 +239,7 @@ static AVStream *create_stream(AVFormatContext *s, int is_audio){
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment