示例#1
0
void DirectShowCIFGrabber::setsize() {
   int w;
   int h;

   w = basewidth_  / decimate_;
   h = baseheight_ / decimate_;

   debug_msg("DirectShowCIFGrabber::setsize: %dx%d\n", w, h);

   set_size_cif(w, h);
   allocref();
}
示例#2
0
void MmeCIFGrabber::setsize(int w, int h)
{
	set_size_cif(w, h);
}