Home | History | Annotate | Download | only in celt

Lines Matching refs:frame_size

51    opus_int32 frame_size, channels, rate;
72 frame_size = atoi(argv[3]);
73 mode = opus_custom_mode_create(rate, frame_size, NULL);
128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
134 err = fread(in, sizeof(short), frame_size*channels, fin);
137 len = opus_custom_encode(enc, in, frame_size, data, bytes_per_packet);
168 ret = opus_custom_decode(dec, NULL, len, out, frame_size);
170 ret = opus_custom_decode(dec, data, len, out, frame_size);
200 rmsd = sqrt(rmsd/(1.0*frame_size*channels*count));