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

  /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...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
header.cpp 49 status = ue_v(stream, seqParam->pic_order_cnt_type);
55 if (seqParam->pic_order_cnt_type == 0)
59 else if (seqParam->pic_order_cnt_type == 1)
356 if (currSPS->pic_order_cnt_type == 0)
366 if (currSPS->pic_order_cnt_type == 1 && !currSPS->delta_pic_order_always_zero_flag)
656 switch (currSPS->pic_order_cnt_type)
888 switch (currSPS->pic_order_cnt_type)
    [all...]
init.cpp 109 seqParam->pic_order_cnt_type = encParam->poc_type; /* POC type */
164 seqParam->pic_order_cnt_type = extS->pic_order_cnt_type;
165 if (seqParam->pic_order_cnt_type == 0)
174 else if (seqParam->pic_order_cnt_type == 1)
    [all...]
  /external/chromium_org/content/common/gpu/media/
h264_parser.h 67 int pic_order_cnt_type; member in struct:content::H264SPS
h264_parser.cc 627 READ_UE_OR_RETURN(&sps->pic_order_cnt_type);
628 TRUE_OR_RETURN(sps->pic_order_cnt_type < 3);
631 if (sps->pic_order_cnt_type == 0) {
634 } else if (sps->pic_order_cnt_type == 1) {
989 if (sps->pic_order_cnt_type == 0) {
997 if (sps->pic_order_cnt_type == 1 && !sps->delta_pic_order_always_zero_flag) {
    [all...]
vaapi_h264_decoder.cc 255 FROM_SPS_TO_PP_SF(pic_order_cnt_type);
529 switch (sps->pic_order_cnt_type) {
677 DVLOG(1) << "Invalid pic_order_cnt_type: " << sps->pic_order_cnt_type;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_video_state.h 268 uint8_t pic_order_cnt_type; member in struct:pipe_h264_picture_desc
  /external/mesa3d/src/gallium/include/pipe/
p_video_state.h 268 uint8_t pic_order_cnt_type; member in struct:pipe_h264_picture_desc
  /frameworks/av/media/libstagefright/
avc_utils.cpp 70 unsigned pic_order_cnt_type = parseUE(&br); local
72 if (pic_order_cnt_type == 0) {
74 } else if (pic_order_cnt_type == 1) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
decode.c 351 picture->pic_order_cnt_type = picture_info->pic_order_cnt_type;
  /external/mesa3d/src/gallium/state_trackers/vdpau/
decode.c 351 picture->pic_order_cnt_type = picture_info->pic_order_cnt_type;
  /frameworks/av/libvideoeditor/vss/mcs/inc/
M4MCS_InternalTypes.h 184 /* (pic_order_cnt_type == 1) */
208 M4OSA_UInt8 pic_order_cnt_type; member in struct:__anon31140
209 /* if(pic_order_cnt_type == 0) */
271 /* if( pic_order_cnt_type < 2 ) in the sequence parameter set */
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 307 uint pic_order_cnt_type; /* ue(v), range 0..2 */ member in struct:tagSeqParamSet
308 /* if( pic_order_cnt_type == 0 ) */
310 /* else if( pic_order_cnt_type == 1 ) */
397 /* if(pic_order_cnt_type==0) */
401 /* if(pic_order_cnt_type==1 && !delta_pic_order_always_zero_flag) */
    [all...]
  /external/chromium_org/third_party/libva/va/
va.h 1165 unsigned int pic_order_cnt_type : 2; member in struct:_VAPictureParameterBufferH264::__anon13943::__anon13944
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 487 if (sps.pic_order_cnt_type == 0) {
  /frameworks/av/libvideoeditor/vss/mcs/src/
M4MCS_API.c 894 if( instance->encoder_sps.pic_order_cnt_type == 0 )
907 if( ( instance->encoder_sps.pic_order_cnt_type == 1)
919 if( instance->clip_sps.pic_order_cnt_type == 0 )
931 if( ( instance->clip_sps.pic_order_cnt_type == 1)
1051 sps->pic_order_cnt_type =
1054 if (sps->pic_order_cnt_type == 0)
1061 else if( sps->pic_order_cnt_type == 1 )
    [all...]

Completed in 589 milliseconds