projects
/
platform
/
upstream
/
gst-plugins-ugly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb20a20
)
asfdemux: Don't forget to update flow variable
author
Edward Hervey
<bilboed@bilboed.com>
Mon, 18 Jan 2010 17:01:55 +0000
(18:01 +0100)
committer
Edward Hervey
<bilboed@bilboed.com>
Mon, 18 Jan 2010 17:01:55 +0000
(18:01 +0100)
Forgot to update the return value in the loop.
gst/asfdemux/gstasfdemux.c
patch
|
blob
|
history
diff --git
a/gst/asfdemux/gstasfdemux.c
b/gst/asfdemux/gstasfdemux.c
index
7719109
..
135d910
100644
(file)
--- a/
gst/asfdemux/gstasfdemux.c
+++ b/
gst/asfdemux/gstasfdemux.c
@@
-890,10
+890,10
@@
gst_asf_demux_aggregate_flow_return (GstASFDemux * demux, AsfStream * stream,
for (i = 0; i < demux->num_streams; i++) {
if (demux->stream[i].active) {
-
GstFlowReturn flowret
= demux->stream[i].last_flow;
+
flow
= demux->stream[i].last_flow;
GST_DEBUG_OBJECT (demux, "Aggregating: flow %i return %s", i,
- gst_flow_get_name (flow
ret
));
- if (flow
ret
!= GST_FLOW_NOT_LINKED)
+ gst_flow_get_name (flow));
+ if (flow != GST_FLOW_NOT_LINKED)
goto done;
}
}