mirror of https://git.ffmpeg.org/ffmpeg.git
Bink audio pts starts at 0, not reported_size
Originally committed as revision 21994 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c8c77d8d97
commit
b62c65f23e
|
@ -220,7 +220,8 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
!= audio_size)
|
||||
return ret;
|
||||
pkt->stream_index = bink->current_track;
|
||||
pkt->pts = bink->audio_pts[bink->current_track - 1] += reported_size;
|
||||
pkt->pts = bink->audio_pts[bink->current_track - 1];
|
||||
bink->audio_pts[bink->current_track -1] += reported_size;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue