Home | History | Annotate | Download | only in audio

Lines Matching defs:out

21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
114 struct st_sample *out = dst;
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
127 out += 1;
134 struct st_sample *out = dst;
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l);
146 out->r = out->l;
147 out += 1;
156 IN_T *out = (IN_T *) dst;
158 *out++ = glue (clip_, ET) (in->l);
159 *out++ = glue (clip_, ET) (in->r);
168 IN_T *out = (IN_T *) dst;
170 *out++ = glue (clip_, ET) (in->l + in->r);