summaryrefslogtreecommitdiff
path: root/libavcodec/libx264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-26 00:32:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-26 01:56:01 +0200
commit5fe808578ca34f2b15b66f1cd249aa5c5cc337e4 (patch)
tree0efe4804e0a73df83529b56c86d826df41e3e58f /libavcodec/libx264.c
parent7133d2542551548a575155791d9f8bf7cfb89513 (diff)
libx264: fix open GOP
Found-by: relaxed Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r--libavcodec/libx264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index d012c92a48..a2d64d1977 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -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;