Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
cpp-libs
libnice
Commits
19584483
Commit
19584483
authored
Feb 12, 2007
by
Dafydd Harries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix declaration style
darcs-hash:20070212192345-c9803-4c0863606eabd2bba4404a18f57bdeedb96f7138.gz
parent
83ed86fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
gst/gstnicesink.c
gst/gstnicesink.c
+19
-5
No files found.
gst/gstnicesink.c
View file @
19584483
...
...
@@ -9,11 +9,17 @@ gst_nice_sink_render (
static
void
gst_nice_sink_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
static
void
gst_nice_sink_get_property
(
GObject
*
object
,
guint
prop_id
,
GValue
*
value
,
GParamSpec
*
pspec
);
GObject
*
object
,
guint
prop_id
,
GValue
*
value
,
GParamSpec
*
pspec
);
static
const
GstElementDetails
gst_nice_sink_details
=
GST_ELEMENT_DETAILS
(
...
...
@@ -90,7 +96,9 @@ gst_nice_sink_class_init (GstNiceSinkClass *klass)
}
static
void
gst_nice_sink_init
(
GstNiceSink
*
sink
,
GstNiceSinkClass
*
g_class
)
gst_nice_sink_init
(
GstNiceSink
*
sink
,
GstNiceSinkClass
*
g_class
)
{
}
...
...
@@ -110,7 +118,10 @@ gst_nice_sink_render (
static
void
gst_nice_sink_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
)
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
)
{
GstNiceSink
*
sink
=
GST_NICE_SINK
(
object
);
...
...
@@ -132,7 +143,10 @@ gst_nice_sink_set_property (
static
void
gst_nice_sink_get_property
(
GObject
*
object
,
guint
prop_id
,
GValue
*
value
,
GParamSpec
*
pspec
)
GObject
*
object
,
guint
prop_id
,
GValue
*
value
,
GParamSpec
*
pspec
)
{
GstNiceSink
*
sink
=
GST_NICE_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