Lines Matching defs:out
25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
61 opus_int16 *in, *out;
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
168 ret = opus_custom_decode(dec, NULL, len, out, frame_size);
170 ret = opus_custom_decode(dec, data, len, out, frame_size);
175 out[i] = in[i];
180 rmsd += (in[i]-out[i])*1.0*(in[i]-out[i]);
181 /*out[i] -= in[i];*/
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout);
196 free(out);