Changeset 7196 for trunk/ippTools/src/dettool.c
- Timestamp:
- May 24, 2006, 1:28:48 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/dettool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r7195 r7196 16 16 static psArray *validDetInputClassIds(pxConfig *config, const char *det_id); 17 17 static bool stacframeMode(pxConfig *config); 18 static bool add masterMode(pxConfig *config);19 static bool masterMode(pxConfig *config);20 static bool masterframeMode(pxConfig *config);18 static bool addnormalizedMode(pxConfig *config); 19 static bool normalizedMode(pxConfig *config); 20 static bool normalizedframeMode(pxConfig *config); 21 21 22 22 static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id); … … 63 63 } 64 64 break; 65 case DETTOOL_MODE_ADD MASTER:66 if (!add masterMode(config)) {65 case DETTOOL_MODE_ADDNORMALIZED: 66 if (!addnormalizedMode(config)) { 67 67 goto FAIL; 68 68 } 69 69 break; 70 case DETTOOL_MODE_ MASTER:71 if ( masterMode(config)) {70 case DETTOOL_MODE_NORMALIZED: 71 if (normalizedMode(config)) { 72 72 goto FAIL; 73 73 } 74 74 break; 75 case DETTOOL_MODE_ MASTERFRAME:76 if ( masterframeMode(config)) {75 case DETTOOL_MODE_NORMALIZEDFRAME: 76 if (normalizedframeMode(config)) { 77 77 goto FAIL; 78 78 } … … 728 728 } 729 729 730 static bool add masterMode(pxConfig *config)730 static bool addnormalizedMode(pxConfig *config) 731 731 { 732 732 PS_ASSERT_PTR_NON_NULL(config, false); … … 813 813 } 814 814 815 static bool masterMode(pxConfig *config)815 static bool normalizedMode(pxConfig *config) 816 816 { 817 817 PS_ASSERT_PTR_NON_NULL(config, false); … … 845 845 } 846 846 847 static bool masterframeMode(pxConfig *config)847 static bool normalizedframeMode(pxConfig *config) 848 848 { 849 849 PS_ASSERT_PTR_NON_NULL(config, false);
Note:
See TracChangeset
for help on using the changeset viewer.
