Lines Matching refs:frames
53 int frames;
75 * by the speech data for all the AMR frames.
82 /* Count the number of frames in the packet. The highest bit
83 * is set in a TOC byte if there are more frames following.
85 for (frames = 1; frames < len && (buf[frames] & 0x80); frames++) ;
87 if (1 + frames >= len) {
88 /* We hit the end of the packet while counting frames. */
93 speech_data = buf + 1 + frames;
103 for (i = 0; i < frames; i++) {