From 45b8f81a2e184e2b7deaf47afc49483766191a27 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Tue, 27 Mar 2012 20:11:26 +0000 Subject: Rework filter pipeline This patch enhances the filter objects. The 2 key improvements are: 1. A filter can change the image dimensions as frames pass through it. 2. A filter can output more than one frame. In addition, I have: Moved cropping & scalling into a filter object Added 90 degree rotation to the rotate filter Moved subtitle burn-in rendering to a filter object. Moved VFR/CFR handling into a framerate shaping filter object. Removed render.c since all it's responsibilities got moved to filters. Improves VOBSUB and SSA subtitle handling. Allows subtitle animations. SSA karaoke support. My apologies in advance if anything breaks ;) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4546 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/encfaac.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libhb/encfaac.c') 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; -- cgit v1.2.3