[FFmpeg-cvslog] libx264: fix open GOP

Michael Niedermayer git at videolan.org
Wed Sep 26 02:01:28 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Sep 26 00:32:50 2012 +0200| [5fe808578ca34f2b15b66f1cd249aa5c5cc337e4] | committer: Michael Niedermayer

libx264: fix open GOP

Found-by: relaxed
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5fe808578ca34f2b15b66f1cd249aa5c5cc337e4
---

 libavcodec/libx264.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index d012c92..a2d64d1 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;
 



More information about the ffmpeg-cvslog mailing list