1
0
Fork 0

matroskadec_haali: use 64-bit duration field instead of convergence duration

This commit is contained in:
Hendrik Leppkes 2015-09-29 16:15:11 +02:00
parent 6a60a42b05
commit 5c54c741c7
Signed by: hendrik
GPG Key ID: 846079A4B0A7C1B5
1 changed files with 1 additions and 4 deletions

View File

@ -1607,10 +1607,7 @@ again:
else
pkt->pts = start_time - track->info->CodecDelay;
if (track->info->Type == TT_SUB)
pkt->convergence_duration = end_time - start_time;
else
pkt->duration = (int)(end_time - start_time);
pkt->duration = end_time - start_time;
}
pkt->flags = (flags & FRAME_KF) ? AV_PKT_FLAG_KEY : 0;