/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
packet_util.cpp | 39 int16 quantizer; local 65 quantizer = (int16) BitstreamReadBits16(stream, currVol->quantPrecision); 66 if (quantizer == 0) return PV_FAIL; /* 04/03/01 */ 68 currVop->quantizer = quantizer; 150 int16 quantizer; local 187 quantizer = (int16) BitstreamReadBits16(stream, quantPrecision); 188 if (quantizer == 0) return PV_FAIL; /* 04/03/01 */ 190 currVop->quantizer = quantizer; 201 int16 quantizer; local [all...] |
vop.cpp | [all...] |
mp4lib_int.h | 70 int16 quantizer; /* VOP quantizer */ member in struct:tagVop 107 int quantPrecision; /* Quantizer precision */ 228 int16 *QPMB; /* Quantizer value for each MB */
|
combined_decode.cpp | 116 QP = video->currVop->quantizer; 276 { /* We need to check newgob to refresh quantizer */ 325 QP = video->currVop->quantizer;
|
datapart_decode.cpp | 154 QP = video->currVop->quantizer; 406 QP = video->currVop->quantizer;
|
pvdec_api.cpp | 413 /* Allocating HeaderInfo structure & Quantizer array */ [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
datapart_encode.cpp | 61 video->QP_prev = currVop->quantizer; 118 video->QP_prev = currVop->quantizer; /* store QP */ 259 QPMB[0] = video->QP_prev = QP = currVop->quantizer; 327 video->QP_prev = currVop->quantizer; /* store QP */
|
rate_control.cpp | 171 reset QPMB[], currVop->quantizer, rc->Ec, video->header_bits */ 174 2. Set currVop->quantizer 199 M4VENC_MEMSET(video->QPMB, currVop->quantizer, sizeof(UChar)*currVol->nTotalMB); 207 M4VENC_MEMSET(video->QPMB, currVop->quantizer, sizeof(UChar)*currVol->nTotalMB); 213 currVop->quantizer = video->rc[currLayer]->Qc; 219 video->QPMB[i] = (i & 1) ? currVop->quantizer - 1 : currVop->quantizer + 1; 222 M4VENC_MEMSET(video->QPMB, currVop->quantizer, sizeof(UChar)*currVol->nTotalMB); 245 pMP->QP = currVop->quantizer; [all...] |
combined_encode.cpp | 64 video->QP_prev = currVop->quantizer; 147 video->QP_prev = currVop->quantizer; 315 QPMB[0] = video->QP_prev = QP = currVop->quantizer; 413 video->QP_prev = currVop->quantizer; /* store QP */
|
vop.cpp | 389 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant */ 485 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant*/
|
mp4lib_int.h | 61 Int quantizer; /* VOP quantizer */ member in struct:tagVOP 98 Int quantPrecision; /* Quantizer precision */ 283 RDInfo **pRDSamples; /* pRDSamples[30][32], 30->30fps, 32 -> 5 bit quantizer, 32 candidates*/ 391 UChar *QPMB; /* Quantizer value for each MB */
|
mp4enc_api.cpp | [all...] |
motion_est.cpp | 469 currVop->quantizer = video->encParams->InitQuantIvop[video->currLayer]; [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/ |
mp4dec_api.h | 112 int16 quantizer; member in struct:tagVopHeaderInfo
|