You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jitsi/src/native/ffmpeg/ffmpeg-libx264-keyframe.diff

14 lines
469 B

Index: libavcodec/libx264.c
===================================================================
--- libavcodec/libx264.c (révision 20783)
+++ libavcodec/libx264.c (copie de travail)
@@ -99,7 +99,7 @@
}
x4->pic.i_pts = frame->pts;
- x4->pic.i_type = X264_TYPE_AUTO;
+ x4->pic.i_type = frame->key_frame ? X264_TYPE_IDR : X264_TYPE_AUTO;
}
if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)