summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-11-07 04:36:41 +0000
committerDavid Schleef <ds@schleef.org>2003-11-07 04:36:41 +0000
commit122a4ffe5cdda322f093bf07aa5ced07d1c91465 (patch)
treeb4e58c957e313374a1786f67d952ff11c510f87e
parent1300e3e87459b2f9c7cde8fce08e6ac8d3d4db97 (diff)
downloadgstreamer-plugins-bad-122a4ffe5cdda322f093bf07aa5ced07d1c91465.tar.gz
Don't set the actual video size in gst_video_sink_got_video_size().
Original commit message from CVS: Don't set the actual video size in gst_video_sink_got_video_size(). This could probably be replaced once we handle pixel aspect ratios.
-rw-r--r--gst-libs/gst/video/gstvideosink.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gst-libs/gst/video/gstvideosink.c b/gst-libs/gst/video/gstvideosink.c
index 40cb9c3cd..ed6c16227 100644
--- a/gst-libs/gst/video/gstvideosink.c
+++ b/gst-libs/gst/video/gstvideosink.c
@@ -299,9 +299,6 @@ gst_video_sink_got_video_size (GstVideoSink *videosink, gint width, gint height)
g_return_if_fail (videosink != NULL);
g_return_if_fail (GST_IS_VIDEOSINK (videosink));
- videosink->width = width;
- videosink->height = height;
-
g_signal_emit (G_OBJECT (videosink), gst_videosink_signals[HAVE_SIZE],
0, width, height);
}