Searched refs:qmax (Results 1 - 20 of 20) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dtc_red.c28 Plog = log(prob/(qmax - qmin))
30 int tc_red_eval_P(unsigned qmin, unsigned qmax, double prob) argument
32 int i = qmax - qmin;
H A Dtc_red.h4 extern int tc_red_eval_P(unsigned qmin, unsigned qmax, double prob);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dub.c257 int qlen, qmax; member in struct:ub_scsi_cmd_queue
561 if (t->qlen > t->qmax)
562 t->qmax = t->qlen;
577 if (t->qlen > t->qmax)
578 t->qmax = t->qlen;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dutils.c750 ", q=%d-%d", enc->qmin, enc->qmax);
H A Davcodec.h1026 int qmax; member in struct:AVCodecContext
1264 * ratecontrol qmin qmax limiting method
1265 * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax.
H A Ddnxhdenc.c114 CHECKED_ALLOCZ(ctx->qmatrix_l, (ctx->m.avctx->qmax+1) * 64 * sizeof(int));
115 CHECKED_ALLOCZ(ctx->qmatrix_c, (ctx->m.avctx->qmax+1) * 64 * sizeof(int));
116 CHECKED_ALLOCZ(ctx->qmatrix_l16, (ctx->m.avctx->qmax+1) * 64 * 2 * sizeof(uint16_t));
117 CHECKED_ALLOCZ(ctx->qmatrix_c16, (ctx->m.avctx->qmax+1) * 64 * 2 * sizeof(uint16_t));
124 ctx->m.intra_quant_bias, 1, ctx->m.avctx->qmax, 1);
130 ctx->m.intra_quant_bias, 1, ctx->m.avctx->qmax, 1);
131 for (qscale = 1; qscale <= ctx->m.avctx->qmax; qscale++) {
145 CHECKED_ALLOCZ(ctx->mb_rc, 8160*ctx->m.avctx->qmax*sizeof(RCEntry));
527 for (q = 1; q < avctx->qmax; q++) {
546 for (q = 1; q < avctx->qmax;
[all...]
H A Dh263.c516 qscale_table[ s->mb_index2xy[i] ]= av_clip(qp, s->avctx->qmin, s->avctx->qmax);
H A Dlibx264.c237 x4->params.rc.i_qp_max = avctx->qmax;
H A Dlibxvid_rc.c101 xvid_plg_data.max_quant[0]= s->avctx->qmax;
102 xvid_plg_data.max_quant[1]= s->avctx->qmax;
103 xvid_plg_data.max_quant[2]= s->avctx->qmax; //FIXME i/b factor & offset
H A Dlibxvidff.c292 xvid_enc_create.max_quant[0] = avctx->qmax;
293 xvid_enc_create.max_quant[1] = avctx->qmax;
294 xvid_enc_create.max_quant[2] = avctx->qmax;
H A Dlpc.c37 int32_t qmax; local
41 qmax = (1 << (precision - 1)) - 1;
58 while((cmax * (1 << sh) > qmax) && (sh > 0)) {
64 if(sh == 0 && cmax > qmax) {
65 double scale = ((double)qmax) / cmax;
75 lpc_out[i] = av_clip(lrintf(error), -qmax, qmax);
H A Dmpegvideo.h706 const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra);
H A Dmpegvideo_enc.c57 const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra)
62 for(qscale=qmin; qscale<=qmax; qscale++){
132 s->qscale= av_clip(s->qscale, s->avctx->qmin, s->avctx->qmax);
431 if(avctx->qmax > 12){
432 av_log(avctx, AV_LOG_ERROR, "non linear quant only supports qmax <= 12 currently\n");
2335 if(qp < s->avctx->qmin || qp > s->avctx->qmax)
56 ff_convert_matrix(DSPContext *dsp, int (*qmat)[64], uint16_t (*qmat16)[2][64], const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra) argument
H A Doptions.c119 {"qmax", "max video quantizer scale (VBR)", OFFSET(qmax), FF_OPT_TYPE_INT, 31, 1, 51, V|E},
174 {"qsquish", "how to keep quantizer between qmin and qmax (0 = clip, 1 = use differentiable function)", OFFSET(rc_qsquish), FF_OPT_TYPE_FLOAT, DEFAULT, 0, 99, V|E},
252 {"mb_qmax", "obsolete, use qmax", OFFSET(mb_qmax), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E},
H A Dratecontrol.c410 * gets the qmin & qmax for pict_type
414 int qmax= s->avctx->lmax; local
416 assert(qmin <= qmax);
420 qmax= (int)(qmax*FFABS(s->avctx->b_quant_factor)+s->avctx->b_quant_offset + 0.5);
423 qmax= (int)(qmax*FFABS(s->avctx->i_quant_factor)+s->avctx->i_quant_offset + 0.5);
427 qmax= av_clip(qmax, 1, FF_LAMBDA_MAX);
429 if(qmax<qmi
437 int qmin, qmax; local
548 const int qmax= s->avctx->mb_lmax; local
664 int qmin, qmax; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dffmdec.c291 codec->qmax = get_byte(pb);
H A Dffmenc.c131 put_byte(pb, codec->qmax);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dlpc.c160 FLAC__int32 qmax, qmin; local
167 qmax = 1 << precision;
168 qmin = -qmax;
169 qmax--;
212 if(q > qmax+1) /* we expect q==qmax+1 occasionally due to rounding */
213 fprintf(stderr,"FLAC__lpc_quantize_coefficients: quantizer overflow: q>qmax %d>%d shift=%d cmax=%f precision=%u lpc[%u]=%f\n",q,qmax,*shift,cmax,precision+1,i,lp_coeff[i]);
217 if(q > qmax)
218 q = qmax;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h1026 int qmax; member in struct:AVCodecContext
1264 * ratecontrol qmin qmax limiting method
1265 * 0-> clipping, 1-> use a nice continous function to limit qscale wthin qmin/qmax.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffserver.c1820 st->codec->qmin, st->codec->qmax, st->codec->time_base.den / st->codec->time_base.num);
3652 if (av->qmax == 0)
3653 av->qmax = 31;
4224 video_enc.qmax = atoi(arg);
4225 if (video_enc.qmax < 1 || video_enc.qmax > 31) {

Completed in 313 milliseconds