mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
sierravmd: fix audio pts
The duration of the first packet was being calculated incorrectly, leading to an incorrect timestamp offset.
This commit is contained in:
parent
29112db8c0
commit
e9626eb32e
@ -206,7 +206,7 @@ static int vmd_read_header(AVFormatContext *s,
|
||||
vmd->frame_table[total_frames].pts = current_audio_pts;
|
||||
total_frames++;
|
||||
if(!current_audio_pts)
|
||||
current_audio_pts += sound_buffers;
|
||||
current_audio_pts += sound_buffers - 1;
|
||||
else
|
||||
current_audio_pts++;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user