Searched defs:encParam (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dinit.cpp25 AVCEnc_Status SetEncodeParam(AVCHandle* avcHandle, AVCEncParams* encParam, argument
46 also copy the values from the encParam into the above 3 structures.
56 encvid->fullsearch_enable = encParam->fullsearch;
58 encvid->outOfBandParamSet = ((encParam->out_of_band_param_set == AVC_ON) ? TRUE : FALSE);
60 /* parameters derived from the the encParam that are used in SPS */
70 video->MaxPicOrderCntLsb = 1 << (encParam->log2_max_poc_lsb_minus_4 + 4);
71 video->PicWidthInMbs = (encParam->width + 15) >> 4; /* round it to multiple of 16 */
72 video->FrameHeightInMbs = (encParam->height + 15) >> 4; /* round it to multiple of 16 */
91 maxFrameNum = (encParam->idr_period == -1) ? (1 << 16) : encParam
[all...]
H A Davcenc_api.cpp56 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncInitialize(AVCHandle *avcHandle, AVCEncParams *encParam, argument
144 status = SetEncodeParam(avcHandle, encParam, extSPS, extPPS); /* initialized variables to be used in SPS*/
150 if (encParam->use_overrun_buffer == AVC_ON)

Completed in 547 milliseconds