Searched refs:var_values (Results 26 - 35 of 35) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_hue.c79 double var_values[VAR_NB]; member in struct:__anon3401
250 hue->var_values[VAR_N] = 0;
251 hue->var_values[VAR_TB] = av_q2d(inlink->time_base);
252 hue->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
321 hue->var_values[VAR_N] = inlink->frame_count;
322 hue->var_values[VAR_T] = TS2T(inpic->pts, inlink->time_base);
323 hue->var_values[VAR_PTS] = TS2D(inpic->pts);
326 hue->saturation = av_expr_eval(hue->saturation_pexpr, hue->var_values, NULL);
337 hue->brightness = av_expr_eval(hue->brightness_pexpr, hue->var_values, NULL);
348 hue->hue_deg = av_expr_eval(hue->hue_deg_pexpr, hue->var_values, NUL
[all...]
H A Daf_astreamsync.c52 double var_values[VAR_NB]; member in struct:__anon3323
86 av_expr_eval(as->expr, as->var_values, NULL); /* exercize prng */
128 as->var_values[VAR_B1 + out_id]++;
129 as->var_values[VAR_S1 + out_id] += buf->nb_samples;
131 as->var_values[VAR_T1 + out_id] =
133 as->var_values[VAR_T1 + out_id] += buf->nb_samples /
153 as->next_out = av_expr_eval(as->expr, as->var_values, NULL) >= 0;
H A Daf_volume.h75 double var_values[VAR_VARS_NB]; member in struct:VolumeContext
H A Dvf_scale.c243 double var_values[VARS_NB], res; local
248 var_values[VAR_IN_W] = var_values[VAR_IW] = inlink->w;
249 var_values[VAR_IN_H] = var_values[VAR_IH] = inlink->h;
250 var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
251 var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
252 var_values[VAR_
[all...]
H A Dvf_boxblur.c140 double var_values[VARS_NB], res; local
151 var_values[VAR_W] = inlink->w;
152 var_values[VAR_H] = inlink->h;
153 var_values[VAR_CW] = cw = w>>s->hsub;
154 var_values[VAR_CH] = ch = h>>s->vsub;
155 var_values[VAR_HSUB] = 1<<s->hsub;
156 var_values[VAR_VSUB] = 1<<s->vsub;
160 ret = av_expr_parse_and_eval(&res, expr, var_names, var_values, \
H A Davfilter.c403 if (!ctx->var_values) {
404 ctx->var_values = av_calloc(VAR_VARS_NB, sizeof(*ctx->var_values));
405 if (!ctx->var_values) {
733 av_freep(&filter->var_values);
1072 dstctx->var_values[VAR_N] = link->frame_count;
1073 dstctx->var_values[VAR_T] = pts == AV_NOPTS_VALUE ? NAN : pts * av_q2d(link->time_base);
1074 dstctx->var_values[VAR_POS] = pos == -1 ? NAN : pos;
1076 dstctx->is_disabled = fabs(av_expr_eval(dstctx->enable, dstctx->var_values, NULL)) < 0.5;
H A Dvf_dctdnoiz.c44 double var_values[VAR_VARS_NB]; member in struct:__anon3384
291 s->var_values[VAR_C] = FFABS(*ftb);
292 *ftb++ *= av_expr_eval(s->expr, s->var_values, s);
H A Davfilter.h685 double *var_values; ///< variable values for the enable expression member in struct:AVFilterContext
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_drawtext.c136 double var_values[VAR_VARS_NB]; member in struct:__anon2074
567 dtext->var_values[VAR_E ] = M_E;
568 dtext->var_values[VAR_PHI] = M_PHI;
569 dtext->var_values[VAR_PI ] = M_PI;
571 dtext->var_values[VAR_MAIN_W] =
572 dtext->var_values[VAR_MW] = ctx->inputs[0]->w;
573 dtext->var_values[VAR_MAIN_H] =
574 dtext->var_values[VAR_MH] = ctx->inputs[0]->h;
576 dtext->var_values[VAR_X] = 0;
577 dtext->var_values[VAR_
[all...]
H A Dvf_boxblur.c143 double var_values[VARS_NB], res; local
159 var_values[VAR_W] = inlink->w;
160 var_values[VAR_H] = inlink->h;
161 var_values[VAR_CW] = cw = w>>boxblur->hsub;
162 var_values[VAR_CH] = ch = h>>boxblur->vsub;
163 var_values[VAR_HSUB] = 1<<boxblur->hsub;
164 var_values[VAR_VSUB] = 1<<boxblur->vsub;
168 ret = av_expr_parse_and_eval(&res, expr, var_names, var_values, \

Completed in 115 milliseconds

12