Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gst-plugins-bad
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Víctor Manuel Jáquez Leal
gst-plugins-bad
Commits
2cc573d0
Commit
2cc573d0
authored
Nov 02, 2003
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I'm too lazy to comment this
Original commit message from CVS: .
parent
c86afad9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
21 deletions
+25
-21
gst/mixmatrix/mixmatrix.c
gst/mixmatrix/mixmatrix.c
+25
-21
No files found.
gst/mixmatrix/mixmatrix.c
View file @
2cc573d0
...
...
@@ -69,11 +69,8 @@ struct _GstMixMatrixClass {
static
GstElementDetails
mixmatrix_details
=
{
"Mixing Matrix"
,
"Filter/Audio"
,
"LGPL"
,
"Mix N audio channels together into M channels"
,
VERSION
,
"Erik Walthinsen <omega@temple-baptist.com>"
,
"(C) 2002"
,
"Erik Walthinsen <omega@temple-baptist.com>"
};
enum
{
...
...
@@ -114,6 +111,7 @@ GST_PAD_TEMPLATE_FACTORY (mixmatrix_src_factory,
);
static
void
gst_mixmatrix_class_init
(
GstMixMatrixClass
*
klass
);
static
void
gst_mixmatrix_base_init
(
GstMixMatrixClass
*
klass
);
static
void
gst_mixmatrix_init
(
GstMixMatrix
*
element
);
static
void
gst_mixmatrix_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
...
...
@@ -135,7 +133,7 @@ gst_mixmatrix_get_type(void) {
if
(
!
mixmatrix_type
)
{
static
const
GTypeInfo
mixmatrix_info
=
{
sizeof
(
GstMixMatrixClass
),
NULL
,
(
GBaseInitFunc
)
gst_mixmatrix_base_init
,
NULL
,
(
GClassInitFunc
)
gst_mixmatrix_class_init
,
NULL
,
...
...
@@ -149,6 +147,16 @@ gst_mixmatrix_get_type(void) {
return
mixmatrix_type
;
}
static
void
gst_mixmatrix_base_init
(
GstMixMatrixClass
*
klass
)
{
GstElementClass
*
element_class
=
GST_ELEMENT_CLASS
(
klass
);
gst_element_class_add_pad_template
(
element_class
,
sinktempl
);
gst_element_class_add_pad_template
(
element_class
,
srctempl
);
gst_element_class_set_details
(
element_class
,
&
mixmatrix_details
);
}
static
void
gst_mixmatrix_class_init
(
GstMixMatrixClass
*
klass
)
{
...
...
@@ -496,31 +504,27 @@ gst_mixmatrix_get_property (GObject *object, guint prop_id, GValue *value, GPara
}
gboolean
plugin_init
(
G
Module
*
module
,
G
stPlugin
*
plugin
)
plugin_init
(
GstPlugin
*
plugin
)
{
GstElementFactory
*
factory
;
if
(
!
gst_library_load
(
"gstbytestream"
))
return
FALSE
;
factory
=
gst_element_factory_new
(
"mixmatrix"
,
GST_TYPE_MIXMATRIX
,
&
mixmatrix_details
);
g_return_val_if_fail
(
factory
!=
NULL
,
FALSE
);
sinktempl
=
mixmatrix_sink_factory
();
gst_element_factory_add_pad_template
(
factory
,
sinktempl
);
srctempl
=
mixmatrix_src_factory
();
gst_element_factory_add_pad_template
(
factory
,
srctempl
);
gst_plugin_add_feature
(
plugin
,
GST_PLUGIN_FEATURE
(
factory
));
return
TRUE
;
return
gst_element_register
(
plugin
,
"mixmatrix"
,
GST_RANK_NONE
,
GST_TYPE_MIXMATRIX
);
}
G
stPluginDesc
plugin_desc
=
{
G
ST_PLUGIN_DEFINE
(
GST_VERSION_MAJOR
,
GST_VERSION_MINOR
,
"mixmatrix"
,
plugin_init
};
"An audio mixer matrix"
,
plugin_init
,
VERSION
,
GST_LICENSE
,
GST_COPYRIGHT
,
GST_PACKAGE
,
GST_ORIGIN
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment