HomeSort by relevance Sort by last modified time
    Searched refs:currVop (Results 1 - 22 of 22) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vop.cpp 24 PV_STATUS EncodeShortHeader(BitstreamEncVideo *stream, Vop *currVop);
25 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop);
45 Vop *currVop = video->currVop;
55 switch (currVop->predictionType)
126 Vop *currVop = video->currVop;
135 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
146 if (currVol->GOVStart && currVop->predictionType == I_VOP)
149 status = EncodeVOPHeader(stream, currVol, currVop); /* Encode VOP Header *
    [all...]
datapart_encode.cpp 40 Vop *currVop = video->currVop;
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->predictionType == I_VOP
    [all...]
combined_encode.cpp 41 Vop *currVop = video->currVop;
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->gobFrameID = currVop->predictionType
    [all...]
mp4enc_api.cpp 729 video->currVop = (Vop *) M4VENC_MALLOC(sizeof(Vop)); /* Memory for Current VOP */
730 if (video->currVop == NULL) goto CLEAN_UP;
746 video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
747 if (video->currVop->yChan == NULL) goto CLEAN_UP;
748 video->currVop->uChan = video->currVop->yChan + size;/* Memory for currVop U */
749 video->currVop->vChan = video->currVop->uChan + (size >> 2);/* Memory for currVop V *
    [all...]
fastcodemb.cpp 37 /* currVop->yChan,uChan,vChan Reconstructed pixels */
73 Vop *currVop = video->currVop;
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 = video->currVop
    [all...]
findhalfpel.cpp 79 Int lx = video->currVop->pitch;
80 Int width = video->currVop->width; /* padding */
194 Int lx = video->currVop->pitch;
195 Int width = video->currVop->width; /* , padding */
rate_control.cpp 171 reset QPMB[], currVop->quantizer, rc->Ec, video->header_bits */
174 2. Set currVop->quantizer
187 Vop *currVop = video->currVop;
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)
    [all...]
motion_est.cpp 140 Vop *currVop = video->currVop;
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->width
    [all...]
motion_comp.cpp 101 Vop *currVop = video->currVop;
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);
    [all...]
vlc_encode.cpp 1056 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].x - pmvx, bs1); /* Write x to bitstream */
1057 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].y - pmvy, bs1); /* Write y to bitstream */
1064 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].x - pmvx, bs1);
1065 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].y - pmvy, bs1);
    [all...]
mp4lib_int.h 327 Vop *currVop; /* Current reconstructed VOP */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
packet_util.cpp 32 Vop *currVop = video->currVop;
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;
184 currVop->gobNumber = (int) tmpvar
    [all...]
vop.cpp 802 PV_STATUS DecodeVOPHeader(VideoDecData *video, Vop *currVop, Bool use_ext_timestamp)
830 currVop->timeStamp = -1;
846 currVop->predictionType = (int) BitstreamReadBits16(stream, 2);
873 currVop->timeInc = BitstreamReadBits16(stream, currVol->nbitsTimeIncRes);
884 currVop->vopCoded = (int) BitstreamRead1Bits(stream);
887 if (currVop->vopCoded == 0)
895 if (currVop->predictionType == P_VOP)
897 currVop->roundingType = (int) BitstreamRead1Bits(stream);
901 currVop->roundingType = 0;
921 if (currVop->predictionType != I_VOP
    [all...]
pvdec_api.cpp 113 video->currVop = IMEM_currVop;
114 if (video->currVop == NULL) status = PV_FALSE;
115 else oscl_memset(video->currVop, 0, sizeof(Vop));
123 video->currVop = (Vop *) oscl_malloc(sizeof(Vop));
124 if (video->currVop == NULL) status = PV_FALSE;
125 else oscl_memset(video->currVop, 0, sizeof(Vop));
308 video->currVop->yChan = IMEM_currVop_yChan; /* Allocate memory for all VOP OKA 3/2/1*/
309 if (video->currVop->yChan == NULL) status = PV_FALSE;
310 video->currVop->uChan = video->currVop->yChan + size
    [all...]
combined_decode.cpp 46 Vop *currVop = video->currVop;
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->yChan + offset
    [all...]
datapart_decode.cpp 42 Vop *currVop = video->currVop;
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->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, nco (…)
    [all...]
conceal.cpp 36 int intra_dc_vlc_thr = video->currVop->intraDCVlcThr;
123 CopyVopMB(video->currVop, video->concealFrame, i, video->width, video->height);
mp4dec_lib.h 275 PV_STATUS DecodeVOPHeader(VideoDecData *video, Vop *currVop, Bool use_ext_tiemstamp);
276 PV_STATUS DecodeShortHeader(VideoDecData *video, Vop *currVop);
278 uint32 CalcVopDisplayTime(Vol *currVol, Vop *currVop, int shortVideoHeader);
mb_motion_comp.cpp 35 video->currVop->yChan contents are the newly calculated luminance
37 video->currVop->uChan contents are the newly calculated chrominance
39 video->currVop->vChan contents are the newly calculated chrominance
166 round1 = (int)(1 - video->currVop->roundingType);
253 c_comp = video->currVop->yChan + offset;
463 cu_comp = video->currVop->uChan + (offset >> 2) + (xpos >> 2);
464 cv_comp = video->currVop->vChan + (offset >> 2) + (xpos >> 2);
583 comp = video->currVop;
block_idct.cpp 224 Vop *currVop = video->currVop;
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);
mp4lib_int.h 206 Vop *currVop; /* Current VOP (frame) */
vlc_decode.cpp 136 int f_code_f = video->currVop->fcodeForward;
    [all...]

Completed in 568 milliseconds