Searched refs:lag_int (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dacelp_pitch_delay.h241 * @param lag_int integer part of pitch lag of the current subframe
248 void ff_decode_pitch_lag(int *lag_int, int *lag_frac, int pitch_index,
H A Dacelp_pitch_delay.c134 void ff_decode_pitch_lag(int *lag_int, int *lag_frac, int pitch_index, argument
174 *lag_int = pitch_index * 10923 >> 15;
175 *lag_frac = pitch_index - 3 * *lag_int - 1;
H A Damrwbdec.c239 * @param[out] lag_int Decoded integer pitch lag
245 static void decode_pitch_lag_high(int *lag_int, int *lag_frac, int pitch_index, argument
250 *lag_int = (pitch_index + 137) >> 2;
251 *lag_frac = pitch_index - (*lag_int << 2) + 136;
253 *lag_int = (pitch_index + 257 - 376) >> 1;
254 *lag_frac = (pitch_index - (*lag_int << 1) + 256 - 376) << 1;
257 *lag_int = pitch_index - 280;
261 *base_lag_int = av_clip(*lag_int - 8 - (*lag_frac < 0),
264 // the nearest integer to *lag_int (minus 8), but the ref code
267 *lag_int
278 decode_pitch_lag_low(int *lag_int, int *lag_frac, int pitch_index, uint8_t *base_lag_int, int subframe, enum Mode mode) argument
[all...]
H A Damrnbdec.c358 static void decode_pitch_lag_1_6(int *lag_int, int *lag_frac, int pitch_index, argument
363 *lag_int = (pitch_index + 107) * 10923 >> 16;
364 *lag_frac = pitch_index - *lag_int * 6 + 105;
366 *lag_int = pitch_index - 368;
370 *lag_int = ((pitch_index + 5) * 10923 >> 16) - 1;
371 *lag_frac = pitch_index - *lag_int * 6 - 3;
372 *lag_int += av_clip(prev_lag_int - 5, PITCH_LAG_MIN_MODE_12k2,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dacelp_pitch_delay.h242 * @param lag_int integer part of pitch lag of the current subframe
249 void ff_decode_pitch_lag(int *lag_int, int *lag_frac, int pitch_index,
H A Dacelp_pitch_delay.c148 void ff_decode_pitch_lag(int *lag_int, int *lag_frac, int pitch_index, argument
188 *lag_int = pitch_index * 10923 >> 15;
189 *lag_frac = pitch_index - 3 * *lag_int - 1;
H A Damrwbdec.c253 * @param[out] lag_int Decoded integer pitch lag
259 static void decode_pitch_lag_high(int *lag_int, int *lag_frac, int pitch_index, argument
264 *lag_int = (pitch_index + 137) >> 2;
265 *lag_frac = pitch_index - (*lag_int << 2) + 136;
267 *lag_int = (pitch_index + 257 - 376) >> 1;
268 *lag_frac = (pitch_index - (*lag_int << 1) + 256 - 376) << 1;
271 *lag_int = pitch_index - 280;
275 *base_lag_int = av_clip(*lag_int - 8 - (*lag_frac < 0),
278 // the nearest integer to *lag_int (minus 8), but the ref code
281 *lag_int
292 decode_pitch_lag_low(int *lag_int, int *lag_frac, int pitch_index, uint8_t *base_lag_int, int subframe, enum Mode mode) argument
[all...]
H A Damrnbdec.c372 static void decode_pitch_lag_1_6(int *lag_int, int *lag_frac, int pitch_index, argument
377 *lag_int = (pitch_index + 107) * 10923 >> 16;
378 *lag_frac = pitch_index - *lag_int * 6 + 105;
380 *lag_int = pitch_index - 368;
384 *lag_int = ((pitch_index + 5) * 10923 >> 16) - 1;
385 *lag_frac = pitch_index - *lag_int * 6 - 3;
386 *lag_int += av_clip(prev_lag_int - 5, PITCH_LAG_MIN_MODE_12k2,

Completed in 76 milliseconds