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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
|
/*
PsychSourceGL/Source/Common/Screen/PsychVideoCaptureSupportLibDC1394.c
PLATFORMS:
GNU/Linux, Apple MacOS/X and (limited and experimental support for) MS-Windows
AUTHORS:
Mario Kleiner mk mario.kleiner@tuebingen.mpg.de
HISTORY:
DESCRIPTION:
This is the videocapture engine based on the free, open-source
LibDC-1394 V2 library. It only supports video capture, no sound capture and
no recording of video or sound.
It only supports machine vision cameras that are connected via the IEEE-1394
Firewire-bus and that conform to the IIDC-1.0 (and later) standard for firewire
machine vision cameras. These cameras are handled via the (statically linked)
libdc1394-2.0 in combination with (on Linux) libraw1394.
The functions provide high performance streaming of uncompressed camera data over
firewire and a lot of features (e.g., external sync. triggers) not useful for
consumer cameras, but very useful for computer vision applications and things
like eye-trackers, ...
NOTES:
TODO:
- Implement Query/WaitTrigger support via new Basler smart feature api.
- Implement the new generic frame format conversion routines.
*/
#include "Screen.h"
#include <float.h>
#ifdef PTBVIDEOCAPTURE_LIBDC
#include <inttypes.h>
#if PSYCH_SYSTEM == PSYCH_LINUX
// On Linux we use the syslog facility for logging, and libraw1394 for low-level access
// to the firewire bus:
#include <libraw1394/raw1394.h>
#include <syslog.h>
#endif
// This is the master include file for libdc1394. It includes all other public header files:
#include <dc1394/dc1394.h>
// Record which defines all state for a capture device:
typedef struct {
int valid; // Is this a valid device record? zero == Invalid.
dc1394camera_t *camera; // Ptr to a DC1394 camera object that holds the internal state for such cams.
dc1394video_frame_t *frame; // Ptr to a structure which contains the most recently captured/dequeued frame.
int dma_mode; // 0 == Non-DMA fallback path. 1 == DMA-Transfers. (Obsolete)
int allow_nondma_fallback; // Use of Non-DMA fallback path allowed? (Obsolete)
int dropframes; // 1 == Always deliver most recent frame in FIFO, even if dropping of frames is neccessary.
dc1394video_mode_t dc_imageformat;// Encodes image size and pixelformat.
dc1394framerate_t dc_framerate; // Encodes framerate.
dc1394color_coding_t colormode; // Encodes color encoding of cameras data.
unsigned char* scratchbuffer; // Scratch buffer for YUV->RGB conversion.
int reqpixeldepth; // Requested depth of single pixel in output texture.
int pixeldepth; // Depth of single pixel from grabber in bits.
int num_dmabuffers; // Number of DMA ringbuffers to use in DMA capture.
int nrframes; // Total count of decompressed images.
double fps; // Acquisition framerate of capture device.
int width; // Width x height of captured images.
int height;
double last_pts; // Capture timestamp of previous frame.
double current_pts; // Capture timestamp of current frame.
int current_dropped; // Dropped count for this fetch cycle...
int nr_droppedframes; // Counter for dropped frames.
int frame_ready; // Signals availability of new frames for conversion into GL-Texture.
int grabber_active; // Grabber running?
PsychRectType roirect; // Region of interest rectangle - denotes subarea of full video capture area.
double avg_decompresstime; // Average time spent in Quicktime/Sequence Grabber decompressor.
double avg_gfxtime; // Average time spent in GWorld --> OpenGL texture conversion and statistics.
int nrgfxframes; // Count of fetched textures.
} PsychVidcapRecordType;
static PsychVidcapRecordType vidcapRecordBANK[PSYCH_MAX_CAPTUREDEVICES];
static int numCaptureRecords = 0;
static psych_bool firsttime = TRUE;
static dc1394_t *libdc = NULL; // Master handle to DC1394 library.
// Forward declaration of internal helper function:
void PsychDCDeleteAllCaptureDevices(void);
/* PsychGetVidcapRecord() -- Given a handle, return ptr to video capture record.
* --> Internal helper function of PsychVideoCaptureSupport.
*/
PsychVidcapRecordType* PsychGetVidcapRecord(int deviceIndex)
{
// Sanity checks:
if (deviceIndex < 0) {
PsychErrorExitMsg(PsychError_user, "Invalid (negative) deviceIndex for video capture device passed!");
}
if (numCaptureRecords >= PSYCH_MAX_CAPTUREDEVICES) {
PsychErrorExitMsg(PsychError_user, "Invalid deviceIndex for video capture device passed. Index exceeds number of registered devices!");
}
if (!vidcapRecordBANK[deviceIndex].valid) {
PsychErrorExitMsg(PsychError_user, "Invalid deviceIndex for video capture device passed. No such device open!");
}
// Ok, we have a valid device record, return a ptr to it:
return(&vidcapRecordBANK[deviceIndex]);
}
/* CHECKED
* PsychVideoCaptureInit() -- Initialize video capture subsystem.
* This routine is called by Screen's RegisterProject.c PsychModuleInit()
* routine at Screen load-time. It clears out the vidcapRecordBANK to
* bring the subsystem into a clean initial state.
*/
void PsychDCVideoCaptureInit(void)
{
// Initialize vidcapRecordBANK with NULL-entries:
int i;
for (i=0; i < PSYCH_MAX_CAPTUREDEVICES; i++) {
vidcapRecordBANK[i].valid = 0;
}
numCaptureRecords = 0;
libdc = NULL;
return;
}
/* CHECKED
* void PsychExitVideoCapture() - Shutdown handler.
*
* This routine is called by Screen('CloseAll') and on clear Screen time to
* do final cleanup. It deletes all capture objects
*
*/
void PsychDCExitVideoCapture(void)
{
// Release all capture devices
PsychDCDeleteAllCaptureDevices();
// Shutdown library:
if (libdc && !firsttime) dc1394_free(libdc);
libdc = NULL;
// Reset firsttime flag to get a cold restart on next invocation of Screen:
firsttime = TRUE;
return;
}
/* CHECKED
* PsychDeleteAllCaptureDevices() -- Delete all capture objects and release all associated ressources.
*/
void PsychDCDeleteAllCaptureDevices(void)
{
int i;
for (i=0; i<PSYCH_MAX_CAPTUREDEVICES; i++) {
if (vidcapRecordBANK[i].valid) PsychDCCloseVideoCaptureDevice(i);
}
return;
}
/* CHECKED
* PsychCloseVideoCaptureDevice() -- Close a capture device and release all associated ressources.
*/
void PsychDCCloseVideoCaptureDevice(int capturehandle)
{
// Retrieve device record for handle:
PsychVidcapRecordType* capdev = PsychGetVidcapRecord(capturehandle);
// Stop capture immediately if it is still running:
PsychDCVideoCaptureRate(capturehandle, 0, 0, NULL);
// Initiate a power-down cycle to bring camera into standby mode:
if (dc1394_camera_set_power(capdev->camera, DC1394_OFF)!=DC1394_SUCCESS) {
printf("PTB-WARNING: Tried to power down camera %i, but powerdown-cycle failed for some reason!\n", capturehandle); fflush(NULL);
}
// Close & Shutdown camera, release ressources:
dc1394_camera_free(capdev->camera);
capdev->camera = NULL;
// Invalidate device record to free up this slot in the array:
capdev->valid = 0;
// Decrease counter of open capture devices:
if (numCaptureRecords>0) numCaptureRecords--;
// Done.
return;
}
/* CHECKED
* PsychOpenVideoCaptureDevice() -- Create a video capture object.
*
* This function tries to open and initialize a connection to a IEEE1394
* Firewire machine vision camera and return the associated captureHandle for it.
*
* slotid = Number of slot in vidcapRecordBANK[] array to use for this camera.
* win = Pointer to window record of associated onscreen window.
* deviceIndex = Index of the grabber device. (Currently ignored)
* capturehandle = handle to the new capture object.
* capturerectangle = If non-NULL a ptr to a PsychRectangle which contains the ROI for capture.
* reqdepth = Number of layers for captured output textures. (0=Don't care, 1=LUMINANCE8, 2=LUMINANCE8_ALPHA8, 3=RGB8, 4=RGBA8)
* num_dmabuffers = Number of buffers in the ringbuffer queue (e.g., DMA buffers) - This is OS specific. Zero = Don't care.
* allow_lowperf_fallback = If set to 1 then PTB can use a slower, low-performance fallback path to get nasty devices working.
* targetmoviefilename and recordingflags are currently ignored, they would refer to video harddics recording capabilities.
*/
psych_bool PsychDCOpenVideoCaptureDevice(int slotid, PsychWindowRecordType *win, int deviceIndex, int* capturehandle, double* capturerectangle,
int reqdepth, int num_dmabuffers, int allow_lowperf_fallback, char* targetmoviefilename, unsigned int recordingflags)
{
PsychVidcapRecordType *capdev = NULL;
dc1394camera_list_t *cameras=NULL;
unsigned int numCameras;
int err;
int i;
char msgerr[10000];
*capturehandle = -1;
if (firsttime) {
// First time invocation: Initialize library:
libdc = dc1394_new();
if (libdc == NULL) PsychErrorExitMsg(PsychError_user, "Failed to initialize libDC1394 V2 Firewire video capture library! Capture engine unavailable.");
firsttime = FALSE;
}
// Slot 'slotid' will contain the record for our new capture object:
// Initialize new record:
vidcapRecordBANK[slotid].valid = 1;
// Retrieve device record for slotid:
capdev = PsychGetVidcapRecord(slotid);
capdev->camera = NULL;
capdev->grabber_active = 0;
capdev->scratchbuffer = NULL;
// Query a list of all available (connected) Firewire cameras:
err=dc1394_camera_enumerate(libdc, &cameras);
if (err!=DC1394_SUCCESS) {
// Failed to detect any cameras: Invalidate our record.
capdev->valid = 0;
PsychErrorExitMsg(PsychError_user, "Unable to detect Firewire cameras: Please make sure that you have read/write access to\n"
"/dev/raw1394 and that the kernel modules `ieee1394',`raw1394' and `ohci1394' are successfully loaded.\n"
"Ask your system administrator for assistance or read 'help LinuxFirewire'.");
}
// Get number of detected cameras:
numCameras = cameras->num;
// Any cameras?
if (numCameras<1) {
// Failed to find a camera: Invalidate our record.
capdev->valid = 0;
PsychErrorExitMsg(PsychError_user, "Unable to find any Firewire camera: Please make sure that there's actually one connected.\n"
"Please note that we only support IIDC compliant machine vision cameras, not standard consumer DV cameras!");
}
// Specific cam requested?
if (deviceIndex==-1) {
// Nope. We just use the first one.
capdev->camera = dc1394_camera_new(libdc, cameras->ids[0].guid);
printf("PTB-INFO: Opening the first Firewire camera on the IEEE1394 bus.\n");
deviceIndex = 0;
}
else {
// Does a camera with requested index exist?
if (deviceIndex>=numCameras) {
// No such cam.
capdev->valid = 0;
sprintf(msgerr, "You wanted me to open the %i th camera (deviceIndex: %i), but there are only %i cameras available!",
deviceIndex + 1, deviceIndex, numCameras);
PsychErrorExitMsg(PsychError_user, msgerr);
}
// Ok, valid device index: Assign cam:
capdev->camera = dc1394_camera_new(libdc, cameras->ids[deviceIndex].guid);
printf("PTB-INFO: Opening the %i. Firewire camera (deviceIndex=%i) out of %i cams on the IEEE1394 bus.\n",
deviceIndex + 1, deviceIndex, numCameras);
}
fflush(NULL);
// Prepare error message in case its needed below:
sprintf(msgerr, "PTB-ERROR: Opening the %i. Firewire camera (deviceIndex=%i) failed! Failed to initialize camera with GUID %"PRIx64"\n", deviceIndex + 1, deviceIndex, cameras->ids[deviceIndex].guid);
// Free the unused cameras:
dc1394_camera_free_list(cameras);
cameras=NULL;
// Error abort if camera init failed:
if(capdev->camera == NULL) {
// Error abort here:
capdev->valid = 0;
PsychErrorExitMsg(PsychError_user, msgerr);
}
// ROI rectangle specified?
if (capturerectangle) {
PsychCopyRect(capdev->roirect, capturerectangle);
}
else {
// Create empty pseudo-rect, which means "don't care":
PsychMakeRect(capdev->roirect, 0, 0, 1 , 1);
}
// Our camera should be ready: Assign final handle.
*capturehandle = slotid;
// Increase counter of open capture devices:
numCaptureRecords++;
// Set zero framerate:
capdev->fps = 0;
// Set image size:
capdev->width = 0;
capdev->height = 0;
// Requested output texture pixel depth in layers:
capdev->reqpixeldepth = reqdepth;
// Number of DMA ringbuffers to use in DMA capture mode: If no number provided (==0), set it to 8 buffers...
capdev->num_dmabuffers = (num_dmabuffers>0) ? num_dmabuffers : 8;
// Use of low-performance non-DMA fallback path allowed in case of trouble with DMA engine?
// This flag currently has no meaning, as the final V2 release of libdc doesn't support non-DMA
// capture anymore, so we can't support it either. Same goes for the derived capdev->dma_mode
// flag, which will always be 1 and is no longer checked or used anywhere...
capdev->allow_nondma_fallback = allow_lowperf_fallback;
// Reset framecounter:
capdev->nrframes = 0;
capdev->grabber_active = 0;
fflush(NULL);
// Initiate a power-up cycle in case the camera is in standby mode:
if (dc1394_camera_set_power(capdev->camera, DC1394_ON)!=DC1394_SUCCESS) {
printf("PTB-WARNING: Tried to power up camera %i, but powerup-cycle failed for some reason!\n", deviceIndex); fflush(NULL);
}
// Initiate a reset-cycle on the camera to bring it into a clean state to start with:
if (dc1394_camera_reset(capdev->camera)!=DC1394_SUCCESS) {
printf("PTB-WARNING: Tried to reset camera %i, but reset cycle failed for some reason!\n", deviceIndex); fflush(NULL);
}
printf("PTB-INFO: Camera successfully opened...\n"); fflush(NULL);
return(TRUE);
}
// CHECKED
/* Internal function: Find best matching non-Format 7 mode:
*/
int PsychVideoFindNonFormat7Mode(PsychVidcapRecordType* capdev, double capturerate)
{
int maximgarea = 0;
dc1394video_mode_t maximgmode, mode;
int i, j, w, h;
unsigned int mw, mh;
float framerate;
dc1394framerate_t dc1394_framerate;
dc1394framerates_t supported_framerates;
dc1394video_modes_t video_modes;
dc1394color_coding_t color_code;
int nonyuvbonus;
float bpp;
int framerate_matched = false;
int roi_matched = false;
int mode_found = false;
// Query supported video modes for this camera:
dc1394_video_get_supported_modes(capdev->camera, &video_modes);
w = (int) PsychGetWidthFromRect(capdev->roirect);
h = (int) PsychGetHeightFromRect(capdev->roirect);
maximgmode = DC1394_VIDEO_MODE_MIN;
for (i = 0; i < video_modes.num; i++) {
// Query properties of this mode and match them against our requirements:
mode = video_modes.modes[i];
// We first check non-format 7 types: Skip format-7 types...
if (mode >= DC1394_VIDEO_MODE_FORMAT7_MIN) continue;
// Pixeldepth supported? We reject anything except RAW8 or MONO8 for luminance formats
// and RGB8, YUV444, YUV422, YUV411 for color formats.
dc1394_get_color_coding_from_video_mode(capdev->camera, mode, &color_code);
if (capdev->reqpixeldepth > 0) {
// Specific pixelsize requested:
if (capdev->reqpixeldepth < 3 && color_code!=DC1394_COLOR_CODING_RAW8 && color_code!=DC1394_COLOR_CODING_MONO8) continue;
if (capdev->reqpixeldepth > 2 && color_code!=DC1394_COLOR_CODING_RGB8 && color_code!=DC1394_COLOR_CODING_YUV444 &&
color_code!=DC1394_COLOR_CODING_YUV422 && color_code!=DC1394_COLOR_CODING_YUV411) continue;
}
else {
// No specific pixelsize req. check our minimum requirements:
if (color_code!=DC1394_COLOR_CODING_RGB8 && color_code!=DC1394_COLOR_CODING_RAW8 && color_code!=DC1394_COLOR_CODING_MONO8
&& color_code!=DC1394_COLOR_CODING_YUV444 && color_code!=DC1394_COLOR_CODING_YUV422 && color_code!=DC1394_COLOR_CODING_YUV411) continue;
}
// ROI specified?
dc1394_get_image_size_from_video_mode(capdev->camera, mode, &mw, &mh);
if (capdev->roirect[kPsychLeft]==0 && capdev->roirect[kPsychTop]==0 && w==1 && h==1) {
// No. Just find biggest one:
if (mw*mh < maximgarea) continue;
maximgarea = mw * mh;
maximgmode = mode;
mode_found = true;
roi_matched = true;
}
else {
// Yes. Check for exact match, reject everything else:
if (capdev->roirect[kPsychLeft]!=0 || capdev->roirect[kPsychTop]!=0 || w!=mw || h!=mh) continue;
roi_matched = true;
// Ok, this is a valid mode wrt. reqpixeldepth and exact image size. Check for matching framerate:
dc1394_video_get_supported_framerates(capdev->camera, mode, &supported_framerates);
for (j = 0; j < supported_framerates.num; j++) {
dc1394_framerate = supported_framerates.framerates[j];
dc1394_framerate_as_float(dc1394_framerate, &framerate);
if (framerate >= capturerate) break;
}
dc1394_framerate_as_float(dc1394_framerate, &framerate);
// nonyuvbonus is true, if a color capture mode is requested and the given mode
// allows for RGB8 transfer instead of a YUV format. We try to prefer non-YUV
// modes in selection of final mode, because YUV modes need a computationally
// expensive conversion YUVxxx --> RGB8, whereas RGB8 doesn't need that.
nonyuvbonus = (capdev->reqpixeldepth == 0 || capdev->reqpixeldepth > 2) && (color_code == DC1394_COLOR_CODING_RGB8);
// Compare whatever framerate we've got as closest match against current fastest one:
if ((framerate > maximgarea) ||
(framerate == capturerate && nonyuvbonus) ||
(framerate == maximgarea && nonyuvbonus)) {
maximgarea = (int) framerate;
maximgmode = mode;
mode_found = true;
}
}
}
// Sanity check: Any valid mode found?
if (!mode_found) {
// None found!
PsychErrorExitMsg(PsychError_user, "Couldn't find any capture mode settings for your camera which satisfy your minimum requirements! Aborted.");
}
// maximgmode contains the best matching non-format-7 mode for our specs:
mode = maximgmode;
capdev->dc_imageformat = mode;
// Query final color format and therefore pixel-depth:
dc1394_get_color_coding_from_video_mode(capdev->camera, mode, &color_code);
// This is the pixeldepth delivered by the capture engine:
capdev->pixeldepth = (color_code == DC1394_COLOR_CODING_MONO8 || color_code == DC1394_COLOR_CODING_RAW8) ? 8 : 24;
// Match this against requested pixeldepth:
if (capdev->reqpixeldepth == 0) {
// No specific depth requested: Just use native depth of captured image:
capdev->reqpixeldepth = capdev->pixeldepth;
}
else {
// Specific depth requested: Match it against native format:
switch (capdev->reqpixeldepth) {
case 1:
// Pure LUMINANCE8 requested:
case 2:
// LUMINANCE8+ALPHA8 requested: This is not yet supported.
if (capdev->pixeldepth != 8*capdev->reqpixeldepth && PsychPrefStateGet_Verbosity()>1) {
printf("PTB-WARNING: Wanted a depth of %i layers (%s) for captured images, but capture device delivers\n"
"PTB-WARNING: %i layers! Adapted to capture device native format for performance reasons.\n",
capdev->reqpixeldepth, (capdev->reqpixeldepth==1) ? "LUMINANCE - 8 bpc":"LUMINANCE+ALPHA - 8 bpc", capdev->pixeldepth/8);
}
capdev->reqpixeldepth = capdev->pixeldepth;
break;
case 3:
// RGB8 requested:
case 4:
// RGBA8 requested: This is not yet supported.
if (capdev->pixeldepth != 8*capdev->reqpixeldepth && PsychPrefStateGet_Verbosity()>1) {
printf("PTB-WARNING: Wanted a depth of %i layers (%s) for captured images, but capture device delivers\n"
"PTB-WARNING: %i layers! Adapted to capture device native format for performance reasons.\n",
capdev->reqpixeldepth, (capdev->reqpixeldepth==3) ? "RGB - 8 bpc":"RGB+ALPHA - 8 bpc", capdev->pixeldepth/8);
}
capdev->reqpixeldepth = capdev->pixeldepth;
break;
default:
capdev->reqpixeldepth = 0;
PsychErrorExitMsg(PsychError_user, "You requested a invalid capture image format (more than 4 layers). Aborted.");
}
}
if (capdev->reqpixeldepth > 8 && color_code != DC1394_COLOR_CODING_RGB8 && PsychPrefStateGet_Verbosity()>1) {
// Color capture with a non RGB8 mode aka a YUV mode -- expensive.
printf("PTB-INFO: Using a YUV color format instead of a RGB color format. This requires expensive YUV->RGB conversion and\n");
printf("PTB-INFO: can lead to higher cpu load and longer latencies. You may be able to avoid this with different settings\n");
printf("PTB-INFO: for ROI, color depth and framerate...\n"); fflush(NULL);
}
// Query final image size and therefore ROI:
dc1394_get_image_size_from_video_mode(capdev->camera, mode, &mw, &mh);
capdev->roirect[kPsychLeft] = 0;
capdev->roirect[kPsychTop] = 0;
capdev->roirect[kPsychRight] = mw;
capdev->roirect[kPsychBottom] = mh;
// Recheck capture framerate:
// We probe all available non mode-7 framerates of camera for the best match, aka
// the slowest framerate equal or faster to the requested framerate:
dc1394_video_get_supported_framerates(capdev->camera, mode, &supported_framerates);
for (i = 0; i < supported_framerates.num; i++) {
dc1394_framerate = supported_framerates.framerates[i];
dc1394_framerate_as_float(dc1394_framerate, &framerate);
if (framerate >= capturerate) break;
}
dc1394_framerate_as_float(dc1394_framerate, &framerate);
// Ok, we've got the closest match we could get. Good enough?
if ((fabs(framerate - capturerate) < 0.5) || (capturerate == DBL_MAX)) {
// Perfect match of delivered and requested framerate. Nothing to do so far...
framerate_matched=true;
}
else {
// No perfect match :(.
framerate_matched=false;
if(framerate < capturerate) {
printf("PTB-WARNING: Camera does not support requested capture framerate of %f fps. Using maximum of %f fps instead.\n",
(float) capturerate, framerate);
fflush(NULL);
}
}
// Return framerate:
capdev->dc_framerate = dc1394_framerate;
if(PsychPrefStateGet_Verbosity()>1){
printf("PTB-INFO: Will use non-Format7 mode %i: Width x Height = %i x %i, fps=%f, colormode=%i ...\n",
(int) mode, mw, mh, framerate, (int) color_code); fflush(NULL);
}
// Success!
return(true);
}
// CHECKED
/* Internal function: Find best matching Format 7 mode:
* Returns calculated optimal iso-packet size.
*/
int PsychVideoFindFormat7Mode(PsychVidcapRecordType* capdev, double capturerate)
{
float mindiff = 1000000;
float mindifframerate = 0;
int minpacket_size = 0;
dc1394video_mode_t minimgmode, mode;
int i, j, w, h, numF7Available=0;
dc1394speed_t speed;
unsigned int mw, mh, pbmin, pbmax, depth;
int num_packets, packet_size;
float framerate;
dc1394framerate_t dc1394_framerate;
dc1394framerates_t supported_framerates;
dc1394video_modes_t video_modes;
dc1394color_coding_t color_code;
float bpp;
int framerate_matched = false;
int roi_matched = false;
float bus_period;
// Query IEEE1394 bus speed code and map it to bus_period:
if (dc1394_video_get_iso_speed(capdev->camera, &speed)!=DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to query bus-speed - Start of video capture failed!");
}
// Special hack for Unibrain Fire-i: This camera can do 400 Megabit/second, but reports
// a speed of 100 MBit after a cold-start! We enforce a 400 Megabit speed if this is a
// Unibrain Fire-i:
if (strstr(capdev->camera->vendor, "Unibrain") && strstr(capdev->camera->model, "Fire-i")) {
// Unibrain Fire-i: Enforce correct speed:
speed = DC1394_ISO_SPEED_400;
}
switch(speed) {
case DC1394_ISO_SPEED_100:
bus_period = 0.000500f;
break;
case DC1394_ISO_SPEED_200:
bus_period = 0.000250f;
break;
case DC1394_ISO_SPEED_400:
bus_period = 0.000125f;
break;
case DC1394_ISO_SPEED_800:
bus_period = 0.0000625f;
break;
case DC1394_ISO_SPEED_1600:
bus_period = 0.00003125f;
break;
case DC1394_ISO_SPEED_3200:
bus_period = 0.000015625f;
break;
default:
PsychErrorExitMsg(PsychError_user, "Unknown bus speed specification! Start of video capture failed!");
}
if(PsychPrefStateGet_Verbosity()>1){
printf("PTB-INFO: IEEE-1394 Firewire bus speed is %i Megabit/second --> Bus period is %f usecs.\n",
(int) (100 << speed), bus_period * 1000000.0f);
}
// Query supported video modes for this camera:
dc1394_video_get_supported_modes(capdev->camera, &video_modes);
minimgmode = DC1394_VIDEO_MODE_MIN;
for (i = 0; i < video_modes.num; i++) {
// Query properties of this mode and match them against our requirements:
mode = video_modes.modes[i];
// Skip non-format-7 types...
if (mode < DC1394_VIDEO_MODE_FORMAT7_MIN || mode > DC1394_VIDEO_MODE_FORMAT7_MAX) continue;
// Increment count of available Format-7 modes:
numF7Available++;
if(PsychPrefStateGet_Verbosity()>1){
printf("PTB-Info: Probing Format-7 mode %i ...\n", mode);
}
// Pixeldepth supported? We reject anything except RAW8 or MONO8 for luminance formats
// and RGB8 for color formats.
dc1394_format7_get_color_coding(capdev->camera, mode, &color_code);
if (capdev->reqpixeldepth > 0) {
// Specific pixelsize requested:
if (capdev->reqpixeldepth < 3 && color_code!=DC1394_COLOR_CODING_RAW8 && color_code!=DC1394_COLOR_CODING_MONO8) continue;
if (capdev->reqpixeldepth > 2 && color_code!=DC1394_COLOR_CODING_RGB8) continue;
}
else {
// No specific pixelsize req. check our minimum requirements:
if (color_code!=DC1394_COLOR_CODING_RGB8 && color_code!=DC1394_COLOR_CODING_RAW8 && color_code!=DC1394_COLOR_CODING_MONO8) continue;
}
// ROI specified?
w = (int) PsychGetWidthFromRect(capdev->roirect);
h = (int) PsychGetHeightFromRect(capdev->roirect);
if (capdev->roirect[kPsychLeft]==0 && capdev->roirect[kPsychTop]==0 && w==1 && h==1) {
// No. Just set biggest one for this mode:
// Query maximum size for mode:
if(dc1394_format7_get_max_image_size(capdev->camera, mode, &mw, &mh)!=DC1394_SUCCESS) continue;
// Set zero position offset:
if (dc1394_format7_set_image_position(capdev->camera, mode, 0, 0)!=DC1394_SUCCESS) continue;
// Set maximum size:
if (dc1394_format7_set_image_size(capdev->camera, mode, mw, mh)!=DC1394_SUCCESS) continue;
w=mw; h=mh;
roi_matched = true;
}
else {
// Yes. Check for exact match, reject everything else:
if(dc1394_format7_get_max_image_size(capdev->camera, mode, &mw, &mh)!=DC1394_SUCCESS) continue;
if (w > mw || h > mh) continue;
// This mode allows for a ROI as big as the one we request. Try to set it up:
// First set zero position offset:
if (dc1394_format7_set_image_position(capdev->camera, mode, 0, 0)!=DC1394_SUCCESS) continue;
// Reject mode if size isn't supported:
if (dc1394_format7_set_image_size(capdev->camera, mode, (unsigned int) w, (unsigned int) h)!=DC1394_SUCCESS) continue;
// Now set real position:
if (dc1394_format7_set_image_position(capdev->camera, mode, (unsigned int) capdev->roirect[kPsychLeft], (unsigned int) capdev->roirect[kPsychTop])!=DC1394_SUCCESS) continue;
// If we reach this point, then we should have exactly the ROI we wanted.
roi_matched = true;
}
// Try to set the requested framerate as well:
// We need to calculate the ISO packet size depending on wanted framerate, Firewire bus speed,
// image size and image depth + some IIDC spec. restrictions...
// First we query the range of available packet sizes:
if (dc1394_format7_get_packet_parameters(capdev->camera, mode, &pbmin, &pbmax)!=DC1394_SUCCESS) continue;
// Special case handling:
if (pbmin==0) pbmin = pbmax;
// Compute number of ISO-Packets, assuming a 400 MBit bus (125 usec cycle time):
num_packets = (int) (1.0/(bus_period * capturerate) + 0.5);
if (num_packets < 1 || num_packets > 4095) {
// Invalid num_packets. Adapt it to fit IIDC constraints:
if (num_packets < 1) {
num_packets = 1;
}
else {
num_packets = 4095;
}
}
num_packets*=8;
if (dc1394_format7_get_data_depth(capdev->camera, mode, &depth)!=DC1394_SUCCESS) continue;
packet_size = (int)((w * h * depth + num_packets - 1) / num_packets);
// Make sure that packet_size is an integral multiple of pbmin (IIDC constraint):
if (packet_size < pbmin) packet_size = pbmin;
if (packet_size % pbmin != 0) {
packet_size = packet_size - (packet_size % pbmin);
}
// Make sure that packet size is smaller than pbmax:
while (packet_size > pbmax) packet_size=packet_size - pbmin;
// Ok, we should now have the closest valid packet size for the given ROI and framerate:
// Inverse compute framerate for this packetsize:
num_packets = (int) ((w * h * depth + (packet_size*8) - 1)/(packet_size*8));
framerate = 1.0/(bus_period * (float) num_packets);
// Compare whatever framerate we've got as closest match against current fastest one:
if (fabs(capturerate - framerate) < mindiff) {
mindiff = fabs(capturerate - framerate);
mindifframerate = framerate;
minimgmode = mode;
minpacket_size = packet_size;
}
if(PsychPrefStateGet_Verbosity()>1){
if (capdev->roirect[kPsychLeft]!=0 || capdev->roirect[kPsychTop]!=0 || capdev->roirect[kPsychRight]!=1 || capdev->roirect[kPsychBottom]!=1) {
printf("PTB-INFO: Checking Format-7 mode %i: ROI = [l=%f t=%f r=%f b=%f] , FPS = %f\n", mode, (float) capdev->roirect[kPsychLeft], (float) capdev->roirect[kPsychTop],
(float) capdev->roirect[kPsychRight], (float) capdev->roirect[kPsychBottom], framerate);
}
else {
printf("PTB-INFO: Checking Format-7 mode %i: ROI = [l=0 t=0 r=%i b=%i] , FPS = %f\n", mode, w, h, framerate);
}
}
// Test next mode...
}
// Sanity check: Any valid mode found?
if (minimgmode == DC1394_VIDEO_MODE_MIN || numF7Available == 0) {
// None found!
if (numF7Available > 0) {
printf("PTB-INFO: Couldn't find any Format-7 capture mode settings for your camera which satisfy your minimum requirements!\n");
}
else {
printf("PTB-INFO: This camera does not support *any* Format-7 capture modes.\n");
}
printf("PTB-INFO: Will now try standard (non Format-7) capture modes for the best match and try to use that...\n");
return(0);
}
// Success (more or less...):
// minimgmode contains the best matching Format-7 mode for our specs:
mode = minimgmode;
capdev->dc_imageformat = mode;
capdev->dc_framerate = DC1394_FRAMERATE_MIN;
packet_size = minpacket_size;
framerate = mindifframerate;
// Query final color format and therefore pixel-depth:
dc1394_get_color_coding_from_video_mode(capdev->camera, mode, &color_code);
// This is the pixeldepth delivered by the capture engine:
capdev->pixeldepth = (color_code == DC1394_COLOR_CODING_RGB8) ? 24 : 8;
// Match this against requested pixeldepth:
if (capdev->reqpixeldepth == 0) {
// No specific depth requested: Just use native depth of captured image:
capdev->reqpixeldepth = capdev->pixeldepth;
}
else {
// Specific depth requested: Match it against native format:
switch (capdev->reqpixeldepth) {
case 1:
// Pure LUMINANCE8 requested:
case 2:
// LUMINANCE8+ALPHA8 requested: This is not yet supported.
if (capdev->pixeldepth != 8*capdev->reqpixeldepth && PsychPrefStateGet_Verbosity()>1) {
printf("PTB-WARNING: Wanted a depth of %i layers (%s) for captured images, but capture device delivers\n"
"PTB-WARNING: %i layers! Adapted to capture device native format for performance reasons.\n",
capdev->reqpixeldepth, (capdev->reqpixeldepth==1) ? "LUMINANCE - 8 bpc":"LUMINANCE+ALPHA - 8 bpc", capdev->pixeldepth/8);
}
capdev->reqpixeldepth = capdev->pixeldepth;
break;
case 3:
// RGB8 requested:
case 4:
// RGBA8 requested: This is not yet supported.
if (capdev->pixeldepth != 8*capdev->reqpixeldepth && PsychPrefStateGet_Verbosity()>1) {
printf("PTB-WARNING: Wanted a depth of %i layers (%s) for captured images, but capture device delivers\n"
"PTB-WARNING: %i layers! Adapted to capture device native format for performance reasons.\n",
capdev->reqpixeldepth, (capdev->reqpixeldepth==3) ? "RGB - 8 bpc":"RGB+ALPHA - 8 bpc", capdev->pixeldepth/8);
}
capdev->reqpixeldepth = capdev->pixeldepth;
break;
default:
capdev->reqpixeldepth = 0;
PsychErrorExitMsg(PsychError_user, "You requested a invalid capture image format (more than 4 layers). Aborted.");
}
}
// Query final image size and therefore ROI:
dc1394_get_image_size_from_video_mode(capdev->camera, mode, &mw, &mh);
capdev->roirect[kPsychRight] = capdev->roirect[kPsychLeft] + mw;
capdev->roirect[kPsychBottom] = capdev->roirect[kPsychTop] + mh;
// Ok, we've got the closest match we could get. Good enough?
if ((mindiff < 0.5) || (capturerate == DBL_MAX)) {
// Perfect match of delivered and requested framerate. Nothing to do so far...
framerate_matched=true;
}
else {
// No perfect match :(.
framerate_matched=false;
if(framerate < capturerate) {
printf("PTB-WARNING: Camera does not support requested capture framerate of %f fps at given ROI setting. Using %f fps instead.\n",
(float) capturerate, framerate);
fflush(NULL);
}
}
// Assign computed framerate as best guess for real framerate, in case frame-interval query fails...
capdev->fps = framerate;
// Return packet_size:
return(packet_size);
}
/* CHECKED
* PsychVideoCaptureRate() - Start- and stop video capture.
*
* capturehandle = Grabber to start-/stop.
* capturerate = zero == Stop capture, non-zero == Capture. Tries to choose smallest framerate
* that is equal or higher than requested rate. Special value capturerate == DBL_MAX will choose
* the fasted supported framerate for the other given capture settings.
* dropframes = 0 - Always deliver oldest frame in DMA ringbuffer. 1 - Always deliver newest frame.
* --> 1 == drop frames in ringbuffer if behind -- low-latency capture.
* startattime = Deadline (in system time) for which to wait before real start of capture.
* Returns Number of dropped frames during capture.
*/
int PsychDCVideoCaptureRate(int capturehandle, double capturerate, int dropframes, double* startattime)
{
int dropped = 0;
float framerate = 0;
dc1394speed_t speed;
dc1394video_mode_t maximgmode, mode;
int i, j, w, h, packetsize;
unsigned int mw, mh;
dc1394framerate_t dc1394_framerate;
dc1394framerates_t supported_framerates;
dc1394video_modes_t video_modes;
dc1394color_coding_t color_code;
float bpp;
int framerate_matched = false;
int roi_matched = false;
dc1394error_t err;
// Retrieve device record for handle:
PsychVidcapRecordType* capdev = PsychGetVidcapRecord(capturehandle);
// Start- or stop capture?
if (capturerate > 0) {
// Start capture:
if (capdev->grabber_active) PsychErrorExitMsg(PsychError_user, "You tried to start video capture, but capture is already started!");
// Reset statistics:
capdev->last_pts = -1.0;
capdev->nr_droppedframes = 0;
capdev->frame_ready = 0;
// Select best matching mode for requested image size and pixel format:
// ====================================================================
w = (int) PsychGetWidthFromRect(capdev->roirect);
h = (int) PsychGetHeightFromRect(capdev->roirect);
// Can we (potentially) get along with a non-Format-7 mode?
// Check minimum requirements for non-Format-7 mode:
if (!((capdev->roirect[kPsychLeft]==0 && capdev->roirect[kPsychTop]==0) &&
((capdev->roirect[kPsychRight]==1 && capdev->roirect[kPsychBottom]==1) || (w==640 && h==480) ||
(w==800 && h==600) || (w==1024 && h==768) || (w==1280 && h==960) || (w==1600 && h==1200) ||
(w==320 && h==240) || (w==160 && h==120)) &&
(capturerate==1.875 || capturerate==3.75 || capturerate==7.5 || capturerate==15 || capturerate==30 ||
capturerate==60 || capturerate==120 || capturerate==240))) {
// Ok, the requested ROI and/or framerate is not directly supported by non-Format7 capture modes.
// Try to find a good format-7 mode, fall back to NF-7 if format 7 doesn't work out:
if ((packetsize=PsychVideoFindFormat7Mode(capdev, capturerate))==0) {
// Could not find good Format-7 mode! Try NF-7: This function will exit if we don't find
// a useful match at all:
PsychVideoFindNonFormat7Mode(capdev, capturerate);
}
// Ok either we have a format-7 mode ready to go (packetsize>0) or we have a default
// non-format-7 mode ready (packetsize==0)...
}
else {
// The requested combo of ROI and framerate should be supported by standard non-format-7 capture:
// Try it and exit in case of non-match:
PsychVideoFindNonFormat7Mode(capdev, capturerate);
packetsize = 0;
}
// The PsychVideoFind(Non)Format7Mode() logic above already set the ROI for capture...
// Setup capture hardware and DMA engine:
if (dc1394_video_get_iso_speed(capdev->camera, &speed)!=DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to query bus-speed - Start of video capture failed!");
}
// Special hack for Unibrain Fire-i: This camera can do 400 Megabit/second, but reports
// a speed of 100 MBit after a cold-start! We enforce a 400 Megabit speed if this is a
// Unibrain Fire-i:
if (strstr(capdev->camera->vendor, "Unibrain") && strstr(capdev->camera->model, "Fire-i")) {
// Unibrain Fire-i: Enforce correct speed:
speed = DC1394_ISO_SPEED_400;
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Unibrain Fire-i detected. Setting override bus speed 400 MBit...\n"); fflush(NULL);
}
// Assign final mode and framerate:
dc1394_framerate = capdev->dc_framerate;
mode = capdev->dc_imageformat;
// Query final color format of captured data:
dc1394_get_color_coding_from_video_mode(capdev->camera, mode, &color_code);
capdev->colormode = color_code;
// Setup DMA engine:
// =================
// Set ISO speed:
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Setting ISO speed... "); fflush(NULL);
err = dc1394_video_set_iso_speed(capdev->camera, speed);
if (err != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to setup and start capture engine: Setting ISO speed failed!");
}
if(PsychPrefStateGet_Verbosity()>5) printf("...done.\n"); fflush(NULL);
// Set Mode:
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Setting mode..."); fflush(NULL);
err = dc1394_video_set_mode(capdev->camera, mode);
if (err != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to setup and start capture engine: Setting mode failed!");
}
if(PsychPrefStateGet_Verbosity()>5) printf("...done.\n"); fflush(NULL);
// Set Framerate for non-Format7 modes: This is redundant in Format7 mode...
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Setting framerate (even in nonFormat-7!)..."); fflush(NULL);
err = dc1394_video_set_framerate(capdev->camera, dc1394_framerate);
if (err != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to setup and start capture engine: Setting fixed framerate failed!");
}
if(PsychPrefStateGet_Verbosity()>5) printf("...done.\n"); fflush(NULL);
// Format-7 capture?
if (packetsize > 0) {
// Format-7 capture DMA setup: We only set mode, color format, packetsize (and thereby framerate) and ROI (and thereby imagesize):
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Setting format-7 ROI..."); fflush(NULL);
err = dc1394_format7_set_roi(capdev->camera, mode, color_code, packetsize, (unsigned int) capdev->roirect[kPsychLeft], (unsigned int) capdev->roirect[kPsychTop], (unsigned int) PsychGetWidthFromRect(capdev->roirect), (unsigned int) PsychGetHeightFromRect(capdev->roirect));
if (err != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to setup and start capture engine: Setting Format7 ROI failed!");
}
if(PsychPrefStateGet_Verbosity()>5) printf("...done. \n"); fflush(NULL);
}
else {
// Non-Format-7 capture DMA setup: mode encodes image size, ROI and color format.
// Nothing to do for now...
}
// Framedropping is no longer supported by libdc, so we implement it ourselves.
// Store the 'dropframes' flag in our capdev struct, so the PsychDCGetTextureFromCapture()
// knows how to handle this:
capdev->dropframes = (dropframes > 0) ? 1 : 0;
// Finally setup and start DMA video capture engine with default flags (auto allocation and
// release of iso bandwidth and channels) and num_dmabuffers DMA buffer slots in internal video FIFO:
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Setting up DMA capture now!"); fflush(NULL);
err = dc1394_capture_setup(capdev->camera, capdev->num_dmabuffers, DC1394_CAPTURE_FLAGS_DEFAULT);
if (err != DC1394_SUCCESS) {
// Failed! We clean up and fail:
// Non-DMA path no longer supported by final libdc V2, so this is the end of the game...
PsychErrorExitMsg(PsychError_unimplemented, "Unable to setup and start DMA capture engine - Start of video capture failed!");
}
else {
// Signal use of DMA engine: Meaningless as of 1st January 2008...
capdev->dma_mode = 1;
}
if(PsychPrefStateGet_Verbosity()>5) printf(" DMA-Engine started.\n"); fflush(NULL);
// Ready to go! Now we just need to tell the camera to start its capture cycle:
// Wait until start deadline reached:
if (*startattime != 0) PsychWaitUntilSeconds(*startattime);
// Start DMA driven isochronous data transfer:
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Enabling cameras ISO transmission -- Start of capture...\n"); fflush(NULL);
if (dc1394_video_set_transmission(capdev->camera, DC1394_ON) !=DC1394_SUCCESS) {
// Failed! Shutdown DMA capture engine again:
dc1394_capture_stop(capdev->camera);
PsychErrorExitMsg(PsychError_user, "Unable to start isochronous data transfer from camera - Start of video capture failed!");
}
// Record real start time:
PsychGetAdjustedPrecisionTimerSeconds(startattime);
if(PsychPrefStateGet_Verbosity()>5) printf("PTB-DEBUG: Capture engine fully running...\n"); fflush(NULL);
// Map framerate enum to floating point value and assign it:
if (packetsize == 0) {
dc1394_framerate_as_float(dc1394_framerate, &framerate);
}
else {
dc1394_format7_get_frame_interval(capdev->camera, mode, &framerate);
if (framerate == 0) framerate = capdev->fps;
}
capdev->fps = (double) framerate;
// Setup size and position:
capdev->width = (int) PsychGetWidthFromRect(capdev->roirect);
capdev->height = (int) PsychGetHeightFromRect(capdev->roirect);
// Ok, capture is now started:
capdev->grabber_active = 1;
// Allocate conversion buffer if needed for YUV->RGB conversions.
// FIXME TODO: libdc provides better method for this now!!!
if (capdev->pixeldepth == 24 && color_code!=DC1394_COLOR_CODING_RGB8) {
// Software conversion of YUV -> RGB needed. Allocate a proper scratch-buffer:
capdev->scratchbuffer = malloc(capdev->width * capdev->height * 3);
}
if(PsychPrefStateGet_Verbosity()>1) {
printf("PTB-INFO: Capture started on device %i - Width x Height = %i x %i - Framerate: %f fps.\n", capturehandle, capdev->width, capdev->height, capdev->fps);
}
}
else {
// Stop capture:
if (capdev->grabber_active) {
// Stop isochronous data transfer from camera:
if (dc1394_video_set_transmission(capdev->camera, DC1394_OFF) !=DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_user, "Unable to stop video transfer on camera! (dc1394_video_set_transmission(DC_OFF) failed)!");
}
// Stop capture engine:
dc1394_capture_stop(capdev->camera);
// Ok, capture is now stopped.
capdev->frame_ready = 0;
capdev->grabber_active = 0;
if (capdev->scratchbuffer) {
// Release scratch-buffer:
free(capdev->scratchbuffer);
capdev->scratchbuffer = NULL;
}
// MK: FIXME: Need to undo reqpixeldepth = reqpixeldepth * 8 in start capture!
// Need to rethink definition of reqpixeldepth...
capdev->reqpixeldepth = capdev->reqpixeldepth / 8;
if(PsychPrefStateGet_Verbosity()>1){
// Output count of dropped frames:
if ((dropped=capdev->nr_droppedframes) > 0) {
printf("PTB-INFO: Video capture dropped %i frames on device %i to keep capture running in sync with realtime.\n", dropped, capturehandle);
}
if (capdev->nrframes>0) capdev->avg_decompresstime/= (double) capdev->nrframes;
printf("PTB-INFO: Average time spent in video decompressor (waiting/polling for new frames) was %lf milliseconds.\n", capdev->avg_decompresstime * 1000.0f);
if (capdev->nrgfxframes>0) capdev->avg_gfxtime/= (double) capdev->nrgfxframes;
printf("PTB-INFO: Average time spent in GetCapturedImage (intensity calculation Video->OpenGL texture conversion) was %lf milliseconds.\n", capdev->avg_gfxtime * 1000.0f);
}
}
}
fflush(NULL);
// Reset framecounters and statistics:
capdev->nrframes = 0;
capdev->avg_decompresstime = 0;
capdev->nrgfxframes = 0;
capdev->avg_gfxtime = 0;
// Return either the real capture framerate (at start of capture) or count of dropped frames - at end of capture.
return((capturerate!=0) ? (int) (capdev->fps + 0.5) : dropped);
}
/* CHECKED
* PsychGetTextureFromCapture() -- Create an OpenGL texturemap from a specific videoframe from given capture object.
*
* win = Window pointer of onscreen window for which a OpenGL texture should be created.
* capturehandle = Handle to the capture object.
* checkForImage = >0 == Just check if new image available, 0 == really retrieve the image, blocking if necessary.
* 2 == Check for new image, block inside this function (if possible) if no image available.
*
* timeindex = This parameter is currently ignored and reserved for future use.
* out_texture = Pointer to the Psychtoolbox texture-record where the new texture should be stored.
* presentation_timestamp = A ptr to a double variable, where the presentation timestamp of the returned frame should be stored.
* summed_intensity = An optional ptr to a double variable. If non-NULL, then sum of intensities over all channels is calculated and returned.
* outrawbuffer = An optional ptr to a memory buffer of sufficient size. If non-NULL, the buffer will be filled with the captured raw image data, e.g., for use inside Matlab or whatever...
* Returns Number of pending or dropped frames after fetch on success (>=0), -1 if no new image available yet, -2 if no new image available and there won't be any in future.
*/
int PsychDCGetTextureFromCapture(PsychWindowRecordType *win, int capturehandle, int checkForImage, double timeindex,
PsychWindowRecordType *out_texture, double *presentation_timestamp, double* summed_intensity, rawcapimgdata* outrawbuffer)
{
GLuint texid;
int w, h;
double targetdelta, realdelta, frames;
unsigned int intensity = 0;
unsigned int count, i;
unsigned char* pixptr;
psych_bool newframe = FALSE;
double tstart, tend;
unsigned int pixval, alphacount;
dc1394error_t error;
int nrdropped = 0;
unsigned char* input_image = NULL;
// Retrieve device record for handle:
PsychVidcapRecordType* capdev = PsychGetVidcapRecord(capturehandle);
// Compute width and height for later creation of textures etc. Need to do this here,
// so we can return the values for raw data retrieval:
w=capdev->width;
h=capdev->height;
// If a outrawbuffer struct is provided, we fill it with info needed to allocate a
// sufficient memory buffer for returned raw image data later on:
if (outrawbuffer) {
outrawbuffer->w = w;
outrawbuffer->h = h;
outrawbuffer->depth = ((capdev->pixeldepth == 24) ? 3 : 1);
}
int waitforframe = (checkForImage > 1) ? 1:0; // Blocking wait for new image requested?
// A mode 4 means "no op" with the libdc capture engine.
if (checkForImage == 4) return(0);
// Take start timestamp for timing stats:
PsychGetAdjustedPrecisionTimerSeconds(&tstart);
// Should we just check for new image?
if (checkForImage) {
// Reset current dropped count to zero:
capdev->current_dropped = 0;
if (capdev->grabber_active == 0) {
// Grabber stopped. We'll never get a new image:
return(-2);
}
// Grabber active: Polling mode or wait for new frame mode?
if (waitforframe) {
// Check for image in blocking mode: We actually try to capture a frame in
// blocking mode, so we will wait here until a new frame arrives.
error = dc1394_capture_dequeue(capdev->camera, DC1394_CAPTURE_POLICY_WAIT, &(capdev->frame));
if (error == DC1394_SUCCESS) {
// Ok, new frame ready and dequeued from DMA ringbuffer. We'll return it on next non-poll invocation.
capdev->frame_ready = 1;
}
else {
// Blocking wait failed! Somethings seriously wrong:
PsychErrorExitMsg(PsychError_internal, "Blocking wait for new frame failed!!!");
}
}
else {
// Check for image in polling mode: We capture in non-blocking mode:
if (dc1394_capture_dequeue(capdev->camera, DC1394_CAPTURE_POLICY_POLL, &(capdev->frame)) == DC1394_SUCCESS) {
// Ok, call succeeded. If the 'frame' pointer is non-NULL then there's a new frame ready and dequeued from DMA
// ringbuffer. We'll return it on next non-poll invocation. Otherwise no new video data ready yet:
capdev->frame_ready = (capdev->frame != NULL) ? 1 : 0;
}
else {
// Polling wait failed for some reason...
PsychErrorExitMsg(PsychError_internal, "Polling for new video frame failed!!!");
}
}
if (capdev->frame_ready) {
// Store count of currently queued frames (in addition to the one just fetched).
// This is an indication of how well the users script is keeping up with the video stream,
// technically the number of frames that would need to be dropped to keep in sync with the
// stream.
capdev->current_dropped = (int) capdev->frame->frames_behind;
// Ok, at least one new frame ready. If more than one frame has queued up and
// we are in 'dropframes' mode, ie. we should always deliver the most recent available
// frame, then we quickly fetch & discard all queued frames except the last one.
while((capdev->dropframes) && ((int) capdev->frame->frames_behind > 0)) {
// We just poll - fetch the frames. As we know there are some queued frames, it
// doesn't matter if we poll or block, but polling sounds like a bit less overhead
// at the OS level:
// First enqueue the recently dequeued buffer...
if (dc1394_capture_enqueue((capdev->camera), (capdev->frame)) != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_system, "Requeuing of discarded video frame failed while dropping frames (dropframes=1)!!!");
}
// Then fetch the next one:
if (dc1394_capture_dequeue(capdev->camera, DC1394_CAPTURE_POLICY_POLL, &(capdev->frame)) != DC1394_SUCCESS || capdev->frame == NULL) {
// Polling failed for some reason...
PsychErrorExitMsg(PsychError_system, "Polling for new video frame failed while dropping frames (dropframes=1)!!!");
}
}
// Update stats for decompression:
PsychGetAdjustedPrecisionTimerSeconds(&tend);
// Increase counter of decompressed frames:
capdev->nrframes++;
// Update avg. decompress time:
capdev->avg_decompresstime+=(tend - tstart);
// Query capture timestamp (in microseconds) and convert to seconds. This comes from the capture
// engine with (theroretically) microsecond precision and is assumed to be pretty accurate:
capdev->current_pts = ((double) capdev->frame->timestamp) / 1000000.0f;
// On OS/X, current_pts is in gettimeofday() time, just as on Linux, but PTB's GetSecs
// clock represents host uptime, not gettimeofday() time. Therefore we need to remap
// on OS/X from gettimeofday() time to regular PTB GetSecs() time, via an instant
// clock calibration between both clocks and offset correction:
#if PSYCH_SYSTEM == PSYCH_OSX
struct timeval tv;
gettimeofday(&tv, NULL);
capdev->current_pts -= (((double) ((psych_uint64) tv.tv_sec * 1000000 + (psych_uint64) tv.tv_usec)) / 1000000.0f) - tend;
#endif
}
// Return availability status: 0 = new frame ready for retrieval. -1 = No new frame ready yet.
return((capdev->frame_ready) ? 0 : -1);
}
// This point is only reached if checkForImage == FALSE, which only happens
// if a new frame is available in our buffer:
// Presentation timestamp requested?
if (presentation_timestamp) {
// Return it:
*presentation_timestamp = capdev->current_pts;
}
// Synchronous texture fetch: Copy content of capture buffer into a texture:
// =========================================================================
// input_image points to the image buffer in our cam:
input_image = (unsigned char*) (capdev->frame->image);
// Do we want to do something with the image data and have a
// scratch buffer for color conversion alloc'ed?
if ((capdev->scratchbuffer) && ((out_texture) || (summed_intensity) || (outrawbuffer))) {
// Yes. Perform color-conversion YUV->RGB from cameras DMA buffer
// into the scratch buffer and set scratch buffer as source for
// all further operations:
dc1394_convert_to_RGB8(input_image, capdev->scratchbuffer, capdev->width,
capdev->height, DC1394_BYTE_ORDER_UYVY, capdev->colormode, 8);
// Ok, at this point we should have a RGB8 texture image ready in scratch_buffer.
// Set scratch buffer as our new image source for all further processing:
input_image = (unsigned char*) capdev->scratchbuffer;
}
// Only setup if really a texture is requested (non-benchmarking mode):
if (out_texture) {
PsychMakeRect(out_texture->rect, 0, 0, w, h);
// Set NULL - special texture object as part of the PTB texture record:
out_texture->targetSpecific.QuickTimeGLTexture = NULL;
// Set texture orientation as if it were an inverted Offscreen window: Upside-down.
out_texture->textureOrientation = 3;
// Setup a pointer to our GWorld as texture data pointer: Setting memsize to zero
// prevents unwanted free() operation in PsychDeleteTexture...
out_texture->textureMemorySizeBytes = 0;
// Set texture depth: Could be 8, 16, 24 or 32 bpp.
out_texture->depth = capdev->reqpixeldepth;
// This will retrieve an OpenGL compatible pointer to the pixel data and assign it to our texmemptr:
out_texture->textureMemory = (GLuint*) input_image;
// Let PsychCreateTexture() do the rest of the job of creating, setting up and
// filling an OpenGL texture with content:
PsychCreateTexture(out_texture);
// Undo hack from above after texture creation: Now we need the real width of the
// texture for proper texture coordinate assignments in drawing code et al.
PsychMakeRect(out_texture->rect, 0, 0, w, h);
// Ready to use the texture...
}
// Sum of pixel intensities requested?
if(summed_intensity) {
pixptr = (unsigned char*) input_image;
count = (w*h*((capdev->pixeldepth == 24) ? 3 : 1));
for (i=0; i<count; i++) intensity+=(unsigned int) pixptr[i];
*summed_intensity = ((double) intensity) / w / h / ((capdev->pixeldepth == 24) ? 3 : 1);
}
// Raw data requested?
if (outrawbuffer) {
// Copy it out:
outrawbuffer->w = w;
outrawbuffer->h = h;
outrawbuffer->depth = ((capdev->pixeldepth == 24) ? 3 : 1);
count = (w * h * outrawbuffer->depth);
memcpy(outrawbuffer->data, (const void *) input_image, count);
}
// Release the capture buffer. Return it to the DMA ringbuffer pool:
if (dc1394_capture_enqueue((capdev->camera), (capdev->frame)) != DC1394_SUCCESS) {
PsychErrorExitMsg(PsychError_system, "Re-Enqueuing processed video frame failed.");
}
// Update total count of dropped (or pending) frames:
capdev->nr_droppedframes += capdev->current_dropped;
nrdropped = capdev->current_dropped;
capdev->current_dropped = 0;
// Timestamping:
PsychGetAdjustedPrecisionTimerSeconds(&tend);
// Increase counter of retrieved textures:
capdev->nrgfxframes++;
// Update average time spent in texture conversion:
capdev->avg_gfxtime+=(tend - tstart);
// We're successfully done! Return number of dropped (or pending in DMA ringbuffer) frames:
return(nrdropped);
}
// CHECKED
/* Set capture device specific parameters:
* Currently, the named parameters are a subset of the parameters supported by the
* IIDC specification, mapped to more convenient names.
*
* Input: pname = Name string to specify the parameter.
* value = Either DBL_MAX to not set but only query the parameter, or some other
* value, that we try to set in the Firewire camera.
*
* Returns: Old value of the setting
*/
double PsychDCVideoCaptureSetParameter(int capturehandle, const char* pname, double value)
{
dc1394featureset_t features;
dc1394feature_t feature;
dc1394bool_t present;
unsigned int minval, maxval, intval, oldintval;
int triggercount;
double oldvalue = DBL_MAX; // Initialize return value to the "unknown/unsupported" default.
psych_bool assigned = false;
// Retrieve device record for handle:
PsychVidcapRecordType* capdev = PsychGetVidcapRecord(capturehandle);
oldintval = 0xFFFFFFFF;
// Round value to integer:
intval = (int) (value + 0.5);
// Check parameter name pname and call the appropriate subroutine:
if (strcmp(pname, "TriggerCount")==0 || strcmp(pname, "WaitTriggerCount")==0) {
// Query of cameras internal trigger counter or waiting for a specific
// value in the counter requested. Trigger counters are special features,
// (so called "Smart Features" or "Advanced Features" in the IIDC spec)
// which are only available on selected cameras.
// We currently only know how to do this on Basler cameras.
if (strstr(capdev->camera->vendor, "Basler")==NULL) {
// Non Basler cam :( We have to give up for now...
return(-1);
}
// It is a Basler cam. Go ahead:
// TODO FIXME: IMPLEMENT IT!
return(-2);
}
if (strcmp(pname, "PrintParameters")==0) {
// Special command: List and print all features...
printf("PTB-INFO: The camera provides the following information and featureset:\n");
if (dc1394_camera_print_info(capdev->camera, stdout) !=DC1394_SUCCESS) {
printf("PTB-WARNING: Unable to query general information about camera.\n");
}
fflush(NULL);
return(0);
}
// Return current framerate:
if (strcmp(pname, "GetFramerate")==0) {
PsychCopyOutDoubleArg(1, FALSE, capdev->fps);
return(0);
}
// Return current ROI of camera, as requested (and potentially modified during
// PsychOpenCaptureDevice(). This is a read-only parameter, as the ROI can
// only be set during Screen('OpenVideoCapture').
if (strcmp(pname, "GetROI")==0) {
PsychCopyOutRectArg(1, FALSE, capdev->roirect);
return(0);
}
// Return vendor name string:
if (strcmp(pname, "GetVendorname")==0) {
PsychCopyOutCharArg(1, FALSE, capdev->camera->vendor);
return(0);
}
// Return model name string:
if (strcmp(pname, "GetModelname")==0) {
PsychCopyOutCharArg(1, FALSE, capdev->camera->model);
return(0);
}
if (strstr(pname, "Brightness")!=0) {
assigned = true;
feature = DC1394_FEATURE_BRIGHTNESS;
}
if (strstr(pname, "Gain")!=0) {
assigned = true;
feature = DC1394_FEATURE_GAIN;
}
if (strstr(pname, "Exposure")!=0) {
assigned = true;
feature = DC1394_FEATURE_EXPOSURE;
}
if (strstr(pname, "Shutter")!=0) {
assigned = true;
feature = DC1394_FEATURE_SHUTTER;
}
if (strstr(pname, "Sharpness")!=0) {
assigned = true;
feature = DC1394_FEATURE_SHARPNESS;
}
if (strstr(pname, "Saturation")!=0) {
assigned = true;
feature = DC1394_FEATURE_SATURATION;
}
if (strstr(pname, "Gamma")!=0) {
assigned = true;
feature = DC1394_FEATURE_GAMMA;
}
// Check if feature is present on this camera:
if (dc1394_feature_is_present(capdev->camera, feature, &present)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to query presence of feature %s on camera %i! Ignored.\n", pname, capturehandle);
fflush(NULL);
}
else if (present) {
// Feature is available:
// Retrieve current value:
if (dc1394_feature_get_value(capdev->camera, feature, &oldintval)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to query value of feature %s on camera %i! Ignored.\n", pname, capturehandle);
fflush(NULL);
}
else {
// Do we want to set the value?
if (value != DBL_MAX) {
// Query allowed bounds for its value:
if (dc1394_feature_get_boundaries(capdev->camera, feature, &minval, &maxval)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to query valid value range for feature %s on camera %i! Ignored.\n", pname, capturehandle);
fflush(NULL);
}
else {
// Sanity check against range:
if (intval < minval || intval > maxval) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Requested setting %i for parameter %s not in allowed range (%i - %i) for camera %i. Ignored.\n",
intval, pname, minval, maxval, capturehandle);
fflush(NULL);
}
else {
// Ok intval is valid for this feature: Can we manually set this feature?
// Switch feature to manual control mode:
if (dc1394_feature_set_mode(capdev->camera, feature, DC1394_FEATURE_MODE_MANUAL)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to set feature %s on camera %i to manual control! Ignored.\n", pname, capturehandle);
fflush(NULL);
}
else {
// Ok, try to set the features new value:
if (dc1394_feature_set_value(capdev->camera, feature, intval)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to set value of feature %s on camera %i to %i! Ignored.\n", pname, capturehandle,
intval);
fflush(NULL);
}
}
}
}
}
else {
// Don't want to set new value. Do we want to reset feature into auto-mode?
// Prefixing a parameter name with "Auto"
// does not switch the parameter into manual
// control mode + set its value, as normal,
// but it switches the parameter into automatic
// mode, if automatic mode is supported by the
// device.
if (strstr(pname, "Auto")!=0) {
// Switch to automatic control requested - Try it:
if (dc1394_feature_set_mode(capdev->camera, feature, DC1394_FEATURE_MODE_AUTO)!=DC1394_SUCCESS) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Failed to set feature %s on camera %i to automatic control! Ignored.\n", pname, capturehandle);
fflush(NULL);
}
}
}
}
}
else {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Requested capture device setting %s not available on cam %i. Ignored.\n", pname, capturehandle);
fflush(NULL);
}
// Output a warning on unknown parameters:
if (!assigned) {
if(PsychPrefStateGet_Verbosity()>1) printf("PTB-WARNING: Screen('SetVideoCaptureParameter', ...) called with unknown parameter %s. Ignored...\n",
pname);
fflush(NULL);
}
if (assigned && oldintval!=0xFFFFFFFF) oldvalue = (double) oldintval;
// Return the old value. Could be DBL_MAX if parameter was unknown or not accepted for some reason.
return(oldvalue);
}
#endif
|