Home
last modified time | relevance | path

Searched refs:num_vec_coeffs (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dwmaprodec.c159 uint16_t num_vec_coeffs; ///< number of vector coded coefficients member
938 (cur_coeff + 3 < ci->num_vec_coeffs)) { in decode_coeffs()
1303 int num_vec_coeffs = get_bits(&s->gb, num_bits) << 2; in decode_subframe() local
1304 if (num_vec_coeffs > s->subframe_len) { in decode_subframe()
1305 … av_log(s->avctx, AV_LOG_ERROR, "num_vec_coeffs %d is too large\n", num_vec_coeffs); in decode_subframe()
1308 av_assert0(num_vec_coeffs + offset <= FF_ARRAY_ELEMS(s->channel[c].out)); in decode_subframe()
1309 s->channel[c].num_vec_coeffs = num_vec_coeffs; in decode_subframe()
1314 s->channel[c].num_vec_coeffs = s->subframe_len; in decode_subframe()
/third_party/gstreamer/gst_libav/
DChangeLog5502 - wmapro: Check num_vec_coeffs against the actual available buffer