mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-11 02:24:13 +00:00
qsvh265enc: Add missing gop-size property
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2039>
This commit is contained in:
parent
1a7b23dc02
commit
a8d7b10cc4
1 changed files with 5 additions and 0 deletions
|
@ -213,6 +213,11 @@ gst_qsv_h265_enc_class_init (GstQsvH265EncClass * klass, gpointer data)
|
|||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)));
|
||||
#endif
|
||||
|
||||
g_object_class_install_property (object_class, PROP_GOP_SIZE,
|
||||
g_param_spec_uint ("gop-size", "GOP Size",
|
||||
"Number of pictures within a GOP (0: unspecified)",
|
||||
0, G_MAXINT, DEFAULT_GOP_SIZE, (GParamFlags)
|
||||
(G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
|
||||
g_object_class_install_property (object_class, PROP_B_FRAMES,
|
||||
g_param_spec_uint ("b-frames", "B Frames",
|
||||
"Number of B frames between I and P frames",
|
||||
|
|
Loading…
Reference in a new issue