Commit 482d17ef authored by michael's avatar michael

K prefix

add SI prefix selftest


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6286 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2dffacfe
......@@ -77,6 +77,7 @@ static int8_t si_prefixes['z' - 'E' + 1]={
['d'-'E']= - 1,
['h'-'E']= 2,
['k'-'E']= 3,
['K'-'E']= 3,
['M'-'E']= 6,
['G'-'E']= 9,
['T'-'E']= 12,
......@@ -250,6 +251,7 @@ static const char *const_names[]={
main(){
int i;
printf("%f == 12.7\n", ff_eval("1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)", const_values, const_names, NULL, NULL, NULL, NULL, NULL));
printf("%f == 0.931322575\n", ff_eval("80G/80Gi", const_values, const_names, NULL, NULL, NULL, NULL, NULL));
for(i=0; i<1050; i++){
START_TIMER
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment