summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--sys/osxvideo/osxvideosink.m4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4051f999..4d97863e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-17 Edward Hervey <edward.hervey@collabora.co.uk>
+
+ * sys/osxvideo/osxvideosink.m:
+ Fix minor build issues on macosx.
+ Fixes #543054
+
2008-07-17 Tim-Philipp Müller <tim.muller at collabora co uk>
* configure.ac::
diff --git a/sys/osxvideo/osxvideosink.m b/sys/osxvideo/osxvideosink.m
index f14cbcab..57908f31 100644
--- a/sys/osxvideo/osxvideosink.m
+++ b/sys/osxvideo/osxvideosink.m
@@ -475,10 +475,10 @@ static GstFlowReturn
gst_osx_video_sink_show_frame (GstBaseSink * bsink, GstBuffer * buf)
{
GstOSXVideoSink *osxvideosink;
+ char *viewdata;
osxvideosink = GST_OSX_VIDEO_SINK (bsink);
-
- char *viewdata =[osxvideosink->osxwindow->gstview getTextureBuffer];
+ viewdata = [osxvideosink->osxwindow->gstview getTextureBuffer];
GST_DEBUG ("show_frame");
memcpy (viewdata, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));