Lines Matching defs:output
1016 static void transform(DBEDecodeContext *s1, DBEChannel *c, float *history, float *output)
1034 output[i] = history[i] + result[i];
1036 output[i] = result[i];
1041 static void apply_gain(DBEDecodeContext *s, int begin, int end, float *output)
1047 s->fdsp->vector_fmul_scalar(output, output, gain_tab[end], FRAME_SAMPLES);
1054 output[i] *= a * (FRAME_SAMPLES - i - 1) + b * i;
1078 float *output = (float *)frame->extended_data[reorder[ch]];
1079 transform(s, &s->channels[0][ch], s->history[ch], output);
1080 transform(s, &s->channels[1][ch], s->history[ch], output + FRAME_SAMPLES / 2);
1081 apply_gain(s, metadata->begin_gain[ch], metadata->end_gain[ch], output);
1099 "channels will be output in native order.\n",