• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/

Lines Matching refs:fil

266     int fil;
297 for (fil = 0; fil < FILT_NUMB; fil ++)
298 if ((s->filters & 1<<fil) && filters_def[fil].init)
299 filters_def[fil].init(s, in, link->w, link->h);
335 for (fil = 0; fil < FILT_NUMB; fil ++) {
336 if (s->filters & 1<<fil) {
337 AVFrame *dbg = out != in && s->outfilter == fil ? out : NULL;
338 filtot[fil] += filters_def[fil].process(s, in, dbg, j, link->w, link->h);
352 for (fil = 0; fil < DEPTH; fil++) {
353 if (miny < 0 && histy[fil]) miny = fil;
354 if (minu < 0 && histu[fil]) minu = fil;
355 if (minv < 0 && histv[fil]) minv = fil;
356 if (minsat < 0 && histsat[fil]) minsat = fil;
358 if (histy[fil]) maxy = fil;
359 if (histu[fil]) maxu = fil;
360 if (histv[fil]) maxv = fil;
361 if (histsat[fil]) maxsat = fil;
363 toty += histy[fil] * fil;
364 totu += histu[fil] * fil;
365 totv += histv[fil] * fil;
366 totsat += histsat[fil] * fil;
368 accy += histy[fil];
369 accu += histu[fil];
370 accv += histv[fil];
371 accsat += histsat[fil];
373 if (lowy == -1 && accy >= lowp) lowy = fil;
374 if (lowu == -1 && accu >= clowp) lowu = fil;
375 if (lowv == -1 && accv >= clowp) lowv = fil;
376 if (lowsat == -1 && accsat >= clowp) lowsat = fil;
378 if (highy == -1 && accy >= highp) highy = fil;
379 if (highu == -1 && accu >= chighp) highu = fil;
380 if (highv == -1 && accv >= chighp) highv = fil;
381 if (highsat == -1 && accsat >= chighp) highsat = fil;
386 for (fil = 0; fil < 360; fil++) {
387 tothue += histhue[fil] * fil;
388 acchue += histhue[fil];
391 medhue = fil;
392 if (histhue[fil] > maxhue) {
393 maxhue = histhue[fil];
436 for (fil = 0; fil < FILT_NUMB; fil ++) {
437 if (s->filters & 1<<fil) {
439 snprintf(metabuf, sizeof(metabuf), "%g", 1.0 * filtot[fil] / s->fs);
440 snprintf(metaname, sizeof(metaname), "lavfi.signalstats.%s", filters_def[fil].name);