Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
d5612693
Commit
d5612693
authored
May 11, 2010
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oss4: minor cleanup
Remove fixed FIXME, change finalise to finalize for consistency.
parent
fa7d38c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
sys/oss4/oss4-sink.c
sys/oss4/oss4-sink.c
+3
-7
No files found.
sys/oss4/oss4-sink.c
View file @
d5612693
...
...
@@ -42,10 +42,6 @@
* Since: 0.10.7
*/
/* TODO: - add "volume" property for stream volume control and intercept tags
* to set stream title
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
...
...
@@ -72,7 +68,7 @@ GST_DEBUG_CATEGORY_EXTERN (oss4sink_debug);
static
void
gst_oss4_sink_init_interfaces
(
GType
type
);
static
void
gst_oss4_sink_dispose
(
GObject
*
object
);
static
void
gst_oss4_sink_finali
s
e
(
GObject
*
object
);
static
void
gst_oss4_sink_finali
z
e
(
GObject
*
object
);
static
void
gst_oss4_sink_get_property
(
GObject
*
object
,
guint
prop_id
,
GValue
*
value
,
GParamSpec
*
pspec
);
...
...
@@ -148,7 +144,7 @@ gst_oss4_sink_class_init (GstOss4SinkClass * klass)
GObjectClass
*
gobject_class
=
(
GObjectClass
*
)
klass
;
gobject_class
->
dispose
=
GST_DEBUG_FUNCPTR
(
gst_oss4_sink_dispose
);
gobject_class
->
finalize
=
GST_DEBUG_FUNCPTR
(
gst_oss4_sink_finali
s
e
);
gobject_class
->
finalize
=
GST_DEBUG_FUNCPTR
(
gst_oss4_sink_finali
z
e
);
gobject_class
->
get_property
=
GST_DEBUG_FUNCPTR
(
gst_oss4_sink_get_property
);
gobject_class
->
set_property
=
GST_DEBUG_FUNCPTR
(
gst_oss4_sink_set_property
);
...
...
@@ -203,7 +199,7 @@ gst_oss4_sink_init (GstOss4Sink * osssink, GstOss4SinkClass * klass)
}
static
void
gst_oss4_sink_finali
s
e
(
GObject
*
object
)
gst_oss4_sink_finali
z
e
(
GObject
*
object
)
{
GstOss4Sink
*
osssink
=
GST_OSS4_SINK
(
object
);
...
...
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