mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
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
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue