Searched refs:aEncOption (Results 1 – 6 of 6) sorted by relevance
/external/opencore/codecs_v2/omx/omx_h264enc/src/ |
D | avc_enc.cpp | 130 AVCEncParams aEncOption; /* encoding options */ in AvcEncInit() local 204 aEncOption.width = aEncodeParam.nFrameWidth; in AvcEncInit() 205 aEncOption.height = aEncodeParam.nFrameHeight; in AvcEncInit() 206 …aEncOption.frame_rate = (uint32)(1000 * ((aEncodeParam.xFramerate >> 16) + (OsclFloat)(aEncodePara… in AvcEncInit() 212 aEncOption.rate_control = AVC_OFF; in AvcEncInit() 213 aEncOption.bitrate = 48000; // default in AvcEncInit() 221 aEncOption.rate_control = AVC_ON; in AvcEncInit() 222 aEncOption.bitrate = aEncodeParam.nBitrate; in AvcEncInit() 235 aEncOption.profile = AVC_BASELINE; in AvcEncInit() 241 aEncOption.profile = AVC_MAIN; in AvcEncInit() [all …]
|
/external/opencore/codecs_v2/omx/omx_m4venc/src/ |
D | mpeg4_enc.cpp | 67 VideoEncOptions aEncOption; /* encoding options */ in Mp4EncInit() local 192 PVGetDefaultEncOption(&aEncOption, 0); in Mp4EncInit() 194 aEncOption.encWidth[0] = aEncodeParam.nFrameWidth; in Mp4EncInit() 195 aEncOption.encHeight[0] = aEncodeParam.nFrameHeight; in Mp4EncInit() 196 …aEncOption.encFrameRate[0] = (aEncodeParam.xFramerate >> 16) + (OsclFloat)(aEncodeParam.xFramerate… in Mp4EncInit() 204 aEncOption.rcType = CONSTANT_Q; in Mp4EncInit() 205 aEncOption.vbvDelay = (float)10.0; in Mp4EncInit() 211 aEncOption.rcType = CBR_1; in Mp4EncInit() 212 aEncOption.vbvDelay = (float)2.0; in Mp4EncInit() 218 aEncOption.rcType = VBR_1; in Mp4EncInit() [all …]
|
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
D | pvm4vencoder.cpp | 253 TCVEI_RETVAL CPVM4VEncoder::ParseFSI(uint8* aFSIBuff, int FSILength, VideoEncOptions *aEncOption) in ParseFSI() argument 281 aEncOption->profile_level = SIMPLE_PROFILE_LEVEL0; in ParseFSI() 286 aEncOption->profile_level = SIMPLE_PROFILE_LEVEL1; in ParseFSI() 291 aEncOption->profile_level = SIMPLE_PROFILE_LEVEL2; in ParseFSI() 296 aEncOption->profile_level = SIMPLE_PROFILE_LEVEL3; in ParseFSI() 301 aEncOption->profile_level = CORE_PROFILE_LEVEL1; in ParseFSI() 306 aEncOption->profile_level = CORE_PROFILE_LEVEL2; in ParseFSI() 361 iDecodeShortHeader(psBits, aEncOption); in ParseFSI() 408 aEncOption->timeIncRes = codeword; in ParseFSI() 426 aEncOption->encWidth[0] = codeword; in ParseFSI() [all …]
|
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
D | pvavcencoder.cpp | 134 AVCEncParams aEncOption; /* encoding options */ in Initialize() local 139 if (EAVCEI_SUCCESS != Init(aVidInFormat, aEncParam, aEncOption)) in Initialize() 145 if (AVCENC_SUCCESS != PVAVCEncInitialize(&iAvcHandle, &aEncOption, NULL, NULL)) in Initialize() 168 …oder::Init(TAVCEIInputFormat* aVidInFormat, TAVCEIEncodeParam* aEncParam, AVCEncParams& aEncOption) in Init() argument 251 aEncOption.width = iEncWidth = aEncParam->iFrameWidth[0]; in Init() 252 aEncOption.height = iEncHeight = aEncParam->iFrameHeight[0]; in Init() 255 aEncOption.frame_rate = (uint32)(1000 * iEncFrameRate); in Init() 259 aEncOption.rate_control = AVC_OFF; in Init() 260 aEncOption.bitrate = 48000; // default in Init() 263 aEncOption.rate_control = AVC_ON; in Init() [all …]
|
/external/opencore/codecs_v2/video/m4v_h263/enc/include/ |
D | pvm4vencoder.h | 155 TCVEI_RETVAL ParseFSI(uint8* aFSIBuff, int FSILength, VideoEncOptions *aEncOption); 160 int16 iDecodeShortHeader(mp4StreamType *psBits, VideoEncOptions *aEncOption);
|
/external/opencore/codecs_v2/video/avc_h264/enc/include/ |
D | pvavcencoder.h | 68 …TVAL Init(TAVCEIInputFormat *aVidInFormat, TAVCEIEncodeParam *aEncParam, AVCEncParams& aEncOption);
|