Searched refs:dhigh (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | g722dec.c | 108 int ilow, ihigh, rlow, rhigh, dhigh; in g722_decode_frame() local 120 dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10; in g722_decode_frame() 121 rhigh = av_clip_intp2(dhigh + c->band[1].s_predictor, 14); in g722_decode_frame() 123 ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh); in g722_decode_frame()
|
D | g722.c | 154 void ff_g722_update_high_predictor(struct G722Band *band, const int dhigh, in ff_g722_update_high_predictor() argument 157 do_adaptive_prediction(band, dhigh); in ff_g722_update_high_predictor()
|
D | g722enc.c | 270 int dhigh, decoded, dec_diff, pos; in g722_encode_trellis() local 274 dhigh = cur_node->state.scale_factor * in g722_encode_trellis() 276 decoded = av_clip_intp2(dhigh + cur_node->state.s_predictor, 14); in g722_encode_trellis() 279 STORE_NODE(1, ff_g722_update_high_predictor(&node->state, dhigh, ihigh), ihigh); in g722_encode_trellis()
|
D | g722.h | 75 void ff_g722_update_high_predictor(struct G722Band *band, const int dhigh,
|