gstreamer/gst/videoscale
2009-04-02 11:10:12 +02:00
..
.gitignore Initial revision 2001-12-22 23:27:17 +00:00
gstvideoscale.c videoscale: Use bilinear instead of 4tap scaling for heights < 4 2009-03-28 11:57:35 +01:00
gstvideoscale.h gst/videoscale/: Add a 4-tap image scaler. Theoretically looks much prettier. 2006-11-14 23:08:38 +00:00
Makefile.am Don't install static libs for plugins. Fixes #550851 for base. 2008-10-16 15:07:00 +00:00
README add _get_size function with stride, fixes YUV conversions 2004-07-27 15:56:55 +00:00
videoscale.vcproj more working plugins 2004-07-27 21:41:30 +00:00
vs_4tap.c videoscale: Don't read over line ends when taking the last Cr or Cb 2009-04-02 11:10:12 +02:00
vs_4tap.h videoscale: Implement 4-tap scaling for RGB565 and RGB555 2009-03-27 13:14:00 +01:00
vs_image.c videoscale: Rewrite YUYV (and friends) scaling and don't read/write over line ends 2009-03-28 16:08:44 +01:00
vs_image.h configure.ac: Bump liboil requirement to 0.3.8. 2006-11-14 23:34:19 +00:00
vs_scanline.c videoscale: Fix linear scaling for one byte components 2009-03-29 12:01:33 +02:00
vs_scanline.h videoscale: Rewrite YUYV (and friends) scaling and don't read/write over line ends 2009-03-28 16:08:44 +01:00

- test different strides using
gst-launch -v videotestsrc ! video/x-raw-yuv,width=320,height=240,format=\(fourcc\)UYVY ! videoscale ! video/x-raw-yuv,width=328,height=240 ! xvimagesink 
gst-launch -v videotestsrc ! video/x-raw-yuv,width=320,height=240,format=\(fourcc\)UYVY ! videoscale ! video/x-raw-yuv,width=324,height=240 ! xvimagesink 
gst-launch -v videotestsrc ! video/x-raw-yuv,width=320,height=240,format=\(fourcc\)UYVY ! videoscale ! video/x-raw-yuv,width=322,height=240 ! xvimagesink 
gst-launch -v videotestsrc ! video/x-raw-yuv,width=320,height=240,format=\(fourcc\)UYVY ! videoscale ! video/x-raw-yuv,width=321,height=240 ! xvimagesink