Search
j0ke.net Open Build Service
>
Projects
>
multimedia
>
vlc
> vlc-0.8.6i-x264.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File vlc-0.8.6i-x264.patch of Package vlc (Revision 53)
Currently displaying revision
53
,
show latest
--- modules/codec/x264.c.orig 2008-12-29 00:29:30.000000000 +0100 +++ modules/codec/x264.c 2008-12-29 00:35:15.000000000 +0100 @@ -890,7 +890,11 @@ #if X264_BUILD >= 0x0013 var_Get( p_enc, SOUT_CFG_PREFIX "b-adapt", &val ); +#if X264_BUILD >= 63 + p_sys->param.i_bframe_adaptive = val.b_bool ? X264_B_ADAPT_FAST : X264_B_ADAPT_NONE; +#else p_sys->param.b_bframe_adaptive = val.b_bool; +#endif var_Get( p_enc, SOUT_CFG_PREFIX "b-bias", &val ); if( val.i_int >= -100 && val.i_int <= 100 ) @@ -930,7 +934,7 @@ p_sys->param.analyse.i_trellis = val.i_int; #endif -#if X264_BUILD >= 41 +#if X264_BUILD >= 41 && X264_BUILD < 65 var_Get( p_enc, SOUT_CFG_PREFIX "b-rdo", &val ); p_sys->param.analyse.b_bframe_rdo = val.b_bool; #endif @@ -940,7 +944,7 @@ p_sys->param.analyse.b_fast_pskip = val.b_bool; #endif -#if X264_BUILD >= 43 +#if X264_BUILD >= 43 && X264_BUILD < 65 var_Get( p_enc, SOUT_CFG_PREFIX "bime", &val ); p_sys->param.analyse.b_bidir_me = val.b_bool; #endif