Commit d1c5b9c6 authored by bcoudurier's avatar bcoudurier

set wrap bits to 32bit to actually use it

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12948 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5c1f1f7c
......@@ -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);
......
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