• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:max_order

166     int max_order;            ///< maximum prediction order (0..1023)
264 av_dlog(avctx, "max_order = %i\n", sconf->max_order);
322 sconf->max_order = get_bits(&gb, 10);
683 2, sconf->max_order + 1));
685 if (*bd->opt_order > sconf->max_order) {
686 *bd->opt_order = sconf->max_order;
691 *bd->opt_order = sconf->max_order;
927 memcpy(bd->prev_raw_samples, raw_samples - sconf->max_order,
928 sizeof(*bd->prev_raw_samples) * sconf->max_order);
942 for (sb = -1; sb >= -sconf->max_order; sb--)
948 for (sb = -1; sb >= -sconf->max_order; sb--)
975 memcpy(raw_samples - sconf->max_order, bd->prev_raw_samples,
976 sizeof(*raw_samples) * sconf->max_order);
1170 memmove(ctx->raw_samples[c] - sconf->max_order,
1171 ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
1172 sizeof(*ctx->raw_samples[c]) * sconf->max_order);
1377 memmove(ctx->raw_samples[c] - sconf->max_order,
1378 ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
1379 sizeof(*ctx->raw_samples[c]) * sconf->max_order);
1457 memmove(ctx->raw_samples[c] - sconf->max_order,
1458 ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
1459 sizeof(*ctx->raw_samples[c]) * sconf->max_order);
1685 num_buffers * sconf->max_order);
1687 num_buffers * sconf->max_order);
1689 sconf->max_order);
1701 ctx->quant_cof[c] = ctx->quant_cof_buffer + c * sconf->max_order;
1702 ctx->lpc_cof[c] = ctx->lpc_cof_buffer + c * sconf->max_order;
1751 channel_size = sconf->frame_length + sconf->max_order;
1753 ctx->prev_raw_samples = av_malloc (sizeof(*ctx->prev_raw_samples) * sconf->max_order);
1765 ctx->raw_samples[0] = ctx->raw_buffer + sconf->max_order;