mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
flac: Implement preset interface
This commit is contained in:
parent
6e9d728249
commit
9da04cd6af
1 changed files with 7 additions and 0 deletions
|
@ -155,8 +155,15 @@ GST_DEBUG_CATEGORY_STATIC (flacenc_debug);
|
|||
NULL, \
|
||||
NULL \
|
||||
}; \
|
||||
static const GInterfaceInfo preset_info = { \
|
||||
NULL, \
|
||||
NULL, \
|
||||
NULL \
|
||||
}; \
|
||||
g_type_add_interface_static (type, GST_TYPE_TAG_SETTER, \
|
||||
&tag_setter_info); \
|
||||
g_type_add_interface_static (type, GST_TYPE_PRESET, \
|
||||
&preset_info); \
|
||||
}G_STMT_END
|
||||
|
||||
GST_BOILERPLATE_FULL (GstFlacEnc, gst_flac_enc, GstElement, GST_TYPE_ELEMENT,
|
||||
|
|
Loading…
Reference in a new issue