comparison libswscale/rgb2rgb.h @ 27495:fe28a794c04f

enable yuv422p to uyvy converter
author bcoudurier
date Fri, 05 Sep 2008 00:25:39 +0000
parents e05965c550fc
children 905724de832e
comparison
equal deleted inserted replaced
27494:89971b14c335 27495:fe28a794c04f
108 extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, 108 extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
109 long width, long height, 109 long width, long height,
110 long lumStride, long chromStride, long dstStride); 110 long lumStride, long chromStride, long dstStride);
111 111
112 /** 112 /**
113 *
114 * width should be a multiple of 16
115 */
116 extern void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
117 long width, long height,
118 long lumStride, long chromStride, long dstStride);
119
120 /**
113 * Height should be a multiple of 2 and width should be a multiple of 2. 121 * Height should be a multiple of 2 and width should be a multiple of 2.
114 * (If this is a problem for anyone then tell me, and I will fix it.) 122 * (If this is a problem for anyone then tell me, and I will fix it.)
115 * Chrominance data is only taken from every second line, others are ignored. 123 * Chrominance data is only taken from every second line, others are ignored.
116 * FIXME: Write HQ version. 124 * FIXME: Write HQ version.
117 */ 125 */