1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
/*
* Copyright (c) 1993-1995 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and the Network Research Group at
* Lawrence Berkeley Laboratory.
* 4. Neither the name of the University nor of the Laboratory may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef lint
static char rcsid[] =
"@(#) $Header: /cs/research/mice/starship/src/local/CVS_repository/vic/grabber-cosmo.cc,v 1.1.1.1 1998/02/18 18:03:28 ucacsva Exp $ (LBL)";
#endif
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <invent.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <dmedia/vl.h>
#include <dmedia/cl.h>
#include <dmedia/cl_cosmo.h>
#include "grabber.h"
#include "crdef.h"
#include "module.h"
#include "device-input.h"
#include "Tcl.h"
#include "transmitter.h"
class CosmoGrabber : public Grabber {
public:
CosmoGrabber();
virtual ~CosmoGrabber();
virtual int command(int argc, const char*const* argv);
virtual void fps(int);
virtual void start();
virtual void stop();
virtual void timeout();
protected:
virtual void startup();
virtual void shutdown();
virtual int grab();
int send(u_char* p, int cc);
VLDev lookup_device(const char*) const;
VLServer server_;
VLPath path_;
CL_BufferHdl cb_;
VLNode src_;
VLNode drn_;
VLDev device_;
CLcompressorHdl handle_;
int q_;
int inw_;
int inh_;
int decimate_;
int current_decimate_;
};
class CosmoDevice : public InputDevice {
public:
CosmoDevice(const char* name);
virtual int command(int argc, const char*const* argv);
static int havedev();
};
static CosmoDevice cosmo_device("cosmo");
int CosmoDevice::havedev()
{
setinvent();
inventory_t* p;
while ((p = getinvent()) != 0)
if (p->inv_class == INV_COMPRESSION &&
p->inv_type == INV_COSMO)
return (1);
return (0);
}
CosmoDevice::CosmoDevice(const char* name) : InputDevice(name)
{
if (havedev())
attributes_ = "format { jpeg }";
else
attributes_ = "disabled";
}
int CosmoDevice::command(int argc, const char*const* argv)
{
Tcl& tcl = Tcl::instance();
if (argc == 3 && strcmp(argv[1], "open") == 0) {
if (strcmp(argv[2], "jpeg") == 0) {
TclObject* o = new CosmoGrabber;
tcl.result(o->name());
}
return (TCL_OK);
}
return (InputDevice::command(argc, argv));
}
int CosmoGrabber::send(u_char* p, int cc)
{
/* strip off jfif header */
int sawff = 0;
u_char* ep;
for (ep = p + cc; p < ep; ) {
int c = *p++;
if (c == 0xff) {
sawff = 1;
continue;
}
if (!sawff)
continue;
if (c == 0xda) {
/* found start-of-scan marker */
if (p + 2 <= ep) {
/* skip over SOS */
u_int t = (p[0] << 8) | p[1];
p += t;
break;
}
}
sawff = 0;
}
if (p < ep) {
/*XXX get ts from CL */
JpegFrame f(media_ts(), p, cc, q_, 0, inw_, inh_);
target_->consume(&f);
tx_->flush();
}
return (0);
}
void CosmoGrabber::timeout()
{
#ifdef notdef
for (;;) {
double delta = tick(grab());
if (delta != 0.) {
usched(delta / 2);
return;
}
}
#endif
grab();
msched(10);
}
int CosmoGrabber::grab()
{
int cc;
CLimageInfo ii;
int s;
s = clGetNextImageInfo(handle_, &ii, sizeof(ii));
if (s == CL_NEXT_NOT_AVAILABLE) {
sginap(1);
s = clGetNextImageInfo(handle_, &ii, sizeof(ii));
if (s == CL_NEXT_NOT_AVAILABLE)
return (s);
}
#ifdef notdef
{
sginap(1);
s = clGetNextImageInfo(handle_, &ii, sizeof(ii));
}
#endif
if (s < 0) {
/*XXX*/
printf("clGetNextImageInfo failed\n");
exit(1);
}
#ifdef notdef
CLimageInfo nii;
while (clGetNextImageInfo(handle_, &nii, sizeof(nii)) == SUCCESS) {
clUpdateTail(cb_, ii.size);
ii = nii;
}
#endif
cc = ii.size;
/*XXX*/
u_char* bp = 0;
int wrap;
int n = clQueryValid(cb_, cc, (void**)&bp, &wrap);
if (n <= 0) {
/*XXX*/
printf("clQueryValid failed %d\n", n);
exit(1);
}
#ifdef notdef
printf("n %d cc %d w %d cc-n %d ic %d\n", n, cc, wrap, cc - n, ii.imagecount);
#endif
/*XXX throw away odd fields */
if (ii.imagecount & 1) {
clUpdateTail(cb_, cc);
return (0);
}
/*XXX get ts from ii*/
if (n < cc) {
/* frame wrapped */
/*XXX keep sp around*/
u_char* sp = new u_char[cc];
memcpy(sp, bp, n);
clUpdateTail(cb_, n);
(void)clQueryValid(cb_, cc - n, (void**)&bp, &wrap);
memcpy(sp + n, bp, cc - n);
s = send(sp, cc);
delete sp;
cc -= n;
} else
s = send(bp, cc);
clUpdateTail(cb_, cc);
return (s);
}
int CosmoGrabber::command(int argc, const char*const* argv)
{
if (argc == 3) {
if (strcmp(argv[1], "q") == 0) {
/*
* XXX seems to not respond to
* quality changes while running.
*/
shutdown();
/* assume value is in range */
q_ = atoi(argv[2]);
int options[2];
options[0] = CL_JPEG_QUALITY_FACTOR;
options[1] = q_;
(void)clSetParams(handle_, options, 2);
if (running_)
startup();
return (TCL_OK);
}
}
return (Grabber::command(argc, argv));
}
void CosmoGrabber::start()
{
startup();
Grabber::start();
}
void CosmoGrabber::stop()
{
shutdown();
Grabber::stop();
}
void CosmoGrabber::fps(int f)
{
Grabber::fps(f);
startup();
}
void CosmoGrabber::shutdown()
{
if (server_) {
if (path_) {
/*XXX nuke cb_ and else?*/
#ifdef notdef
if (transferBuf_) {
vlEndTransfer(server_, path_);
vlDeregisterBuffer(server_, path_, drn_,
transferBuf_);
vlDestroyBuffer(server_, transferBuf_);
transferBuf_ = 0;
}
#endif
vlDestroyPath(server_, path_);
path_ = 0;
}
vlCloseVideo(server_);
server_ = 0;
if (handle_ != 0) {
/*XXX*/
clDestroyBuf(cb_);
clCloseCompressor(handle_);
handle_ = 0;
}
}
}
VLDev CosmoGrabber::lookup_device(const char* device) const
{
VLDevList list;
vlGetDeviceList(server_, &list);
VLDevice* p = list.devices;
for (int n = list.numDevices; --n >= 0; ++p) {
if (strcmp(p->name, device) == 0)
return (p->dev);
}
return ((VLDev)-1);
}
void CosmoGrabber::startup()
{
if (server_ != 0 &&
decimate_ == current_decimate_)
return;
current_decimate_ = decimate_;
shutdown();
server_ = vlOpenVideo("");
if (server_ == 0)
goto failed;
/*
* locate an express video device
*/
device_ = lookup_device("ev1");
if (device_ < 0)
goto failed;
int port;
port = VL_ANY;/*XXX*/
src_ = vlGetNode(server_, VL_SRC, VL_VIDEO, port);
#define COSMO_PORT 2
drn_ = vlGetNode(server_, VL_DRN, VL_VIDEO, COSMO_PORT);
path_ = vlCreatePath(server_, device_, src_, drn_);
if (path_ < 0) {
vlPerror("vic: create path");
goto failed;
}
if (vlSetupPaths(server_, &path_, 1, VL_SHARE, VL_SHARE) < 0) {
vlPerror("vic: set up paths");
goto failed;
}
VLControlValue cv;
if (vlGetControl(server_, path_, src_, VL_SIZE, &cv) < 0) {
vlPerror("vic: get image size");
goto failed;
}
inw_ = cv.xyVal.x & ~7;
inw_ >>= 1;
/*XXX*/
inh_ = ((cv.xyVal.y + 15) >> 1) & ~7;
if (clOpenCompressor(CL_JPEG_COSMO, &handle_) < 0)
/*XXX*/
goto failed;
int options[10];
int* p;
p = options;
*p++ = CL_IMAGE_WIDTH;
*p++ = inw_ << 1;
/*
* decimate by two horizontally to give us a natural aspect ratio
* since we are capturing fields instead of frames.
*/
*p++ = CL_INTERNAL_IMAGE_WIDTH;
*p++ = inw_;
*p++ = CL_IMAGE_HEIGHT;
*p++ = inh_;
*p++ = CL_JPEG_QUALITY_FACTOR;
q_ = 80;/*XXX*/
*p++ = q_;
*p++ = CL_ENABLE_IMAGEINFO;
*p++ = 1;
if (clSetParams(handle_, options, 10) < 0)
goto failed;
/*XXX*/
cb_ = clCreateBuf(handle_, CL_DATA, 1, 100*1024, 0);
if (vlBeginTransfer(server_, path_, 0, NULL) < 0) {
vlPerror("vic: begin transfer");
goto failed;
}
/*
* Start it up.
*/
clCompress(handle_, CL_CONTINUOUS_NONBLOCK, CL_EXTERNAL_DEVICE,
0, NULL);
return;
failed:
shutdown();
status_ = -1;
}
CosmoGrabber::CosmoGrabber()
{
if (clOpenCompressor(CL_JPEG_COSMO, &handle_) < 0) {
status_ = -1;
return;
}
(void)clCloseCompressor(handle_);
handle_ = 0;
inw_ = 0;
inh_ = 0;
current_decimate_ = -1;
Grabber::fps(2);
decimate_ = 2;
server_ = 0;
path_ = 0;
}
CosmoGrabber::~CosmoGrabber()
{
shutdown();
}
|