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
83ed86fb
Commit
83ed86fb
authored
Feb 12, 2007
by
Dafydd Harries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix declaration style
darcs-hash:20070212192034-c9803-4fd196138e4e00a618dca3896022eb438b680e4a.gz
parent
dec7018a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
gst/gstnicesrc.c
gst/gstnicesrc.c
+17
-5
No files found.
gst/gstnicesrc.c
View file @
83ed86fb
...
@@ -6,15 +6,24 @@
...
@@ -6,15 +6,24 @@
static
GstFlowReturn
static
GstFlowReturn
gst_nice_src_create
(
gst_nice_src_create
(
GstBaseSrc
*
basesrc
,
guint64
offset
,
guint
length
,
GstBuffer
**
buffer
);
GstBaseSrc
*
basesrc
,
guint64
offset
,
guint
length
,
GstBuffer
**
buffer
);
static
void
static
void
gst_nice_src_set_property
(
gst_nice_src_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
static
void
static
void
gst_nice_src_get_property
(
gst_nice_src_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_src_details
=
static
const
GstElementDetails
gst_nice_src_details
=
GST_ELEMENT_DETAILS
(
GST_ELEMENT_DETAILS
(
...
@@ -97,8 +106,11 @@ gst_nice_src_init (GstNiceSrc *src, GstNiceSrcClass *g_class)
...
@@ -97,8 +106,11 @@ gst_nice_src_init (GstNiceSrc *src, GstNiceSrcClass *g_class)
}
}
static
GstFlowReturn
static
GstFlowReturn
gst_nice_src_create
(
GstBaseSrc
*
basesrc
,
guint64
offset
,
guint
length
,
gst_nice_src_create
(
GstBuffer
**
buffer
)
GstBaseSrc
*
basesrc
,
guint64
offset
,
guint
length
,
GstBuffer
**
buffer
)
{
{
GstFlowReturn
res
;
GstFlowReturn
res
;
GstBuffer
*
buf
;
GstBuffer
*
buf
;
...
...
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