Do not set pts in update_initial_durations() if stream has b frames.

Originally committed as revision 13639 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-06-03 00:43:56 +00:00
parent c9d1924884
commit 5853423c3f
1 changed files with 3 additions and 1 deletions

View File

@ -645,7 +645,9 @@ static void update_initial_durations(AVFormatContext *s, AVStream *st, AVPacket
continue;
if(pktl->pkt.pts == pktl->pkt.dts && pktl->pkt.dts == AV_NOPTS_VALUE
&& !pktl->pkt.duration){
pktl->pkt.pts= pktl->pkt.dts= st->cur_dts;
pktl->pkt.dts= st->cur_dts;
if(!st->codec->has_b_frames)
pktl->pkt.pts= st->cur_dts;
st->cur_dts += pkt->duration;
pktl->pkt.duration= pkt->duration;
}else