1 Jun 2004 03:02
Re: Request for bayer format
Luca Risolia <luca.risolia <at> studio.unibo.it>
2004-06-01 01:02:02 GMT
2004-06-01 01:02:02 GMT
Ok..This is the patch for xawtv-3.92.. diff -uprN xawtv-3.92/libng/color_bayer2rgb.c xawtv-3.92-devel/libng/color_bayer2rgb.c --- xawtv-3.92/libng/color_bayer2rgb.c 1970-01-01 01:00:00.000000000 +0100 +++ xawtv-3.92-devel/libng/color_bayer2rgb.c 2004-05-31 10:37:11.000000000 +0200 <at> <at> -0,0 +1,257 <at> <at> +/* + * colorspace conversion functions + * -- bayer to rgb colorspace conversions + * + * (c) 2004 Luca Risolia <luca.risolia <at> studio.unibo.it> + * Heavily based on color_yuv2rgb.c by Gerd Knorr <kraxel <at> bytesex.org> + * sbggr8_to_rgb24 written by Christopher Cramer + */ + +#define NG_PRIVATE +#include "config.h" + +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> +#include <pthread.h> +#include <sys/time.h> +#include <sys/types.h> + +#include "grab-ng.h" + +#define RED 0 +#define GREEN 1 +#define BLUE 2(Continue reading)
RSS Feed