From: Benjamin Otte Date: Tue, 10 Aug 2004 07:31:11 +0000 (+0000) Subject: gst/videotestsrc/gstvideotestsrc.c: allow all pixel-aspect-ratios, not just 1:1 X-Git-Tag: 1.19.3~511^2~13836 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e8be7e19131101ca106febca9b15f105f0c539d;p=platform%2Fupstream%2Fgstreamer.git gst/videotestsrc/gstvideotestsrc.c: allow all pixel-aspect-ratios, not just 1:1 Original commit message from CVS: * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist): allow all pixel-aspect-ratios, not just 1:1 --- diff --git a/ChangeLog b/ChangeLog index f0ceb94..020046a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-08-06 Benjamin Otte + + * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist): + allow all pixel-aspect-ratios, not just 1:1 + 2004-08-09 David Schleef * sys/glsink/ARB_multitexture.h: Remove old files. diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index ece4d74..2929014 100644 --- a/gst/videotestsrc/gstvideotestsrc.c +++ b/gst/videotestsrc/gstvideotestsrc.c @@ -314,7 +314,6 @@ generate_capslist (void) gst_structure_set (structure, "width", GST_TYPE_INT_RANGE, 1, G_MAXINT, "height", GST_TYPE_INT_RANGE, 1, G_MAXINT, - "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1, "framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE, NULL); gst_caps_append_structure (caps, structure); }