mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
playsink: Implement GstStreamVolume interface
This commit is contained in:
parent
1ac6c436e7
commit
018bb2ca6f
1 changed files with 18 additions and 9 deletions
|
@ -32,6 +32,7 @@
|
||||||
#include <gst/gst-i18n-plugin.h>
|
#include <gst/gst-i18n-plugin.h>
|
||||||
#include <gst/pbutils/pbutils.h>
|
#include <gst/pbutils/pbutils.h>
|
||||||
#include <gst/video/video.h>
|
#include <gst/video/video.h>
|
||||||
|
#include <gst/interfaces/streamvolume.h>
|
||||||
|
|
||||||
#include "gstplaysink.h"
|
#include "gstplaysink.h"
|
||||||
#include "gststreamsynchronizer.h"
|
#include "gststreamsynchronizer.h"
|
||||||
|
@ -325,7 +326,18 @@ gst_play_marshal_BUFFER__BOXED (GClosure * closure,
|
||||||
|
|
||||||
/* static guint gst_play_sink_signals[LAST_SIGNAL] = { 0 }; */
|
/* static guint gst_play_sink_signals[LAST_SIGNAL] = { 0 }; */
|
||||||
|
|
||||||
G_DEFINE_TYPE (GstPlaySink, gst_play_sink, GST_TYPE_BIN);
|
static void
|
||||||
|
_do_init (GType type)
|
||||||
|
{
|
||||||
|
static const GInterfaceInfo svol_info = {
|
||||||
|
NULL, NULL, NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
g_type_add_interface_static (type, GST_TYPE_STREAM_VOLUME, &svol_info);
|
||||||
|
}
|
||||||
|
|
||||||
|
G_DEFINE_TYPE_WITH_CODE (GstPlaySink, gst_play_sink, GST_TYPE_BIN,
|
||||||
|
_do_init (g_define_type_id));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_play_sink_class_init (GstPlaySinkClass * klass)
|
gst_play_sink_class_init (GstPlaySinkClass * klass)
|
||||||
|
@ -479,14 +491,11 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
|
||||||
|
|
||||||
gst_element_class_add_static_pad_template (gstelement_klass,
|
gst_element_class_add_static_pad_template (gstelement_klass,
|
||||||
&audiorawtemplate);
|
&audiorawtemplate);
|
||||||
gst_element_class_add_static_pad_template (gstelement_klass,
|
gst_element_class_add_static_pad_template (gstelement_klass, &audiotemplate);
|
||||||
&audiotemplate);
|
|
||||||
gst_element_class_add_static_pad_template (gstelement_klass,
|
gst_element_class_add_static_pad_template (gstelement_klass,
|
||||||
&videorawtemplate);
|
&videorawtemplate);
|
||||||
gst_element_class_add_static_pad_template (gstelement_klass,
|
gst_element_class_add_static_pad_template (gstelement_klass, &videotemplate);
|
||||||
&videotemplate);
|
gst_element_class_add_static_pad_template (gstelement_klass, &texttemplate);
|
||||||
gst_element_class_add_static_pad_template (gstelement_klass,
|
|
||||||
&texttemplate);
|
|
||||||
gst_element_class_set_details_simple (gstelement_klass, "Player Sink",
|
gst_element_class_set_details_simple (gstelement_klass, "Player Sink",
|
||||||
"Generic/Bin/Sink",
|
"Generic/Bin/Sink",
|
||||||
"Convenience sink for multiple streams",
|
"Convenience sink for multiple streams",
|
||||||
|
|
Loading…
Reference in a new issue