mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
parent
b4c8c03b00
commit
6bfc935232
@ -1016,9 +1016,9 @@ static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id,
|
||||
}
|
||||
stc = &nut->stream[*stream_id];
|
||||
if (flags & FLAG_CODED_PTS) {
|
||||
int coded_pts = ffio_read_varlen(bc);
|
||||
int64_t coded_pts = ffio_read_varlen(bc);
|
||||
// FIXME check last_pts validity?
|
||||
if (coded_pts < (1 << stc->msb_pts_shift)) {
|
||||
if (coded_pts < (1LL << stc->msb_pts_shift)) {
|
||||
*pts = ff_lsb2full(stc, coded_pts);
|
||||
} else
|
||||
*pts = coded_pts - (1LL << stc->msb_pts_shift);
|
||||
|
Loading…
Reference in New Issue
Block a user