Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
e49d8a28
Commit
e49d8a28
authored
Jun 15, 2010
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avidemux: Assign variables before printing them
parent
715eb33d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gst/avi/gstavidemux.c
gst/avi/gstavidemux.c
+2
-2
No files found.
gst/avi/gstavidemux.c
View file @
e49d8a28
...
...
@@ -644,9 +644,9 @@ gst_avi_demux_seek_streams (GstAviDemux * avi, guint64 offset, gboolean before)
if
(
before
)
{
if
(
entry
)
{
gst_index_entry_assoc_map
(
entry
,
GST_FORMAT_BYTES
,
&
val
);
GST_DEBUG_OBJECT
(
avi
,
"stream %d, previous entry at %"
G_GUINT64_FORMAT
,
i
,
val
);
gst_index_entry_assoc_map
(
entry
,
GST_FORMAT_BYTES
,
&
val
);
if
(
val
<
min
)
min
=
val
;
}
...
...
@@ -711,9 +711,9 @@ gst_avi_demux_seek_streams_index (GstAviDemux * avi, guint64 offset,
if
(
before
)
{
if
(
entry
)
{
val
=
stream
->
index
[
index
].
offset
;
GST_DEBUG_OBJECT
(
avi
,
"stream %d, previous entry at %"
G_GUINT64_FORMAT
,
i
,
val
);
val
=
stream
->
index
[
index
].
offset
;
if
(
val
<
min
)
min
=
val
;
}
...
...
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