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

1 2

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser.h 47 uint32_t pic_order_cnt_type = 0; member in struct:webrtc::H264BitstreamParser::SpsState
h264_sps_parser.cc 131 // pic_order_cnt_type: ue(v)
132 uint32_t pic_order_cnt_type; local
133 RETURN_FALSE_ON_FAIL(parser.ReadExponentialGolomb(&pic_order_cnt_type));
134 if (pic_order_cnt_type == 0) {
137 } else if (pic_order_cnt_type == 1) {
h264_bitstream_parser.cc 168 // pic_order_cnt_type: ue(v)
170 sps_parser.ReadExponentialGolomb(&sps_.pic_order_cnt_type));
172 if (sps_.pic_order_cnt_type == 0) {
176 } else if (sps_.pic_order_cnt_type == 1) {
366 if (sps_.pic_order_cnt_type == 0) {
375 if (sps_.pic_order_cnt_type == 1 && !sps_.delta_pic_order_always_zero_flag) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
SeqParameterSet.java 38 public int pic_order_cnt_type; field in class:SeqParameterSet
118 sps.pic_order_cnt_type = reader.readUE("SPS: pic_order_cnt_type");
119 if (sps.pic_order_cnt_type == 0) {
122 } else if (sps.pic_order_cnt_type == 1) {
356 writer.writeUE(pic_order_cnt_type, "SPS: pic_order_cnt_type");
357 if (pic_order_cnt_type == 0) {
360 } else if (pic_order_cnt_type == 1) {
516 "\n pic_order_cnt_type=" + pic_order_cnt_type
    [all...]
  /external/v4l2_codec2/vda/
h264_dpb.h 44 int pic_order_cnt_type; member in class:media::H264Picture
h264_decoder.cc 142 curr_pic_->pic_order_cnt_type = sps->pic_order_cnt_type;
143 switch (curr_pic_->pic_order_cnt_type) {
191 switch (pic->pic_order_cnt_type) {
339 DVLOG(1) << "Invalid pic_order_cnt_type: " << sps->pic_order_cnt_type;
    [all...]
h264_dpb.cc 17 : pic_order_cnt_type(0),
h264_parser.cc 955 READ_UE_OR_RETURN(&sps->pic_order_cnt_type);
956 TRUE_OR_RETURN(sps->pic_order_cnt_type < 3);
958 if (sps->pic_order_cnt_type == 0) {
962 } else if (sps->pic_order_cnt_type == 1) {
    [all...]
h264_parser.h 125 int pic_order_cnt_type; member in struct:media::H264SPS
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse.c 497 if (pInfo->active_SPS.pic_order_cnt_type == 0)
503 if (pInfo->active_SPS.pic_order_cnt_type == 1)
586 if (pInfo->active_SPS.pic_order_cnt_type == 0)
592 if (pInfo->active_SPS.pic_order_cnt_type == 1)
622 pInfo->img.pic_order_cnt_type = pInfo->active_SPS.pic_order_cnt_type;
624 if(pInfo->img.pic_order_cnt_type == 1) {
h264parse_sps.c 401 //// pic_order_cnt_type ---- [0,2]
405 SPS->pic_order_cnt_type = (uint8_t)data;
409 if(SPS->pic_order_cnt_type == 0) {
411 } else if(SPS->pic_order_cnt_type == 1){
h264parse_sh.c 114 if(pInfo->active_SPS.pic_order_cnt_type == 0)
130 if((pInfo->active_SPS.pic_order_cnt_type == 1) && !(pInfo->active_SPS.delta_pic_order_always_zero_flag))
viddec_h264_parse.c 306 if(1==pInfo->active_SPS.pic_order_cnt_type) {
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv84_video_bsp.c 30 uint32_t pic_order_cnt_type; // 12c member in struct:iparm::iseqparm
182 params.iseqparm.pic_order_cnt_type = desc->pps->sps->pic_order_cnt_type;
  /external/mesa3d/src/gallium/state_trackers/va/
picture_h264.c 73 context->desc.h264.pps->sps->pic_order_cnt_type =
74 h264->seq_fields.bits.pic_order_cnt_type;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_vp3_video_bsp.c 83 uint32_t pic_order_cnt_type; // 08 checked member in struct:h264_picparm_bsp
214 h->pic_order_cnt_type = d->pps->sps->pic_order_cnt_type;
  /hardware/intel/common/libva/va/
va_enc_h264.h 191 unsigned int pic_order_cnt_type : 2; member in struct:_VAEncSequenceParameterBufferH264::__anon47559::__anon47560
205 /** if pic_order_cnt_type == 1 */
423 /** @name If pic_order_cnt_type == 0 */
430 /** @name If pic_order_cnt_type == 1 && !delta_pic_order_always_zero_flag */
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 208 bitstream_put_ue(bs, seq_param->seq_fields.bits.pic_order_cnt_type); /* pic_order_cnt_type */
210 if (seq_param->seq_fields.bits.pic_order_cnt_type == 0)
  /external/mesa3d/src/gallium/state_trackers/omx/
vid_dec_h264.c 344 sps->pic_order_cnt_type = vl_rbsp_ue(rbsp);
346 if (sps->pic_order_cnt_type == 0)
348 else if (sps->pic_order_cnt_type == 1) {
737 if (sps->pic_order_cnt_type == 0) {
783 } else if (sps->pic_order_cnt_type == 1) {
854 } else if (sps->pic_order_cnt_type == 2) {
    [all...]
  /frameworks/av/media/libstagefright/foundation/
avc_utils.cpp 143 unsigned pic_order_cnt_type = parseUE(&br); local
145 if (pic_order_cnt_type == 0) {
147 } else if (pic_order_cnt_type == 1) {
  /hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/
vbp_loader.h 248 uint8 pic_order_cnt_type; member in struct:_vbp_codec_data_h264
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/include/
h264.h 810 uint8_t pic_order_cnt_type; // ue(v), 0 to 2 member in struct:_SPS_PAR_USED
907 uint8_t pic_order_cnt_type; member in struct:_h264_img_par
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_uvd.h 138 uint8_t pic_order_cnt_type; member in struct:ruvd_h264
  /external/mesa3d/src/gallium/include/pipe/
p_video_state.h 284 uint8_t pic_order_cnt_type; member in struct:pipe_h264_sps
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxva.h 160 UCHAR pic_order_cnt_type; member in struct:__anon64515

Completed in 876 milliseconds

1 2