summaryrefslogtreecommitdiffstats
path: root/libhb/decdca.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/decdca.c')
-rw-r--r--libhb/decdca.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libhb/decdca.c b/libhb/decdca.c
index ec625c5bd..4fe066135 100644
--- a/libhb/decdca.c
+++ b/libhb/decdca.c
@@ -156,6 +156,7 @@ static hb_buffer_t * Decode( hb_work_object_t * w )
hb_audio_t * audio = w->audio;
int i, j, k;
int64_t pts, pos;
+ uint64_t upts, upos;
int num_blocks;
/* Get a frame header if don't have one yet */
@@ -198,7 +199,10 @@ static hb_buffer_t * Decode( hb_work_object_t * w )
}
/* Get the whole frame */
- hb_list_getbytes( pv->list, pv->frame, pv->size, &pts, &pos );
+ hb_list_getbytes( pv->list, pv->frame, pv->size, &upts, &upos );
+ pts = (int64_t)upts;
+ pos = (int64_t)upos;
+
if ( pts != pv->last_buf_pts )
{
pv->last_buf_pts = pts;