make muxer store the provided timestamps

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23975 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2007-07-31 17:24:53 +00:00
parent 96f2f7d45f
commit 8067c7b5ca
1 changed files with 3 additions and 4 deletions

View File

@ -280,10 +280,9 @@ static void write_chunk(muxer_stream_t *stream, size_t len, unsigned int flags,
pkt.flags |= PKT_FLAG_KEY;
else
pkt.flags = 0;
//pkt.pts = AV_NOPTS_VALUE;
pkt.pts = (stream->timer / av_q2d(priv->oc->streams[pkt.stream_index]->time_base) + 0.5);
pkt.dts = (dts / av_q2d(priv->oc->streams[pkt.stream_index]->time_base) + 0.5);
pkt.pts = (pts / av_q2d(priv->oc->streams[pkt.stream_index]->time_base) + 0.5);
//fprintf(stderr, "%Ld %Ld id:%d tb:%f %f\n", pkt.dts, pkt.pts, pkt.stream_index, av_q2d(priv->oc->streams[pkt.stream_index]->time_base), stream->timer);
if(av_interleaved_write_frame(priv->oc, &pkt) != 0) //av_write_frame(priv->oc, &pkt)