mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +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;
|
int distance_from_sync;
|
||||||
|
|
||||||
gboolean force_keyframe;
|
gboolean force_keyframe;
|
||||||
gboolean force_keyframe_pending;
|
|
||||||
gboolean force_keyframe_headers;
|
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
/* FIXME move to real private part ?
|
/* FIXME move to real private part ?
|
||||||
|
@ -97,8 +95,12 @@ struct _GstBaseVideoEncoder
|
||||||
gint64 max_latency;
|
gint64 max_latency;
|
||||||
|
|
||||||
GList *current_frame_events;
|
GList *current_frame_events;
|
||||||
|
|
||||||
GstBuffer *headers;
|
GstBuffer *headers;
|
||||||
|
|
||||||
|
gboolean force_keyframe_pending;
|
||||||
|
gboolean force_keyframe_headers;
|
||||||
|
|
||||||
union {
|
union {
|
||||||
void *padding;
|
void *padding;
|
||||||
gboolean at_eos;
|
gboolean at_eos;
|
||||||
|
|
Loading…
Reference in a new issue