mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 19:55:32 +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)
|
||||
{
|
||||
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,
|
||||
&tag_setter_info);
|
||||
g_type_add_interface_static (vorbisenc_type, GST_TYPE_PRESET, &preset_info);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue