From d39b33c63bc080231d8d6e79c6301a60b86150de Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 21 Jun 2011 04:45:29 +0200 Subject: [PATCH] libx264: fix open gop default. Please use -x264opts to force open gop This fixes Ticket268 Signed-off-by: Michael Niedermayer --- libavcodec/libx264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 1b6f55f801..cc5b9837f8 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -377,7 +377,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;