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
1,001
Issues
1,001
List
Boards
Labels
Service Desk
Milestones
Merge Requests
194
Merge Requests
194
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-plugins-bad
Commits
e80d9ea6
Commit
e80d9ea6
authored
Mar 18, 2019
by
Tim-Philipp Müller
🐠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netsim: don't use G_INLINE_FUNC
It's deprecated. Just use 'inline'.
parent
2a539425
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gst/netsim/gstnetsim.c
gst/netsim/gstnetsim.c
+2
-2
No files found.
gst/netsim/gstnetsim.c
View file @
e80d9ea6
...
...
@@ -211,7 +211,7 @@ typedef struct
GstBuffer
*
buf
;
}
PushBufferCtx
;
G_INLINE_FUNC
PushBufferCtx
*
static
inline
PushBufferCtx
*
push_buffer_ctx_new
(
GstPad
*
pad
,
GstBuffer
*
buf
)
{
PushBufferCtx
*
ctx
=
g_slice_new
(
PushBufferCtx
);
...
...
@@ -220,7 +220,7 @@ push_buffer_ctx_new (GstPad * pad, GstBuffer * buf)
return
ctx
;
}
G_INLINE_FUNC
void
static
inline
void
push_buffer_ctx_free
(
PushBufferCtx
*
ctx
)
{
if
(
G_LIKELY
(
ctx
!=
NULL
))
{
...
...
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