HomeSort by relevance Sort by last modified time
    Searched defs:slice_type (Results 1 - 19 of 19) sorted by null

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_sh.c 12 // 1) first_mb_in_slice, slice_type, pic_parameter_id
19 int32_t slice_type =0; local
26 ///// slice_type
27 slice_type = h264_GetVLCElement(parent, pInfo, false);
28 SliceHeader->slice_type = (slice_type%5);
30 if(SliceHeader->slice_type > h264_PtypeI) {
177 if(SliceHeader->slice_type == h264_PtypeB)
193 if((SliceHeader->slice_type == h264_PtypeP) || (SliceHeader->slice_type == h264_PtypeSP) || (SliceHeader->slice_type == h264_PtypeB)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser.cc 334 // slice_type: ue(v)
335 uint32_t slice_type; local
336 RETURN_FALSE_ON_FAIL(slice_reader.ReadExponentialGolomb(&slice_type));
337 // slice_type's 5..9 range is used to indicate that all slices of a picture
338 // have the same value of slice_type % 5, we don't care about that, so we map
340 slice_type %= 5;
387 if (slice_type == kSliceTypeB) {
391 if (slice_type == kSliceTypeP || slice_type == kSliceTypeSp ||
392 slice_type == kSliceTypeB)
    [all...]
  /external/libhevc/decoder/
ihevcd_mv_merge.c 824 WORD32 slice_type; local
826 slice_type = ps_slice_hdr->i1_slice_type;
832 if(slice_type == BSLICE)
903 if(slice_type == PSLICE)
913 if(slice_type == PSLICE)
  /external/mesa3d/src/gallium/state_trackers/omx/
vid_dec_h264.c 530 enum pipe_h264_slice_type slice_type)
534 if (slice_type != 2 && slice_type != 4) {
550 if (slice_type == 1) {
568 struct pipe_h264_sps *sps, enum pipe_h264_slice_type slice_type)
601 if (slice_type == 1) {
666 enum pipe_h264_slice_type slice_type; local
680 slice_type = vl_rbsp_ue(rbsp) % 5;
888 if (slice_type == PIPE_H264_SLICE_TYPE_B)
895 if (slice_type == PIPE_H264_SLICE_TYPE_P |
    [all...]
  /hardware/intel/common/libva/va/
va_dec_hevc.h 361 uint32_t slice_type : 2; member in struct:_VASliceParameterBufferHEVC::__anon47544::__anon47545
va_enc_h264.h 417 unsigned char slice_type; member in struct:_VAEncSliceParameterBufferH264
436 /** @name If slice_type == B */
441 /** @name If slice_type == P */
va.h 2251 unsigned char slice_type; member in struct:_VASliceParameterBufferH264
2493 unsigned char slice_type; member in struct:_VAParseSliceHeaderGroupBuffer
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 273 if (sh.slice_type == SliceHeader.SliceType.B) {
432 public SliceType slice_type; field in class:H264TrackImpl.SliceHeader
446 switch (reader.readUE("SliceHeader: slice_type")) {
449 slice_type = SliceType.P;
454 slice_type = SliceType.B;
459 slice_type = SliceType.I;
464 slice_type = SliceType.SP;
469 slice_type = SliceType.SI;
500 ", slice_type=" + slice_type
    [all...]
  /external/v4l2_codec2/vda/
h264_parser.h 268 int slice_type; member in struct:media::H264SliceHeader
v4l2-controls.h 1073 __u8 slice_type; member in struct:v4l2_ctrl_h264_slice_param
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxva.h 187 UCHAR slice_type; member in struct:__anon64519
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 283 static PyTypeObject *slice_type; variable
286 static PyTypeObject *Slice_type;
814 slice_type = make_type("slice", &AST_type, NULL, 0);
815 if (!slice_type) return 0;
816 if (!add_attributes(slice_type, NULL, 0)) return 0;
817 Ellipsis_type = make_type("Ellipsis", slice_type, NULL, 0);
819 Slice_type = make_type("Slice", slice_type, Slice_fields, 3);
820 if (!Slice_type) return 0;
821 ExtSlice_type = make_type("ExtSlice", slice_type, ExtSlice_fields, 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 283 static PyTypeObject *slice_type; variable
286 static PyTypeObject *Slice_type;
797 slice_type = make_type("slice", &AST_type, NULL, 0);
798 if (!slice_type) return 0;
799 if (!add_attributes(slice_type, NULL, 0)) return 0;
800 Ellipsis_type = make_type("Ellipsis", slice_type, NULL, 0);
802 Slice_type = make_type("Slice", slice_type, Slice_fields, 3);
803 if (!Slice_type) return 0;
804 ExtSlice_type = make_type("ExtSlice", slice_type, ExtSlice_fields, 1);
    [all...]
  /external/libvncserver/rfb/
rfbproto.h 885 uint32_t slice_type; member in struct:__anon25973
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 283 static PyTypeObject *slice_type; variable
286 static PyTypeObject *Slice_type;
814 slice_type = make_type("slice", &AST_type, NULL, 0);
815 if (!slice_type) return 0;
816 if (!add_attributes(slice_type, NULL, 0)) return 0;
817 Ellipsis_type = make_type("Ellipsis", slice_type, NULL, 0);
819 Slice_type = make_type("Slice", slice_type, Slice_fields, 3);
820 if (!Slice_type) return 0;
821 ExtSlice_type = make_type("ExtSlice", slice_type, ExtSlice_fields, 1)
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 368 static PyTypeObject *slice_type; variable
370 static PyTypeObject *Slice_type;
1015 slice_type = make_type("slice", &AST_type, NULL, 0);
1016 if (!slice_type) return 0;
1017 if (!add_attributes(slice_type, NULL, 0)) return 0;
1018 Slice_type = make_type("Slice", slice_type, Slice_fields, 3);
1019 if (!Slice_type) return 0;
1020 ExtSlice_type = make_type("ExtSlice", slice_type, ExtSlice_fields, 1);
1022 Index_type = make_type("Index", slice_type, Index_fields, 1)
    [all...]
  /hardware/intel/img/psb_video/src/hwdefs/
dxva_cmdseq_msg.h 81 uint32_t slice_type : member in struct:__anon47789::__anon47792::__anon47793
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/include/
h264.h 723 //h264_ptype_t slice_type; //UE
724 uint8_t slice_type; member in struct:_h264_Slice_Header
  /external/libavc/decoder/
ih264d_structs.h 667 volatile UWORD32 slice_type; member in struct:_dec_slice_struct
    [all...]

Completed in 1801 milliseconds