mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
vp8enc: fix keyframe forcing
This commit is contained in:
parent
d0753dec9b
commit
3d09056c70
2 changed files with 1 additions and 2 deletions
|
@ -805,7 +805,7 @@ gst_vp8_enc_handle_frame (GstBaseVideoEncoder * base_video_encoder,
|
|||
hook->image = image;
|
||||
frame->coder_hook = hook;
|
||||
|
||||
if (encoder->force_keyframe) {
|
||||
if (frame->force_keyframe) {
|
||||
flags |= VPX_EFLAG_FORCE_KF;
|
||||
}
|
||||
|
||||
|
|
|
@ -73,7 +73,6 @@ struct _GstVP8Enc
|
|||
gboolean auto_alt_ref_frames;
|
||||
|
||||
/* state */
|
||||
gboolean force_keyframe;
|
||||
gboolean inited;
|
||||
|
||||
int n_frames;
|
||||
|
|
Loading…
Reference in a new issue