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
gstreamer
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
luzpaz
gstreamer
Commits
9092fb87
Commit
9092fb87
authored
Jan 09, 2012
by
Matej
Committed by
Tim-Philipp Müller
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix printf format build warnings
parent
74197dad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gst/gstmemory.c
gst/gstmemory.c
+4
-3
libs/gst/controller/gsttriggercontrolsource.c
libs/gst/controller/gsttriggercontrolsource.c
+1
-1
No files found.
gst/gstmemory.c
View file @
9092fb87
...
...
@@ -221,9 +221,10 @@ _default_mem_map (GstMemoryDefault * mem, gsize * size, gsize * maxsize,
static
gboolean
_default_mem_unmap
(
GstMemoryDefault
*
mem
,
gpointer
data
,
gsize
size
)
{
GST_DEBUG
(
"mem: %p, data %p, size %u"
,
mem
,
data
,
size
);
GST_DEBUG
(
"mem: %p, data %p, offset %u, size %u, maxsize %u"
,
mem
,
mem
->
data
,
mem
->
offset
,
mem
->
size
,
mem
->
maxsize
);
GST_DEBUG
(
"mem: %p, data %p, size %"
G_GSIZE_FORMAT
,
mem
,
data
,
size
);
GST_DEBUG
(
"mem: %p, data %p, offset %"
G_GSIZE_FORMAT
", size %"
G_GSIZE_FORMAT
", maxsize %"
G_GSIZE_FORMAT
,
mem
,
mem
->
data
,
mem
->
offset
,
mem
->
size
,
mem
->
maxsize
);
g_return_val_if_fail
((
guint8
*
)
data
>=
mem
->
data
&&
(
guint8
*
)
data
<
mem
->
data
+
mem
->
maxsize
,
FALSE
);
...
...
libs/gst/controller/gsttriggercontrolsource.c
View file @
9092fb87
...
...
@@ -56,7 +56,7 @@ struct _GstTriggerControlSourcePrivate
/* returns the default value of the property, except for times with specific values */
/* needed for one-shot events, such as notes and triggers */
static
inline
const
gdouble
static
inline
gdouble
_interpolate_trigger
(
GstTimedValueControlSource
*
self
,
GSequenceIter
*
iter
,
GstClockTime
timestamp
)
{
...
...
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