Home
last modified time | relevance | path

Searched refs:rate_estimator (Results 1 – 6 of 6) sorted by relevance

/external/adhd/cras/src/server/
Drate_estimator.h36 struct rate_estimator { struct
54 struct rate_estimator *rate_estimator_create(unsigned int rate, argument
58 void rate_estimator_destroy(struct rate_estimator *re);
66 void rate_estimator_add_frames(struct rate_estimator *re, int fr);
78 int rate_estimator_check(struct rate_estimator *re, int level,
82 double rate_estimator_get_rate(struct rate_estimator *re);
85 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate);
Drate_estimator.c35 void rate_estimator_destroy(struct rate_estimator *re) in rate_estimator_destroy()
41 struct rate_estimator *rate_estimator_create(unsigned int rate, in rate_estimator_create()
45 struct rate_estimator *re; in rate_estimator_create()
47 re = (struct rate_estimator *)calloc(1, sizeof(*re)); in rate_estimator_create()
58 void rate_estimator_add_frames(struct rate_estimator *re, int fr) in rate_estimator_add_frames()
63 double rate_estimator_get_rate(struct rate_estimator *re) in rate_estimator_get_rate()
68 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate) in rate_estimator_reset_rate()
79 int rate_estimator_check(struct rate_estimator *re, int level, in rate_estimator_check()
Dcras_iodev.h29 struct rate_estimator;
228 struct rate_estimator *rate_est;
/external/adhd/cras/src/tests/
Drate_estimator_unittest.cc17 struct rate_estimator *re; in TEST()
46 struct rate_estimator *re; in TEST()
78 struct rate_estimator *re; in TEST()
109 struct rate_estimator *re; in TEST()
138 struct rate_estimator *re; in TEST()
165 struct rate_estimator *re; in TEST()
Diodev_unittest.cc2455 struct rate_estimator *rate_estimator_create(unsigned int rate, in rate_estimator_create()
2461 void rate_estimator_destroy(struct rate_estimator *re) { in rate_estimator_destroy()
2464 void rate_estimator_add_frames(struct rate_estimator *re, int fr) { in rate_estimator_add_frames()
2469 int rate_estimator_check(struct rate_estimator *re, int level, in rate_estimator_check()
2474 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate) { in rate_estimator_reset_rate()
2477 double rate_estimator_get_rate(struct rate_estimator *re) { in rate_estimator_get_rate()
/external/adhd/cras/src/
DMakefile.am807 rate_estimator_unittest_SOURCES = tests/rate_estimator_unittest.cc server/rate_estimator.c