Lines Matching refs:ltp
1409 static void decode_ltp(LongTermPrediction *ltp,
1414 ltp->lag = get_bits(gb, 11);
1415 ltp->coef = ltp_coef[get_bits(gb, 3)];
1417 ltp->used[sfb] = get_bits1(gb);
1521 if ((ics->ltp.present = get_bits(gb, 1)))
1522 decode_ltp(&ics->ltp, gb, ics->max_sfb);
2319 if ((cpe->ch[1].ics.ltp.present = get_bits(gb, 1)))
2320 decode_ltp(&cpe->ch[1].ics.ltp, gb, cpe->ch[1].ics.max_sfb);
2695 const LongTermPrediction *ltp = &sce->ics.ltp;
2704 if (ltp->lag < 1024)
2705 num_samples = ltp->lag + 1024;
2707 predTime[i] = AAC_MUL30(sce->ltp_state[i + 2048 - ltp->lag], ltp->coef);
2716 if (ltp->used[sfb])
3058 if (che->ch[0].ics.ltp.present)
3060 if (che->ch[1].ics.ltp.present && type == TYPE_CPE)