mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
omxvideoenc: implement GstPreset interface
To allow user to use GstPreset to quickly save and load a set of parameters. https://bugzilla.gnome.org/show_bug.cgi?id=767907
This commit is contained in:
parent
a78756c63f
commit
0c265c1e0e
1 changed files with 6 additions and 4 deletions
|
@ -111,13 +111,15 @@ enum
|
|||
#define GST_OMX_VIDEO_ENC_QUANT_B_FRAMES_DEFAULT (0xffffffff)
|
||||
|
||||
/* class initialization */
|
||||
|
||||
#define DEBUG_INIT \
|
||||
#define do_init \
|
||||
{ \
|
||||
GST_DEBUG_CATEGORY_INIT (gst_omx_video_enc_debug_category, "omxvideoenc", 0, \
|
||||
"debug category for gst-omx video encoder base class");
|
||||
"debug category for gst-omx video encoder base class"); \
|
||||
G_IMPLEMENT_INTERFACE (GST_TYPE_PRESET, NULL); \
|
||||
}
|
||||
|
||||
G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GstOMXVideoEnc, gst_omx_video_enc,
|
||||
GST_TYPE_VIDEO_ENCODER, DEBUG_INIT);
|
||||
GST_TYPE_VIDEO_ENCODER, do_init);
|
||||
|
||||
static void
|
||||
gst_omx_video_enc_class_init (GstOMXVideoEncClass * klass)
|
||||
|
|
Loading…
Reference in a new issue