Changeset 9603 for trunk/psModules/src/camera/pmHDUGenerate.c
- Timestamp:
- Oct 16, 2006, 5:29:08 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmHDUGenerate.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmHDUGenerate.c
r9584 r9603 449 449 ////////////////////////////////////////////////////////////////////////////////////////////////////////////// 450 450 451 // Generate an HDU from a cell with pixels 452 bool pmHDUGenerateForCell(pmCell *cell // The cell 453 ) 451 bool pmHDUGenerateForCell(pmCell *cell) 454 452 { 455 453 PS_ASSERT_PTR_NON_NULL(cell, false); … … 496 494 return pmHDUGenerateForChip(cell->parent); 497 495 default: 498 psAbort(__func__, "Shouldn't ever get here .\n");496 psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n"); 499 497 } 500 498 return false; 501 499 } 502 500 503 // Generate an HDU from a chip with pixels 504 bool pmHDUGenerateForChip(pmChip *chip // The chip 505 ) 501 bool pmHDUGenerateForChip(pmChip *chip) 506 502 { 507 503 PS_ASSERT_PTR_NON_NULL(chip, false); … … 546 542 return pmHDUGenerateForFPA(chip->parent); 547 543 default: 548 psAbort(__func__, "Shouldn't ever get here .\n");544 psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n"); 549 545 } 550 546 return false; … … 552 548 553 549 554 // Generate an HDU from an FPA with pixels 555 bool pmHDUGenerateForFPA(pmFPA *fpa // The fpa 556 ) 550 bool pmHDUGenerateForFPA(pmFPA *fpa) 557 551 { 558 552 PS_ASSERT_PTR_NON_NULL(fpa, false); … … 590 584 } 591 585 default: 592 psAbort(__func__, "Shouldn't ever get here .\n");586 psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n"); 593 587 } 594 588 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
