2 * Copyright 2004-2008, François Revol, <revol@free.fr>.
3 * Distributed under the terms of the MIT License.
7 * Bayer to RGB32 colorspace transformation
10 #include "CamColorSpaceTransform.h"
12 class BayerTransform
: public CamColorSpaceTransform
16 virtual ~BayerTransform();
18 virtual const char* Name();
19 virtual color_space
OutputSpace();
21 // virtual status_t SetVideoFrame(BRect rect);
22 // virtual BRect VideoFrame() const { return fVideoFrame; };
27 // -----------------------------------------------------------------------------
28 BayerTransform::BayerTransform()
32 // -----------------------------------------------------------------------------
33 BayerTransform::~BayerTransform()
37 // -----------------------------------------------------------------------------
39 BayerTransform::Name()
44 // -----------------------------------------------------------------------------
46 BayerTransform::OutputSpace()
51 // -----------------------------------------------------------------------------
55 B_WEBCAM_DECLARE_CSTRANSFORM(BayerTransform
, bayer
)