summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/dv/gstdv.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d37363b6..cbc0bab3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-04-21 Tim-Philipp Müller <tim at centricular dot net>
+ * ext/dv/gstdv.c: (plugin_init):
+ Fix build.
+
+2006-04-21 Tim-Philipp Müller <tim at centricular dot net>
+
* gst/debug/progressreport.c: (gst_progress_report_finalize),
(gst_progress_report_class_init), (gst_progress_report_init),
(gst_progress_report_do_query), (gst_progress_report_report),
diff --git a/ext/dv/gstdv.c b/ext/dv/gstdv.c
index 90947f46..0402ab51 100644
--- a/ext/dv/gstdv.c
+++ b/ext/dv/gstdv.c
@@ -28,7 +28,7 @@
static gboolean
plugin_init (GstPlugin * plugin)
{
- GstRank dvdec_rank;
+ GstRank rank;
if (!gst_element_register (plugin, "dvdemux", GST_RANK_PRIMARY,
gst_dvdemux_get_type ()))
@@ -36,6 +36,7 @@ plugin_init (GstPlugin * plugin)
/* libdv does not correctly play back videos on big-endian machines. also it's
only optimized properly on x86-32 and x86-64. */
+
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
rank = GST_RANK_PRIMARY;
#else