Patch by BradleyS. Thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5839
b64f7644-9d1e-0410-96f1-
a4d463321fa5
job->areBframes = 1;
}
+ /* Log the unparsed x264 options string. */
+ char *x264_opts_unparsed = hb_x264_param_unparse( job->x264_preset,
+ job->x264_tune,
+ job->advanced_opts,
+ job->h264_profile,
+ job->h264_level,
+ job->width, job->height );
+ hb_log( "encx264: unparsed options: %s", x264_opts_unparsed );
+ free( x264_opts_unparsed );
+
hb_deep_log( 2, "encx264: opening libx264 (pass %d)", job->pass );
pv->x264 = x264_encoder_open( ¶m );
if ( pv->x264 == NULL )