Home | History | Annotate | Download | only in src

Lines Matching defs:in

5    Redistribution and use in source and binary forms, with or without
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
24 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59 fprintf(stderr, "-framesize <2.5|5|10|20|40|60> : frame size in ms; default: 20 \n" );
60 fprintf(stderr, "-max_payload <bytes> : maximum payload size in bytes, default: 1024\n" );
65 fprintf(stderr, "-loss <perc> : simulate packet loss, in percent (0-100); default: 0\n" );
243 short *in, *out;
588 "in %s with %d-sample frames.\n",
592 in = (short*)malloc(max_frame_size*channels*sizeof(short));
691 in[i+remaining*channels]=s;
696 in[i] = 0;
700 len[toggle] = opus_encode(enc, in, frame_size, data[toggle], max_payload_bytes);
704 in[i] = in[nb_encoded*channels+i];
774 /* delay by one packet when using in-band FEC */
777 /* attempt to decode with in-band FEC from next packet */
828 "in frame %ld: 0x%8lx vs 0x%8lx\n",
847 nrg += in[ k ] * (double)in[ k ];
883 free(in);