Lines Matching full:samples
83 /* raw integer subband samples in the frame */
86 /* modified subband samples */
89 /* original pcm audio samples */
584 /* Compute the samples */
630 /* Compute the samples */
959 int i, ch, framelen, samples;
995 samples = sbc_synthesize_audio(&priv->dec_state, &priv->frame);
999 if (output_len < (size_t) (samples * priv->frame.channels * 2))
1000 samples = output_len / (priv->frame.channels * 2);
1002 for (i = 0; i < samples; i++) {
1018 *written = samples * priv->frame.channels * 2;
1027 int samples;
1091 samples = sbc_analyze_audio(&priv->enc_state, &priv->frame);
1109 return samples * priv->frame.channels * 2;