HomeSort by relevance Sort by last modified time
    Searched refs:STAT_COUNT (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
cnst_vad.h 75 #define STAT_COUNT 20 /* threshold of stationary detection counter */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
wb_vad_c.h 85 #define STAT_COUNT 20 /* threshold of stationary detection counter */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
wb_vad.c 266 /* 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
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
vad1.cpp 706 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
    [all...]

Completed in 194 milliseconds