mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
x265: Fix tagging of keyframes on output buffers
https://bugzilla.gnome.org/show_bug.cgi?id=794620
This commit is contained in:
parent
b647888dc8
commit
add2c0c35a
1 changed files with 4 additions and 0 deletions
|
@ -1118,6 +1118,10 @@ gst_x265_enc_encode_frame (GstX265Enc * encoder, x265_picture * pic_in,
|
|||
offset += nal[i].sizeBytes;
|
||||
}
|
||||
|
||||
if (pic_out.sliceType == X265_TYPE_IDR || pic_out.sliceType == X265_TYPE_I) {
|
||||
GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (frame);
|
||||
}
|
||||
|
||||
frame->output_buffer = out_buf;
|
||||
|
||||
if (encoder->push_header) {
|
||||
|
|
Loading…
Reference in a new issue