mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
vorbisenc: Implement Preset interface
This commit is contained in:
parent
bcd0aee3f5
commit
c3b28a9bff
1 changed files with 2 additions and 0 deletions
|
@ -145,9 +145,11 @@ static void
|
||||||
gst_vorbis_enc_add_interfaces (GType vorbisenc_type)
|
gst_vorbis_enc_add_interfaces (GType vorbisenc_type)
|
||||||
{
|
{
|
||||||
static const GInterfaceInfo tag_setter_info = { NULL, NULL, NULL };
|
static const GInterfaceInfo tag_setter_info = { NULL, NULL, NULL };
|
||||||
|
static const GInterfaceInfo preset_info = { NULL, NULL, NULL };
|
||||||
|
|
||||||
g_type_add_interface_static (vorbisenc_type, GST_TYPE_TAG_SETTER,
|
g_type_add_interface_static (vorbisenc_type, GST_TYPE_TAG_SETTER,
|
||||||
&tag_setter_info);
|
&tag_setter_info);
|
||||||
|
g_type_add_interface_static (vorbisenc_type, GST_TYPE_PRESET, &preset_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue