Browse Source

Remove inaccurate computation of pts for audio packets and rely on

libavformat to generate them.
patch by Gregory Montoir, cyx users sourceforge net

Originally committed as revision 14085 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Gregory Montoir Diego Biurrun 17 years ago
parent
commit
ca3ed63e15
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/tiertexseq.c

+ 1
- 1
libavformat/tiertexseq.c View File

@@ -285,7 +285,7 @@ static int seq_read_packet(AVFormatContext *s, AVPacket *pkt)
return rc;

pkt->stream_index = seq->audio_stream_index;
pkt->pts = seq->current_frame_pts++;
seq->current_frame_pts++;

seq->audio_buffer_full = 0;
return 0;


Loading…
Cancel
Save