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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_thumbnail.c34 #define HIST_SIZE (3*256) macro
38 int histogram[HIST_SIZE]; ///< RGB color distribution histogram of the frame
84 for (i = 0; i < HIST_SIZE; i++) {
97 double avg_hist[HIST_SIZE] = {0}, sq_err, min_sq_err = -1;
H A Dvf_idet.c30 #define HIST_SIZE 4 macro
48 uint8_t history[HIST_SIZE];
145 memmove(idet->history+1, idet->history, HIST_SIZE-1);
148 for(i=0; i<HIST_SIZE; i++){
272 memset(idet->history, UNDETERMINED, HIST_SIZE);
H A Df_ebur128.c64 #define HIST_SIZE ((ABS_UP_THRES - ABS_THRES) * HIST_GRAIN + 1) macro
67 * A histogram is an array of HIST_SIZE hist_entry storing all the energies
69 * (at 0) to ABS_UP_THRES (at HIST_SIZE-1).
453 struct hist_entry *h = av_calloc(HIST_SIZE, sizeof(*h));
457 for (i = 0; i < HIST_SIZE; i++) {
533 ipower = av_clip(HIST_POS(loudness), 0, HIST_SIZE - 1);
543 gate_hist_pos = av_clip(HIST_POS(integ->rel_threshold), 0, HIST_SIZE - 1);
669 for (i = gate_hist_pos; i < HIST_SIZE; i++) {
690 for (i = gate_hist_pos; i < HIST_SIZE; i++)
698 for (i = gate_hist_pos; i < HIST_SIZE;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/ncftp/
H A Dgl_getline.c1477 #ifndef HIST_SIZE
1478 #define HIST_SIZE 100 macro
1482 static char *hist_buf[HIST_SIZE];
1491 for (i=1; i < HIST_SIZE; i++)
1501 for (i=0; i < HIST_SIZE; i++) {
1535 hist_last = (hist_last + 1) % HIST_SIZE;
1550 int next = (hist_pos - 1 + HIST_SIZE) % HIST_SIZE;
1570 hist_pos = (hist_pos+1) % HIST_SIZE;
1621 for (i=2; i<HIST_SIZE;
[all...]

Completed in 116 milliseconds