mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-25 15:36:42 +00:00
gst/playback/gstdecodebin.c: 2nd argument of 'unknow-type' signal is a GstCaps and not a
Original commit message from CVS: * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init): 2nd argument of 'unknow-type' signal is a GstCaps and not a GstMiniObject
This commit is contained in:
parent
2255ffd384
commit
d3b7111a90
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-06-26 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
|
* gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
|
||||||
|
2nd argument of 'unknow-type' signal is a GstCaps and not a
|
||||||
|
GstMiniObject
|
||||||
|
|
||||||
2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
|
2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
* gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
|
* gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
|
||||||
Set the worker thread's running flag to TRUE before starting the
|
Set the worker thread's running flag to TRUE before starting the
|
||||||
|
|
|
@ -206,7 +206,7 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
|
||||||
g_signal_new ("unknown-type", G_TYPE_FROM_CLASS (klass),
|
g_signal_new ("unknown-type", G_TYPE_FROM_CLASS (klass),
|
||||||
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstDecodeBinClass, unknown_type),
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstDecodeBinClass, unknown_type),
|
||||||
NULL, NULL, gst_marshal_VOID__OBJECT_OBJECT, G_TYPE_NONE, 2,
|
NULL, NULL, gst_marshal_VOID__OBJECT_OBJECT, G_TYPE_NONE, 2,
|
||||||
GST_TYPE_PAD, GST_TYPE_MINI_OBJECT);
|
GST_TYPE_PAD, GST_TYPE_CAPS);
|
||||||
|
|
||||||
gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_decode_bin_dispose);
|
gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_decode_bin_dispose);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue