mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
basevideoencoder: Move some fields to the private part of the instance struct
This commit is contained in:
parent
050700d561
commit
db756fb190
1 changed files with 4 additions and 2 deletions
|
@ -85,8 +85,6 @@ struct _GstBaseVideoEncoder
|
|||
int distance_from_sync;
|
||||
|
||||
gboolean force_keyframe;
|
||||
gboolean force_keyframe_pending;
|
||||
gboolean force_keyframe_headers;
|
||||
|
||||
/*< private >*/
|
||||
/* FIXME move to real private part ?
|
||||
|
@ -97,8 +95,12 @@ struct _GstBaseVideoEncoder
|
|||
gint64 max_latency;
|
||||
|
||||
GList *current_frame_events;
|
||||
|
||||
GstBuffer *headers;
|
||||
|
||||
gboolean force_keyframe_pending;
|
||||
gboolean force_keyframe_headers;
|
||||
|
||||
union {
|
||||
void *padding;
|
||||
gboolean at_eos;
|
||||
|
|
Loading…
Reference in a new issue