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
This commit is contained in:
Benjamin Otte 2004-08-10 07:31:11 +00:00
parent 346923d634
commit 1e8be7e191
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
allow all pixel-aspect-ratios, not just 1:1
2004-08-09 David Schleef <ds@schleef.org>
* sys/glsink/ARB_multitexture.h: Remove old files.

View file

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