From: jstebbins Date: Sat, 14 Apr 2012 19:32:21 +0000 (+0000) Subject: libhb: fix problem with fps calculation in 2 pass encodes X-Git-Tag: 0.9.9~689 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=123e871e306f0c962a46a48ba696066647d526a8;p=handbrake libhb: fix problem with fps calculation in 2 pass encodes interjob was not getting initialized at the end of the 1st pass because for some unfathomable reason, I did not save the job in the filter objects private data even though I had a job variable there. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4599 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/libhb/vfr.c b/libhb/vfr.c index ab6666549..9c3e2e2a8 100644 --- a/libhb/vfr.c +++ b/libhb/vfr.c @@ -309,7 +309,7 @@ static int hb_vfr_init( hb_filter_object_t * filter, &pv->cfr, &pv->vrate, &pv->vrate_base ); } - //pv->job = init->job; + pv->job = init->job; /* Setup FIFO queue for subtitle cache */ pv->delay_queue = hb_fifo_init( 8, 1 );