Commit 5fe80857 authored by Michael Niedermayer's avatar Michael Niedermayer

libx264: fix open GOP

Found-by: relaxed
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7133d254
......@@ -513,7 +513,7 @@ static av_cold int X264_init(AVCodecContext *avctx)
x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
// x4->params.b_open_gop = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
x4->params.b_open_gop = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
x4->params.i_slice_count = avctx->slices;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment