Searched refs:out_frame (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_bs2b.c130 AVFrame *out_frame; local
136 out_frame = frame;
138 out_frame = ff_get_audio_buffer(inlink, frame->nb_samples);
139 if (!out_frame)
141 av_frame_copy(out_frame, frame);
142 ret = av_frame_copy_props(out_frame, frame);
144 av_frame_free(&out_frame);
150 bs2b->filter(bs2b->bs2bp, out_frame->extended_data[0], out_frame->nb_samples);
152 if (frame != out_frame)
[all...]
H A Daf_flanger.c142 AVFrame *out_frame; local
146 out_frame = frame;
148 out_frame = ff_get_audio_buffer(inlink, frame->nb_samples);
149 if (!out_frame)
151 av_frame_copy_props(out_frame, frame);
160 double *dst = (double *)out_frame->extended_data[chan];
195 if (frame != out_frame)
198 return ff_filter_frame(ctx->outputs[0], out_frame);
H A Daf_compand.c177 AVFrame *out_frame; local
182 out_frame = frame;
184 out_frame = ff_get_audio_buffer(inlink, nb_samples);
185 if (!out_frame) {
189 err = av_frame_copy_props(out_frame, frame);
191 av_frame_free(&out_frame);
199 double *dst = (double *)out_frame->extended_data[chan];
209 if (frame != out_frame)
212 return ff_filter_frame(ctx->outputs[0], out_frame);
224 AVFrame *out_frame local
[all...]
H A Daf_adelay.c185 AVFrame *out_frame; local
191 out_frame = ff_get_audio_buffer(inlink, frame->nb_samples);
192 if (!out_frame)
194 av_frame_copy_props(out_frame, frame);
199 uint8_t *dst = out_frame->extended_data[i];
209 return ff_filter_frame(ctx->outputs[0], out_frame);
H A Daf_aecho.c273 AVFrame *out_frame; local
276 out_frame = frame;
278 out_frame = ff_get_audio_buffer(inlink, frame->nb_samples);
279 if (!out_frame)
281 av_frame_copy_props(out_frame, frame);
284 s->echo_samples(s, s->delayptrs, frame->extended_data, out_frame->extended_data,
289 if (frame != out_frame)
292 return ff_filter_frame(ctx->outputs[0], out_frame);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/soc/blackfin/
H A Dbf5xx-ac97.c164 struct ac97_frame out_frame[2], in_frame[2]; local
175 memset(&out_frame, 0, 2 * sizeof(struct ac97_frame));
177 out_frame[0].ac97_tag = TAG_VALID | TAG_CMD;
178 out_frame[0].ac97_addr = ((reg << 8) | 0x8000);
179 sport_send_and_recv(sport_handle, (unsigned char *)&out_frame,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dg729dec.c395 int16_t *out_frame; local
422 out_frame = (int16_t*) frame->data[0];
701 out_frame + i*SUBFRAME_SIZE,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/xen/
H A Dmmu.c2151 unsigned long *in_frames = discontig_frames, out_frame; local
2175 out_frame = virt_to_pfn(vstart);
2177 1, order, &out_frame,
2182 xen_remap_exchanged_ptes(vstart, order, NULL, out_frame);

Completed in 103 milliseconds