Changeset 11735
- Timestamp:
- Feb 9, 2007, 12:14:24 PM (19 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 4 edited
-
configure.ac (modified) (1 diff)
-
src/camtool.c (modified) (2 diffs)
-
src/chiptool.c (modified) (3 diffs)
-
src/regtool.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/configure.ac
r11723 r11735 18 18 PKG_CHECK_MODULES([PSLIB], [pslib >= 1.1.0]) 19 19 PKG_CHECK_MODULES([PSMODULES], [psmodules >= 1.1.0]) 20 PKG_CHECK_MODULES([IPPDB], [ippdb >= 1.1. 3])20 PKG_CHECK_MODULES([IPPDB], [ippdb >= 1.1.4]) 21 21 22 22 PXTOOLS_CFLAGS="${PSLIB_CFLAGS=} ${PSMODULES_CFLAGS=} ${IPPDB_CFLAGS=}" -
trunk/ippTools/src/camtool.c
r11713 r11735 396 396 p3ProcessedExpRow *row = p3ProcessedExpRowAlloc( 397 397 exp_tag, 398 pendingRow->p3_version, 399 pendingRow->p2_version, 400 pendingRow->label, 398 401 uri, 399 402 recipe, … … 408 411 zp_mean, 409 412 zp_stdev, 410 pendingRow->p2_version,411 pendingRow->p3_version,412 pendingRow->label,413 413 code 414 414 ); -
trunk/ippTools/src/chiptool.c
r11713 r11735 859 859 return p2ProcessedImfileRowAlloc( 860 860 imfile->exp_tag, 861 imfile->p2_version, 862 imfile->p1_version, 861 863 imfile->class_id, 864 recipe, 862 865 uri, 863 recipe,864 866 bg, 865 867 bg_stdev, … … 867 869 b1_uri, 868 870 b2_uri, 869 imfile->p1_version,870 imfile->p2_version,871 871 code 872 872 ); … … 880 880 return p2ProcessedExpRowAlloc( 881 881 pendingExp->exp_tag, 882 pendingExp->p2_version, 882 883 pendingExp->p1_version, 884 pendingExp->label 885 ); 886 } 887 888 889 static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp) 890 { 891 PS_ASSERT_PTR_NON_NULL(pendingExp, NULL); 892 893 return p3PendingExpRowAlloc( 894 pendingExp->exp_tag, 895 0x0, // p3 version 883 896 pendingExp->p2_version, 884 897 pendingExp->label 885 898 ); 886 899 } 887 888 889 static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp)890 {891 PS_ASSERT_PTR_NON_NULL(pendingExp, NULL);892 893 return p3PendingExpRowAlloc(894 pendingExp->exp_tag,895 pendingExp->p1_version,896 pendingExp->p2_version,897 pendingExp->label898 );899 } -
trunk/ippTools/src/regtool.c
r11702 r11735 929 929 p2PendingExpRow *p2Exp = p2PendingExpRowAlloc( 930 930 exp->exp_tag, 931 "my recipe",932 0x ff, // XXX calc version number933 0xff, // XXX calc version number934 label931 0x0, // p2 version XXX calc version number 932 0xdeadbeef, // p1 version 933 label, 934 "my recipe" 935 935 ); 936 936 … … 943 943 return p2PendingImfileRowAlloc( 944 944 rawImfile->exp_tag, 945 0x0, // p2 version XXX calc version number 946 0xdeadbeef, // p1 version 945 947 rawImfile->class_id, 946 rawImfile->uri,947 948 "my recipe", 948 0xff, // XXX calc version number 949 0xff // XXX calc version number 949 rawImfile->uri 950 950 ); 951 951 }
Note:
See TracChangeset
for help on using the changeset viewer.
