Home
last modified time | relevance | path

Searched refs:out_ch (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavresample/x86/
Daudio_mix_init.c27 int out_ch, int in_ch);
29 int out_ch, int in_ch);
32 int out_ch, int in_ch);
34 int out_ch, int in_ch);
37 int len, int out_ch, int in_ch);
40 int out_ch, int in_ch);
42 int out_ch, int in_ch);
45 int out_ch, int in_ch);
47 int out_ch, int in_ch);
49 int out_ch, int in_ch);
[all …]
Daudio_mix.asm29 ; int out_ch, int in_ch);
65 ; int out_ch, int in_ch);
109 ; int out_ch, int in_ch);
150 ; int out_ch, int in_ch);
184 ; int out_ch, int in_ch);
231 ; int len, int out_ch, int in_ch);
/third_party/ffmpeg/libavcodec/
Dac3dsp.c224 int out_ch, int in_ch, int len) in ac3_downmix_c() argument
229 if (out_ch == 2) { in ac3_downmix_c()
239 } else if (out_ch == 1) { in ac3_downmix_c()
293 int out_ch, int in_ch, int len) in ac3_downmix_c_fixed() argument
297 if (out_ch == 2) { in ac3_downmix_c_fixed()
307 } else if (out_ch == 1) { in ac3_downmix_c_fixed()
318 int out_ch, int in_ch, int len) in ff_ac3dsp_downmix_fixed() argument
320 if (c->in_channels != in_ch || c->out_channels != out_ch) { in ff_ac3dsp_downmix_fixed()
322 c->out_channels = out_ch; in ff_ac3dsp_downmix_fixed()
325 if (in_ch == 5 && out_ch == 2 && in ff_ac3dsp_downmix_fixed()
[all …]
Dmlpdsp.c109 unsigned int i, out_ch = 0; in ff_mlp_pack_output() local
114 for (out_ch = 0; out_ch <= max_matrix_channel; out_ch++) { in ff_mlp_pack_output()
115 int mat_ch = ch_assign[out_ch]; in ff_mlp_pack_output()
Dac3dec_fixed.c130 int out_ch, int in_ch, int len) in ac3_downmix_c_fixed16() argument
134 if (out_ch == 2) { in ac3_downmix_c_fixed16()
144 } else if (out_ch == 1) { in ac3_downmix_c_fixed16()
Dac3dsp.h114 int out_ch, int in_ch, int len);
116 int out_ch, int in_ch, int len);
/third_party/ffmpeg/libavfilter/
Daf_channelmap.c170 int in_ch = 0, out_ch = 0; in channelmap_init() local
200 get_channel(&mapping, &out_ch, separator) < 0 || in channelmap_init()
201 (1ULL << out_ch) & out_ch_mask) { in channelmap_init()
206 s->map[i].out_channel = out_ch; in channelmap_init()
207 out_ch_mask |= 1ULL << out_ch; in channelmap_init()
220 get_channel(&mapping, &out_ch, separator) < 0 || in channelmap_init()
221 (1ULL << out_ch) & out_ch_mask) { in channelmap_init()
226 s->map[i].out_channel = out_ch; in channelmap_init()
227 out_ch_mask |= 1ULL << out_ch; in channelmap_init()
/third_party/ffmpeg/libavresample/
Daudio_mix.c103 int len, int out_ch, int in_ch) \
108 for (out = 0; out < out_ch; out++) { \
114 for (out = 0; out < out_ch; out++) \
127 int out_ch, int in_ch) in MIX_FUNC_GENERIC()
149 int out_ch, int in_ch) in mix_2_to_1_s16p_flt_c() argument
171 int out_ch, int in_ch) in mix_2_to_1_s16p_q8_c() argument
193 int out_ch, int in_ch) in mix_1_to_2_fltp_flt_c() argument
226 int out_ch, int in_ch) in mix_6_to_2_fltp_flt_c() argument
260 int out_ch, int in_ch) in mix_2_to_6_fltp_flt_c() argument
Daudio_mix.h31 typedef void (mix_func)(uint8_t **src, void **matrix, int len, int out_ch,
/third_party/ffmpeg/libavcodec/mips/
Dac3dsp_mips.c274 int out_ch, int in_ch, int len) in ac3_downmix_mips() argument
396 [in_ch]"r"(in_ch), [out_ch]"r"(out_ch) in ac3_downmix_mips()
/third_party/ffmpeg/fftools/
Dffmpeg_opt.c2232 AVChapter *in_ch = is->chapters[i], *out_ch; in copy_chapters() local
2245 out_ch = av_mallocz(sizeof(AVChapter)); in copy_chapters()
2246 if (!out_ch) in copy_chapters()
2249 out_ch->id = in_ch->id; in copy_chapters()
2250 out_ch->time_base = in_ch->time_base; in copy_chapters()
2251 out_ch->start = FFMAX(0, in_ch->start - ts_off); in copy_chapters()
2252 out_ch->end = FFMIN(rt, in_ch->end - ts_off); in copy_chapters()
2255 av_dict_copy(&out_ch->metadata, in_ch->metadata, 0); in copy_chapters()
2257 os->chapters[os->nb_chapters++] = out_ch; in copy_chapters()