Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Camilo Celis Guzman
gst-plugins-good
Commits
b9d7f252
Commit
b9d7f252
authored
Jun 25, 2009
by
Edward Hervey
🤘
Browse files
qtdemux: Fix uninitialized variables. Fixes build on macosx
parent
d260a92d
Changes
1
Show whitespace changes
Inline
Side-by-side
gst/qtdemux/qtdemux.c
View file @
b9d7f252
...
@@ -2165,11 +2165,11 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
...
@@ -2165,11 +2165,11 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
GstBuffer
*
buf
=
NULL
;
GstBuffer
*
buf
=
NULL
;
QtDemuxStream
*
stream
;
QtDemuxStream
*
stream
;
guint64
min_time
;
guint64
min_time
;
guint64
offset
;
guint64
offset
=
0
;
guint64
timestamp
;
guint64
timestamp
=
GST_CLOCK_TIME_NONE
;
guint64
duration
;
guint64
duration
=
0
;
gboolean
keyframe
;
gboolean
keyframe
=
FALSE
;
guint
size
;
guint
size
=
0
;
gint
index
;
gint
index
;
gint
i
;
gint
i
;
...
...
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