Changeset 729
- Timestamp:
- 04/09/09 00:22:13 (1 year ago)
- Files:
-
- trunk/platform/generic/wrappers.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/platform/generic/wrappers.c
r728 r729 3 3 #include "platform.h" 4 4 #include "conf.h" 5 #include "math.h" 5 6 6 7 #if CAM_DRYOS … … 927 928 #if CAM_EXT_TV_RANGE 928 929 int apex2us(int apex_tv){ 929 if (apex_tv<-576) return 1000000.0* __pow(2.0, -apex_tv/96.0);930 if (apex_tv<-576) return 1000000.0*pow(2.0, -apex_tv/96.0); 930 931 else return _apex2us(apex_tv); 931 932 }