Lines Matching defs:param
116 * @param param Input construction parameter structure
117 * @param handle Private context handle
120 static int xvid_ff_2pass_create(xvid_plg_create_t *param, void **handle)
122 struct xvid_ff_pass1 *x = (struct xvid_ff_pass1 *) param->param;
147 * @param ref Context pointer for the plugin
148 * @param param Destroy context
152 xvid_plg_destroy_t *param)
164 * @param ref Context pointer for the plugin
165 * @param param Frame data
169 xvid_plg_data_t *param)
176 if (param->zone && param->zone->mode == XVID_ZONE_QUANT)
180 param->quant = 2;
197 param->vol_flags &= ~XVID_VOL_GMC;
198 param->vop_flags &= vop_remove;
199 param->motion_flags &= motion_remove;
200 param->motion_flags |= motion_replacements;
208 * @param ref Context pointer for the plugin
209 * @param param Statistic data
213 xvid_plg_data_t *param)
224 if (param->type < 5 && param->type > 0)
225 frame_type = frame_types[param->type];
231 frame_type, param->stats.quant, param->stats.kblks,
232 param->stats.mblks, param->stats.ublks,
233 param->stats.length, param->stats.hlength);
243 * @param ref Context pointer for the plugin
244 * @param cmd The task given for us to complete
245 * @param p1 First parameter (varies)
246 * @param p2 Second parameter (varies)
275 * @param avctx AVCodecContext pointer to context
276 * @param frame Pointer to encoded frame data
277 * @param header_len Length of header to search
278 * @param frame_len Length of encoded frame data
321 * @param avctx Context that contains the framerate to correct.
512 plugins[xvid_enc_create.num_plugins].param = &rc2pass1;
543 plugins[xvid_enc_create.num_plugins].param = &rc2pass2;
551 plugins[xvid_enc_create.num_plugins].param = &single;
564 * plugins[...].param = NULL. Trying to keep the old behavior here. */
565 plugins[xvid_enc_create.num_plugins].param =
574 plugins[xvid_enc_create.num_plugins].param = &masking_v;
590 plugins[xvid_enc_create.num_plugins].param = &ssim;