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.
This commit is contained in:
David Schleef 2003-11-07 04:36:41 +00:00
parent 1300e3e874
commit 122a4ffe5c

View file

@ -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);
}