OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:length_file
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc
48
double
length_file
;
local
159
length_file
= ((double) framecnt * (double) framelength / 8000);
160
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
163
(100 * runtime /
length_file
));
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc
55
double
length_file
;
local
148
length_file
= ((double)framecnt*(double)framelength/16000);
149
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
150
printf("Time to run G.722: %.2f s (%.2f %% of realtime)\n\n", runtime, (100*runtime/
length_file
));
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc
54
double starttime, runtime,
length_file
;
local
554
length_file
= 0;
686
length_file
+= cur_framesmpls;
910
length_file
=
length_file
/ (sampFreqKHz * 1000.);
912
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
914
(100 * runtime /
length_file
));
926
fprintf(stderr, " %.1f s",
length_file
);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c
100
double
length_file
;
local
613
length_file
= ((double)framecnt * (double)declen / FS);
614
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
616
(100 * runtime /
length_file
));
kenny.cc
110
double starttime, runtime,
length_file
;
local
816
length_file
= ((double)framecnt*(double)declen/FS);
817
printf("\n\nLength of speech file: %.1f s\n",
length_file
);
819
runtime, (100*runtime/
length_file
));
826
(runtime * 10000) /
length_file
, "us", false);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c
82
double
length_file
;
local
483
length_file
= ((double)framecnt * (double)declen / (sampFreqKHz * 1000));
484
printf("Length of speech file....... %.1f s\n",
length_file
);
486
runtime, (100 * runtime /
length_file
));
Completed in 109 milliseconds