mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
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
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue