summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-08-08 14:55:53 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-08-08 14:55:53 +0000
commit058bbf9cc31ced27759fe6524cba0ec32bd80e03 (patch)
tree441cb273689743abfcc4ed22f42095e6384939b2
parentd4e9d1d4297403c7bf40ddd4b7d58a42f950e693 (diff)
downloadgst-plugins-bad-058bbf9cc31ced27759fe6524cba0ec32bd80e03.tar.gz
gst-plugins-bad-058bbf9cc31ced27759fe6524cba0ec32bd80e03.tar.bz2
gst-plugins-bad-058bbf9cc31ced27759fe6524cba0ec32bd80e03.zip
gst/qtdemux/qtdemux.c: Fix silly typo.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree): Fix silly typo.
-rw-r--r--ChangeLog5
-rw-r--r--gst/qtdemux/qtdemux.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fdf839b5..445b6e74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
+ Fix silly typo.
+
2006-08-08 Edward Hervey <edward@fluendo.com>
* tests/check/elements/gdpdepay.c: (gdpdepay_suite):
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 39a83314..b6f65146 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -2922,7 +2922,7 @@ qtdemux_parse_tree (GstQTDemux * qtdemux)
rmra = qtdemux_tree_get_child_by_type (qtdemux->moov_node, FOURCC_rmra);
if (rmra) {
rmda = qtdemux_tree_get_child_by_type (rmra, FOURCC_rmda);
- if (rmra) {
+ if (rmda) {
rdrf = qtdemux_tree_get_child_by_type (rmda, FOURCC_rdrf);
if (rdrf) {
GstStructure *s;