Changeset 28310
- Timestamp:
- Jun 14, 2010, 1:27:33 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
magic/remove/src/streaksio.c (modified) (1 diff)
-
pstamp/src/ppstampMakeStamp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/magic/remove/src/streaksio.c
r27474 r28310 1294 1294 } 1295 1295 } 1296 sfiles->maskMask = ~convPoor; 1296 // preserve pixels that are only suspect 1297 psU32 suspect = (double) psMetadataLookupU32(&status, masks, "SUSPECT"); 1298 if (!status) { 1299 psError(PM_ERR_CONFIG, false, "failed to lookup mask value for SUSPECT in recipes\n"); 1300 streaksExit("", PS_EXIT_CONFIG_ERROR); 1301 } 1302 1303 sfiles->maskMask = ~(convPoor | suspect); 1297 1304 } 1298 1305 -
trunk/pstamp/src/ppstampMakeStamp.c
r27989 r28310 688 688 } 689 689 } 690 psU32 maskMask = ~convPoor; 690 psU32 suspect = psMetadataLookupU32(&status, masks, "SUSPECT"); 691 if (!status) { 692 psError(PM_ERR_CONFIG, false, "failed to lookup mask value for SUSPECT in recipes\n"); 693 return false; 694 } 695 psU32 maskMask = ~(convPoor | suspect); 691 696 692 697 double exciseValue;
Note:
See TracChangeset
for help on using the changeset viewer.
