projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7173d4b
)
decodebin2: Removing dead assignment.
author
Edward Hervey
<bilboed@bilboed.com>
Thu, 1 Apr 2010 11:53:37 +0000
(13:53 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Thu, 1 Apr 2010 11:53:37 +0000
(13:53 +0200)
The value of group is overwritten a few lines below before being used.
gst/playback/gstdecodebin2.c
patch
|
blob
|
history
diff --git
a/gst/playback/gstdecodebin2.c
b/gst/playback/gstdecodebin2.c
index
e4726eb
..
fe6b0b4
100644
(file)
--- a/
gst/playback/gstdecodebin2.c
+++ b/
gst/playback/gstdecodebin2.c
@@
-2602,7
+2602,7
@@
static void
gst_decode_chain_handle_eos (GstDecodeChain * eos_chain)
{
GstDecodeBin *dbin = eos_chain->dbin;
- GstDecodeGroup *group
= eos_chain->parent
;
+ GstDecodeGroup *group;
GstDecodeChain *chain = eos_chain;
gboolean drained;