New submission from [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
libx264 internally changed i_bframe_adaptive to b_bframe_adaptive.
libx264.c from libavcoded should undergo the same change. patch follows.
Index: libx264.c
===================================================================
--- libx264.c (revision 15394)
+++ libx264.c (working copy)
@@ -162,7 +162,7 @@
x4->params.i_bframe = avctx->max_b_frames;
x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
- x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
+ x4->params.b_bframe_adaptive = avctx->b_frame_strategy;
x4->params.i_bframe_bias = avctx->bframebias;
x4->params.b_bframe_pyramid = avctx->flags2 & CODEC_FLAG2_BPYRAMID;
avctx->has_b_frames= avctx->flags2 & CODEC_FLAG2_BPYRAMID ? 2 : !!
avctx->max_b_frames;
----------
messages: 3256
nosy: [EMAIL PROTECTED]
priority: normal
status: new
substatus: new
title: [PATCH] libx264 compat fix
type: patch
______________________________________________________
FFmpeg issue tracker <[EMAIL PROTECTED]>
<https://roundup.mplayerhq.hu/roundup/ffmpeg/issue649>
______________________________________________________