OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:length_file
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc
55
double
length_file
;
local
169
length_file
= ((double) framecnt * (double) framelength / 8000);
170
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
173
(100 * runtime /
length_file
));
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc
60
double
length_file
;
local
152
length_file
= ((double)framecnt*(double)framelength/16000);
153
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
154
printf("Time to run G.722: %.2f s (%.2f %% of realtime)\n\n", runtime, (100*runtime/
length_file
));
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c
110
double
length_file
;
local
678
length_file
= ((double)framecnt*(double)declen/FS);
679
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
680
printf("Time to run iSAC: %.2f s (%.2f %% of realtime)\n\n", runtime, (100*runtime/
length_file
));
kenny.cc
108
double starttime, runtime,
length_file
;
local
807
length_file
= ((double)framecnt*(double)declen/FS);
808
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
810
runtime, (100*runtime/
length_file
));
815
(runtime * 10000) /
length_file
, "us", false);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc
57
double starttime, runtime,
length_file
;
local
611
length_file
= 0;
761
length_file
+= cur_framesmpls;
1023
length_file
=
length_file
/(sampFreqKHz * 1000.);
1025
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
1026
printf("Time to run iSAC: %.2f s (%.2f %% of realtime)\n\n", runtime, (100*runtime/
length_file
));
[
all
...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c
82
double
length_file
;
local
545
length_file
= ((double)framecnt*(double)declen/(sampFreqKHz*1000));
546
printf("Length of speech file................ %.1f s\n",
length_file
);
548
runtime, (100*runtime/
length_file
));
Completed in 151 milliseconds