summaryrefslogtreecommitdiffstats
path: root/libhb/platform/macosx
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/platform/macosx')
-rw-r--r--libhb/platform/macosx/encca_aac.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libhb/platform/macosx/encca_aac.c b/libhb/platform/macosx/encca_aac.c
index 35eee4a00..66cac1e62 100644
--- a/libhb/platform/macosx/encca_aac.c
+++ b/libhb/platform/macosx/encca_aac.c
@@ -419,7 +419,11 @@ static hb_buffer_t * Encode( hb_work_object_t * w )
pv->pts += 90000LL * pv->isamples / pv->osamplerate;
obuf->stop = pv->pts;
obuf->size = odesc.mDataByteSize;
- obuf->frametype = HB_FRAME_AUDIO;
+
+ hb_buffer_tag_t tag;
+ tag.id = HB_TAG_AUDIO;
+ tag.u.audio.frametype = HB_FRAME_AUDIO;
+ hb_buffer_add_tag( obuf, &tag );
return obuf;
}