HomeSort by relevance Sort by last modified time
    Searched refs:profile_idc (Results 1 - 25 of 37) sorted by null

1 2

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_sps_parser.cc 78 // profile_idc: u(8). We need it to determine if we need to read/skip chroma
80 uint8_t profile_idc; local
81 RETURN_FALSE_ON_FAIL(parser.ReadUInt8(&profile_idc));
89 // See if profile_idc has chroma format information.
90 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 ||
91 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 |
    [all...]
h264_bitstream_parser.cc 115 // profile_idc: u(8).
116 uint8_t profile_idc; local
117 RETURN_FALSE_ON_FAIL(sps_parser.ReadUInt8(&profile_idc));
126 // See if profile_idc has chroma format information.
127 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 ||
128 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 |
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
SeqParameterSet.java 54 public int profile_idc; field in class:SeqParameterSet
81 sps.profile_idc = (int) reader.readNBit(8, "SPS: profile_idc");
94 if (sps.profile_idc == 100 || sps.profile_idc == 110
95 || sps.profile_idc == 122 || sps.profile_idc == 144) {
313 writer.writeNBit(profile_idc, 8, "SPS: profile_idc");
322 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 12
    [all...]
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 175 int profile_idc = 0; local
179 profile_idc = PROFILE_IDC_HIGH;
183 profile_idc = PROFILE_IDC_MAIN;
186 profile_idc = PROFILE_IDC_BASELINE;
190 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
199 if ( profile_idc == PROFILE_IDC_HIGH) {
  /hardware/intel/img/psb_video/src/
vsp_VPP.h 43 uint32_t profile_idc; // BE_PROFILEIDC member in struct:context_VPP_s
pnw_MPEG4ES.c 151 ctx->profile_idc = 2;
154 ctx->profile_idc = 3;
157 ctx->profile_idc = 2;
272 switch (ctx->profile_idc) {
pnw_H264ES.c 173 ctx->profile_idc = 5;
176 ctx->profile_idc = 6;
179 ctx->profile_idc = 6;
407 pSequenceParams->level_idc, ctx->profile_idc);
415 pSequenceParams->level_idc, ctx->profile_idc);
    [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/av/media/libstagefright/
avc_utils.cpp 97 unsigned profile_idc = br.getBits(8); local
103 if (profile_idc == 100 || profile_idc == 110
104 || profile_idc == 122 || profile_idc == 244
105 || profile_idc == 44 || profile_idc == 83 || profile_idc == 86) {
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_video_config_parser.cpp 109 int32 profile_idc, level_idc = 0; local
145 (int*) & profile_idc,
153 aOutputs->profile = (uint32)profile_idc;
intel_m4v_config_parser.h 92 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc);
intel_m4v_config_parser.cpp 782 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)
875 if (DecodeSPS(&psBits, width, height, display_width, display_height, profile_idc, level_idc))
928 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc)
941 /* Read profile_idc */
943 *profile_idc = temp;
951 LOGV("intel: --- profile_idc = %d ---\n", temp);
965 if(*profile_idc == 100 || *profile_idc == 110 ||
966 *profile_idc == 122 || *profile_idc == 144
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_sps.c 273 //SPS->profile_idc = h264_GetBits(pInfo, 8, "Profile");
275 SPS->profile_idc = (uint8_t)code;
277 switch(SPS->profile_idc)
336 if((SPS->profile_idc == h264_ProfileHigh) || (SPS->profile_idc == h264_ProfileHigh10) ||
337 (SPS->profile_idc == h264_ProfileHigh422) || (SPS->profile_idc == h264_ProfileHigh444) )
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
init.cpp 53 /* profile_idc, constrained_setx_flag and level_idc is set by VerifyProfile(),
531 seqParam->profile_idc = encParam->profile;
540 seqParam->profile_idc = extS->profile_idc;
570 if (seqParam->profile_idc == 0) /* find profile for this setting */
578 seqParam->profile_idc = AVC_EXTENDED;
586 seqParam->profile_idc = AVC_MAIN;
599 seqParam->profile_idc = AVC_BASELINE;
603 if (seqParam->profile_idc == 0) /* still zero */
610 switch (seqParam->profile_idc)
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
lnc_MPEG4ES.c 159 ctx->profile_idc = 2;
162 ctx->profile_idc = 3;
165 ctx->profile_idc = 2;
240 switch (ctx->profile_idc) {
lnc_H264ES.c 166 ctx->profile_idc = 5;
169 ctx->profile_idc = 6;
172 ctx->profile_idc = 6;
291 pSequenceParams->level_idc, ctx->profile_idc);
    [all...]
lnc_hostcode.h 233 uint8_t profile_idc; member in struct:context_ENC_s
  /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);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_loader.h 84 uint8 profile_idc; member in struct:_vbp_codec_data_h264
  /hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/
vbp_loader.h 207 uint8 profile_idc; member in struct:_vbp_codec_data_h264
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderAVC.cpp 690 enableLowDelayMode((data->codec_data->profile_idc == 66) || (data->codec_data->profile_idc == 100 && data->codec_data->constraint_set4_flag == 1 && data->codec_data->constraint_set5_flag == 1));
694 if ((data->codec_data->profile_idc == 66 || data->codec_data->constraint_set0_flag == 1) &&
    [all...]
  /hardware/intel/common/libva/test/encode/
avcenc.c 883 int profile_idc = PROFILE_IDC_BASELINE; local
886 profile_idc = PROFILE_IDC_HIGH;
888 profile_idc = PROFILE_IDC_MAIN;
890 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
899 if ( profile_idc == PROFILE_IDC_HIGH) {
    [all...]
h264encode.c 300 int profile_idc = PROFILE_IDC_BASELINE; local
303 profile_idc = PROFILE_IDC_HIGH;
305 profile_idc = PROFILE_IDC_MAIN;
307 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
316 if ( profile_idc == PROFILE_IDC_HIGH) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 299 uint profile_idc; /* u(8) */ member in struct:tagSeqParamSet
    [all...]

Completed in 662 milliseconds

1 2