Searched refs:stat_count (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dwb_vad.h50 Word16 stat_count; /* stationary counter */ member in struct:__anon612
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dvad1.h113 Word16 stat_count; /* stationary counter */ member in struct:__anon570
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dwb_vad.c266 /* if a tone has been detected for a while, initialize stat_count */
269 st->stat_count = STAT_COUNT;
272 /* if 8 last vad-decisions have been "0", reinitialize stat_count */
275 st->stat_count = STAT_COUNT;
307 /* compare stat_rat with a threshold and update stat_count */
310 st->stat_count = STAT_COUNT;
316 if (st->stat_count != 0)
318 st->stat_count = st->stat_count - 1;
327 if(st->stat_count
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dvad1.cpp706 stat_count: stationary counter
710 Output : stat_count: stationary counter
769 if (st->stat_count < CAD_MIN_STAT_COUNT)
771 st->stat_count = CAD_MIN_STAT_COUNT;
774 /* NB stat_count is allowed to be decreased by one below again */
778 /* if fullband pitch or tone have been detected for a while, initialize stat_count */
782 st->stat_count = STAT_COUNT;
786 /* if 8 last vad-decisions have been "0", reinitialize stat_count */
789 st->stat_count = STAT_COUNT;
827 /* compare stat_rat with a threshold and update stat_count */
[all...]

Completed in 4740 milliseconds