/frameworks/base/media/libstagefright/ |
avc_utils.cpp | 43 unsigned profile_idc = br.getBits(8); local 49 if (profile_idc == 100 || profile_idc == 110 50 || profile_idc == 122 || profile_idc == 244 51 || profile_idc == 44 || profile_idc == 83 || profile_idc == 86) {
|
MPEG4Writer.cpp | [all...] |
/hardware/ti/omap3/omx/ti_omx_config_parser/src/ |
ti_video_config_parser.cpp | 109 int32 profile_idc, level_idc = 0; local 146 (int*) & profile_idc, 155 aOutputs->profile = (uint32)profile_idc; 163 (profile_idc != H264_PROFILE_IDC_BASELINE) ||
|
ti_m4v_config_parser.cpp | 797 OSCL_EXPORT_REF int16 iGetAVCConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc, uint32 *entropy_coding_mode_flag) 889 if (DecodeSPS(&psBits, width, height, display_width, display_height, profile_idc, level_idc)) 930 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc) 944 *profile_idc = temp; 959 if(*profile_idc == H264_PROFILE_IDC_HIGH) [all...] |
/frameworks/base/media/libstagefright/codecs/avc/enc/src/ |
init.cpp | 53 /* profile_idc, constrained_setx_flag and level_idc is set by VerifyProfile(), 535 seqParam->profile_idc = encParam->profile; 544 seqParam->profile_idc = extS->profile_idc; 574 if (seqParam->profile_idc == 0) /* find profile for this setting */ 582 seqParam->profile_idc = AVC_EXTENDED; 590 seqParam->profile_idc = AVC_MAIN; 603 seqParam->profile_idc = AVC_BASELINE; 607 if (seqParam->profile_idc == 0) /* still zero */ 614 switch (seqParam->profile_idc) [all...] |
header.cpp | 35 status = BitstreamWriteBits(stream, 8, seqParam->profile_idc); [all...] |
/hardware/ti/omap3/omx/ti_omx_config_parser/inc/ |
ti_m4v_config_parser.h | 128 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc);
|
/frameworks/base/media/libstagefright/codecs/avc/dec/src/ |
header.cpp | 29 uint profile_idc, constrained_set0_flag, constrained_set1_flag, constrained_set2_flag; local 36 BitstreamReadBits(stream, 8, &profile_idc); 38 // if (profile_idc != 66 && constrained_set0_flag != 1) 77 seqParam->profile_idc = profile_idc; [all...] |
/frameworks/base/media/libstagefright/codecs/avc/common/include/ |
avcapi_common.h | 44 This enumeration is for profiles. The value follows the profile_idc in sequence
|
avcint_common.h | 299 uint profile_idc; /* u(8) */ member in struct:tagSeqParamSet [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/ |
OMX_VideoDec_Utils.c | [all...] |