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
bcf4791a
Commit
bcf4791a
authored
Sep 05, 2005
by
Thomas Vander Stichele
Browse files
cleaning up bad
Original commit message from CVS: cleaning up bad
parent
f69e6c3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/qtdemux/qtdemux.c
View file @
bcf4791a
...
...
@@ -153,7 +153,8 @@ static GstElementClass *parent_class = NULL;
static
void
gst_qtdemux_class_init
(
GstQTDemuxClass
*
klass
);
static
void
gst_qtdemux_base_init
(
GstQTDemuxClass
*
klass
);
static
void
gst_qtdemux_init
(
GstQTDemux
*
quicktime_demux
);
static
GstElementStateReturn
gst_qtdemux_change_state
(
GstElement
*
element
);
static
GstStateChangeReturn
gst_qtdemux_change_state
(
GstElement
*
element
,
GstStateChange
transition
);
static
void
gst_qtdemux_loop_header
(
GstPad
*
pad
);
static
gboolean
qtdemux_sink_activate
(
GstPad
*
sinkpad
);
static
gboolean
qtdemux_sink_activate_pull
(
GstPad
*
sinkpad
,
gboolean
active
);
...
...
@@ -463,13 +464,13 @@ gst_qtdemux_handle_sink_event (GstQTDemux * qtdemux)
}
#endif
static
Gst
ElementStat
eReturn
gst_qtdemux_change_state
(
GstElement
*
element
)
static
Gst
StateChang
eReturn
gst_qtdemux_change_state
(
GstElement
*
element
,
GstStateChange
transition
)
{
GstQTDemux
*
qtdemux
=
GST_QTDEMUX
(
element
);
switch
(
GST_STATE_TRANSITION
(
element
)
)
{
case
GST_STATE_PAUSED_TO_READY
:{
switch
(
transition
)
{
case
GST_STATE_
CHANGE_
PAUSED_TO_READY
:{
gint
n
;
qtdemux
->
state
=
QTDEMUX_STATE_HEADER
;
...
...
@@ -489,7 +490,7 @@ gst_qtdemux_change_state (GstElement * element)
break
;
}
return
GST_ELEMENT_CLASS
(
parent_class
)
->
change_state
(
element
);
return
GST_ELEMENT_CLASS
(
parent_class
)
->
change_state
(
element
,
transition
);
}
static
void
...
...
Write
Preview
Supports
Markdown
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