mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
gst/audioconvert/plugin.c: Register the GstAudioChannelPosition enum type with the type system in the plugin_init fun...
Original commit message from CVS: * gst/audioconvert/plugin.c: (plugin_init): Register the GstAudioChannelPosition enum type with the type system in the plugin_init function, so that it is known before any element actually makes use of multi-channel stuff. This is required for example if one wants to be able to deserialise/use a caps string with channel positions before any pipeline has been setup and started, like with gst-launch.
This commit is contained in:
parent
3b45740289
commit
f3def77907
2 changed files with 16 additions and 0 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/audioconvert/plugin.c: (plugin_init):
|
||||
Register the GstAudioChannelPosition enum type with the type
|
||||
system in the plugin_init function, so that it is known before
|
||||
any element actually makes use of multi-channel stuff. This is
|
||||
required for example if one wants to be able to deserialise/use
|
||||
a caps string with channel positions before any pipeline has
|
||||
been setup and started, like with gst-launch.
|
||||
|
||||
2006-02-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst-libs/gst/audio/gstringbuffer.c:
|
||||
|
|
|
@ -25,9 +25,15 @@
|
|||
|
||||
#include "plugin.h"
|
||||
|
||||
#include <gst/audio/multichannel.h>
|
||||
|
||||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
/* ensure GstAudioChannelPosition type is registered */
|
||||
if (!gst_audio_channel_position_get_type ())
|
||||
return FALSE;
|
||||
|
||||
if (!gst_element_register (plugin, "audioconvert",
|
||||
GST_RANK_PRIMARY, gst_audio_convert_get_type ()))
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue