summaryrefslogtreecommitdiffstats
path: root/libhb/encfaac.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/encfaac.c')
-rw-r--r--libhb/encfaac.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libhb/encfaac.c b/libhb/encfaac.c
index 36c69a24d..38b44f08d 100644
--- a/libhb/encfaac.c
+++ b/libhb/encfaac.c
@@ -231,10 +231,11 @@ static hb_buffer_t * Encode( hb_work_object_t * w )
hb_buffer_t * buf = hb_buffer_init( size );
memcpy( buf->data, pv->obuf, size );
buf->size = size;
- buf->start = pv->pts;
+ buf->s.start = pv->pts;
pv->pts += pv->framedur;
- buf->stop = pv->pts;
- buf->frametype = HB_FRAME_AUDIO;
+ buf->s.stop = pv->pts;
+ buf->s.type = AUDIO_BUF;
+ buf->s.frametype = HB_FRAME_AUDIO;
return buf;
}
return NULL;