Searched defs:currVop (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpacket_util.cpp32 Vop *currVop = video->currVop; local
42 fcode_forward = currVop->fcodeForward;
45 if (currVop->predictionType != I_VOP) resync_marker_length = 16 + fcode_forward;
68 currVop->quantizer = quantizer;
100 if (currVop->predictionType != I_VOP)
104 if (currVop->predictionType == B_VOP)
147 Vop *currVop = video->currVop; local
184 currVop
198 Vop *currVop = video->currVop; local
[all...]
H A Dvop.cpp806 PV_STATUS DecodeVOPHeader(VideoDecData *video, Vop *currVop, Bool use_ext_timestamp) argument
834 currVop->timeStamp = -1;
850 currVop->predictionType = (int) BitstreamReadBits16(stream, 2);
877 currVop->timeInc = BitstreamReadBits16(stream, currVol->nbitsTimeIncRes);
888 currVop->vopCoded = (int) BitstreamRead1Bits(stream);
891 if (currVop->vopCoded == 0)
899 if (currVop->predictionType == P_VOP)
901 currVop->roundingType = (int) BitstreamRead1Bits(stream);
905 currVop->roundingType = 0;
925 if (currVop
1016 DecodeShortHeader(VideoDecData *video, Vop *currVop) argument
1623 CalcVopDisplayTime(Vol *currVol, Vop *currVop, int shortVideoHeader) argument
[all...]
H A Dblock_idct.cpp224 Vop *currVop = video->currVop; local
237 c_comp = currVop->yChan + offset;
238 cu_comp = currVop->uChan + (offset >> 2) + (x_pos << 2);
239 cv_comp = currVop->vChan + (offset >> 2) + (x_pos << 2);
H A Dcombined_decode.cpp46 Vop *currVop = video->currVop; local
64 switch (currVop->predictionType)
75 resync_marker_length = 16 + currVop->fcodeForward;
116 QP = video->currVop->quantizer;
289 mbnum = currVop->gobNumber * video->nMBinGOB;
325 QP = video->currVop->quantizer;
363 VopType = video->currVop->predictionType;
536 int intra_dc_vlc_thr = video->currVop->intraDCVlcThr;
666 c_comp = video->currVop
[all...]
H A Ddatapart_decode.cpp42 Vop *currVop = video->currVop; local
47 int vopType = currVop->predictionType;
64 resync_marker_length = 16 + currVop->fcodeForward;
154 QP = video->currVop->quantizer;
406 QP = video->currVop->quantizer;
521 int intra_dc_vlc_thr = video->currVop->intraDCVlcThr;
627 int intra_dc_vlc_thr = video->currVop->intraDCVlcThr;
716 c_comp = video->currVop->yChan + offset;
755 BlockIDCT(video->currVop
[all...]
H A Dpvdec_api.cpp126 video->currVop = IMEM_currVop;
127 if (video->currVop == NULL) status = PV_FALSE;
128 else oscl_memset(video->currVop, 0, sizeof(Vop));
136 video->currVop = (Vop *) oscl_malloc(sizeof(Vop));
137 if (video->currVop == NULL) status = PV_FALSE;
138 else oscl_memset(video->currVop, 0, sizeof(Vop));
336 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
337 if (video->currVop->yChan == NULL) status = PV_FALSE;
338 video->currVop->uChan = video->currVop
1086 Vop *currVop = video->currVop; local
1298 Vop *currVop = video->currVop; local
[all...]
H A Dmp4lib_int.h206 Vop *currVop; /* Current VOP (frame) */ member in struct:tagVideoDecData
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddatapart_encode.cpp40 Vop *currVop = video->currVop; local
42 Int width = currVop->width; /* has to be Vop, for multiple of 16 */
43 Int lx = currVop->pitch; /* with padding */
61 video->QP_prev = currVop->quantizer;
76 if (currVop->predictionType == P_VOP)
78 else if (currVop->predictionType == I_VOP)
108 /* MB Prediction:Put into MC macroblock, substract from currVop, put in predMB */
118 video->QP_prev = currVop->quantizer; /* store QP */
151 if (video->currVop
215 Vop *currVop = video->currVop; local
[all...]
H A Dvop.cpp24 PV_STATUS EncodeShortHeader(BitstreamEncVideo *stream, Vop *currVop);
25 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop);
45 Vop *currVop = video->currVop; local
55 switch (currVop->predictionType)
126 Vop *currVop = video->currVop; local
135 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
146 if (currVol->GOVStart && currVop->predictionType == I_VOP)
149 status = EncodeVOPHeader(stream, currVol, currVop); /* Encod
194 Vop *currVop = video->currVop; local
313 Vop *currVop = video->currVop; local
353 EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop) argument
412 EncodeShortHeader(BitstreamEncVideo *stream, Vop *currVop) argument
509 Vop *currVop = video->currVop; local
[all...]
H A Dcombined_encode.cpp41 Vop *currVop = video->currVop; local
43 Int width = currVop->width; /* has to be Vop, for multiple of 16 */
44 Int lx = currVop->pitch; /* with padding */
64 video->QP_prev = currVop->quantizer;
79 if (currVop->predictionType == P_VOP)
81 else if (currVop->predictionType == I_VOP)
101 if (currVol->shortVideoHeader && currVop->gobFrameID != currVop->predictionType)
102 currVop
266 Vop *currVop = video->currVop; local
[all...]
H A Dfastcodemb.cpp37 /* currVop->yChan,uChan,vChan Reconstructed pixels */
73 Vop *currVop = video->currVop; local
77 Int lx = currVop->pitch;
78 Int width = currVop->width;
129 rec = currVop->yChan + offset;
161 rec = currVop->uChan + offsetc;
182 rec = currVop->vChan + offsetc;
266 /* currVop->yChan,uChan,vChan Reconstructed pixels */
304 Vop *currVop local
[all...]
H A Drate_control.cpp171 reset QPMB[], currVop->quantizer, rc->Ec, video->header_bits */
174 2. Set currVop->quantizer
187 Vop *currVop = video->currVop; local
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
[all...]
H A Dmotion_comp.cpp101 Vop *currVop = video->currVop; local
116 round1 = (Int)(1 - video->currVop->roundingType);
118 pitch = currVop->pitch;
119 height = currVop->height;
158 pitch_uv, (currVop->width) >> 1, height_uv, round1);
182 pitch_uv, (currVop->width) >> 1, height_uv, round1);
H A Dmotion_est.cpp140 Vop *currVop = video->currVop; local
184 if (video->currVop->predictionType == I_VOP)
467 currVop->predictionType = I_VOP;
469 currVop->quantizer = video->encParams->InitQuantIvop[video->currLayer];
517 currVop->fcodeForward = (f_code_p > f_code_n ? f_code_p : f_code_n);
537 Int lx = video->currVop->width; // padding
540 Int rx = video->currVop->pitch;
682 Int width = video->currVop->width;
744 Int width = video->currVop
[all...]
H A Dmp4lib_int.h327 Vop *currVop; /* Current reconstructed VOP */ member in struct:tagVideoEncData

Completed in 1030 milliseconds