Searched refs:avff (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dformats.c107 int avfilter_add_format(AVFilterFormats **avff, int fmt) argument
111 if (!(*avff) && !(*avff = av_mallocz(sizeof(AVFilterFormats))))
114 fmts = av_realloc((*avff)->formats,
115 sizeof(*(*avff)->formats) * ((*avff)->format_count+1));
119 (*avff)->formats = fmts;
120 (*avff)->formats[(*avff)->format_count++] = fmt;
H A Davfilter.h238 * Add fmt to the list of media formats contained in *avff.
239 * If *avff is NULL the function allocates the filter formats struct
240 * and puts its pointer in *avff.
245 int avfilter_add_format(AVFilterFormats **avff, int fmt);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dformats.h194 * Add fmt to the list of media formats contained in *avff.
195 * If *avff is NULL the function allocates the filter formats struct
196 * and puts its pointer in *avff.
201 int ff_add_format(AVFilterFormats **avff, int64_t fmt);
H A Dvf_extractplanes.c99 AVFilterFormats *avff; local
110 avff = ctx->inputs[0]->in_formats;
111 desc = av_pix_fmt_desc_get(avff->formats[0]);
114 for (i = 1; i < avff->nb_formats; i++) {
115 desc = av_pix_fmt_desc_get(avff->formats[i]);
H A Dformats.c330 int ff_add_format(AVFilterFormats **avff, int64_t fmt) argument
332 ADD_FORMAT(avff, fmt, int, formats, nb_formats);

Completed in 87 milliseconds