Lines Matching full:frames_in
37 size_t frames_in; // number of frames in input buffer
53 rsmp->frames_in = 0;
65 int32_t delay = (int32_t)((1000000000 * (int64_t)rsmp->frames_in) / rsmp->in_sample_rate);
98 if (rsmp->frames_in < rsmp->frames_needed) {
99 // make sure that the number of frames present in rsmp->in_buf (rsmp->frames_in) is at
108 buf.frame_count = rsmp->frames_needed - rsmp->frames_in;
113 memcpy(rsmp->in_buf + rsmp->frames_in * rsmp->channel_count,
116 rsmp->frames_in += buf.frame_count;
121 inFrames = rsmp->frames_in;
137 rsmp->frames_in -= inFrames;
138 ALOGW_IF((framesWr != framesRq) && (rsmp->frames_in != 0),
140 rsmp->frames_in, (framesRq - framesWr));
142 if (rsmp->frames_in) {
145 rsmp->frames_in * rsmp->channel_count * sizeof(int16_t));