Lines Matching defs:current
203 unsigned int cur_frame_length; ///< length of the current frame to decode
204 unsigned int frame_id; ///< the frame ID / number of the current frame
207 unsigned int num_blocks; ///< number of blocks used in the current frame
1086 /** Compute the number of samples left to decode for the current frame and
1240 ALSChannelData *current = cd;
1244 while (entries < channels && !(current->stop_flag = get_bits1(gb))) {
1245 current->master_channel = get_bits_long(gb, av_ceil_log2(channels));
1247 if (current->master_channel >= channels) {
1252 if (current->master_channel != c) {
1253 current->time_diff_flag = get_bits1(gb);
1254 current->weighting[0] = als_weighting(gb, 1, 16);
1255 current->weighting[1] = als_weighting(gb, 2, 14);
1256 current->weighting[2] = als_weighting(gb, 1, 16);
1258 if (current->time_diff_flag) {
1259 current->weighting[3] = als_weighting(gb, 1, 16);
1260 current->weighting[4] = als_weighting(gb, 1, 16);
1261 current->weighting[5] = als_weighting(gb, 1, 16);
1263 current->time_diff_sign = get_bits1(gb);
1264 current->time_diff_index = get_bits(gb, ctx->ltp_lag_length - 3) + 3;
1268 current++;