x264enc: fix the build for older x264enc
b_fake_interlaced was introduced in x264 commit 1b48874d06 = X264_BUILD 96.
This commit is contained in:
parent
3cb99f46b7
commit
3f8a245796
@ -1255,7 +1255,9 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder)
|
||||
|
||||
if (encoder->peer_level->frame_only) {
|
||||
encoder->x264param.b_interlaced = FALSE;
|
||||
#if X264_BUILD >= 95
|
||||
encoder->x264param.b_fake_interlaced = FALSE;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user