Lines Matching defs:mode

83  Description: Changed '&' to '&&' in the setting of rx_type and mode for
153 state_data->prev_mode contains the new mode
161 used by each codec mode for WMF input format (const
165 used by each codec mode for IF2 input format (const
188 The codec mode and receive frame type is initialized based on the incoming
196 RX_NO_DATA, the mode is obtained from the buffer pointed to by
197 speech_bits_ptr, offset by MAX_SERIAL_SIZE+1, otherwise, the mode is set to
198 the previous mode (found the in state_data->prev_mode).
206 state_data is updated to the current mode.
265 // Determine AMR codec mode and AMR RX frame type
268 mode = (enum Mode) frame_type;
273 // Clear mode store prior to reading mode info from input buffer
274 mode = 0
278 mode |= (dec_ets_input_bfr[AMRSID_RXMODE_BIT_OFFSET+i] << i)
293 // Use previous mode
294 mode = decoder_state->prev_mode
300 // Use previous mode
301 mode = decoder_state->prev_mode
326 // Get codec mode
329 mode = (enum Mode) *ets_word_ptr
332 //Use previous mode if no received data
333 mode = decoder_state->prev_mode
351 mode = mode
358 // Save mode for next frame
359 decoder_state->prev_mode = mode
397 enum Mode mode = (enum Mode)MR475;
434 /* Determine AMR codec mode and AMR RX frame type */
437 mode = (enum Mode) frame_type;
442 /* Clear mode store prior to reading mode info from input buffer */
450 mode = (enum Mode) modeStore;
469 mode = decoder_state->prev_mode;
498 /* Get codec mode */
501 /* Get mode from input bitstream */
502 mode = (enum Mode) * ets_word_ptr;
506 /* Use previous mode if no received data */
507 mode = decoder_state->prev_mode;
526 GSMFrameDecode(decoder_state, mode, dec_ets_input_bfr, rx_type,
531 Speech_Decode_Frame(decoder_state, mode, dec_ets_input_bfr, rx_type,
536 /* Save mode for next frame */
537 decoder_state->prev_mode = mode;