/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...] |
mix_vbp_h264_stubs.c | 90 if( (h264_PtypeB==pInfo->SliceHeader.slice_type)||(h264_PtypeP==pInfo->SliceHeader.slice_type) ) 141 if( (h264_PtypeB==pInfo->SliceHeader.slice_type)||(h264_PtypeP==pInfo->SliceHeader.slice_type) )
|
viddec_h264_workload.c | 218 PUT_BSD_PP1_SLICE_TYPE_BITS(pInfo->SliceHeader.slice_type) + 716 if( (h264_PtypeB==pInfo->SliceHeader.slice_type)||(h264_PtypeP==pInfo->SliceHeader.slice_type) ) 738 if( h264_PtypeB==pInfo->SliceHeader.slice_type) [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...] |
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
header.cpp | 323 int slice_type, temp, i; local 330 slice_type = video->slice_type; 334 status = ue_v(stream, sliceHdr->slice_type); 338 status = ue_v(stream, slice_type); 380 if (slice_type == AVC_B_SLICE) 390 if (slice_type == AVC_P_SLICE || slice_type == AVC_SP_SLICE || slice_type == AVC_B_SLICE) 397 if (slice_type == AVC_B_SLICE [all...] |
slice.cpp | 30 int CurrMbAddr, slice_type; local 32 slice_type = video->slice_type; 138 if (slice_type != AVC_I_SLICE && slice_type != AVC_SI_SLICE) 173 int slice_type; local 179 slice_type = video->slice_type; 377 if (slice_type == AVC_P_SLICE) 391 else if (slice_type == AVC_B_SLICE 778 uint slice_type = video->slice_type; local [all...] |
init.cpp | 50 have to be re-assigned per slice basis such as frame_num, slice_type, 804 int slice_type = video->slice_type; local 809 video->sliceHdr->slice_type = (AVCSliceType)slice_type; [all...] |
rate_control.cpp | 75 sliceHdr->slice_type = AVC_I_ALL_SLICE; 76 video->slice_type = AVC_I_SLICE; 123 sliceHdr->slice_type = AVC_I_ALL_SLICE; 124 video->slice_type = AVC_I_SLICE; 130 sliceHdr->slice_type = AVC_P_ALL_SLICE; 131 video->slice_type = AVC_P_SLICE; 708 if (video->slice_type == AVC_I_SLICE) 718 if (video->slice_type == AVC_I_SLICE) [all...] |
avcenc_lib.h | 192 \param "slice_type" "Value of slice_type - 5 if greater than 5." 195 AVCEnc_Status ref_pic_list_reordering(AVCCommonObj *video, AVCEncBitstream *stream, AVCSliceHeader *sliceHdr, int slice_type); [all...] |
/hardware/intel/common/libva/test/encode/ |
avcenc.c | 324 static void avcenc_update_picture_parameter(int slice_type, int frame_num, int display_num, int is_idr) 340 pic_param->pic_fields.bits.reference_pic_flag = (slice_type != SLICE_TYPE_B); 424 static void avcenc_update_slice_parameter(int slice_type) 436 slice_param->slice_type = slice_type; 448 if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { 457 if ((slice_type == SLICE_TYPE_B)) { 479 slice_param->slice_type = slice_type; [all...] |
/external/libvncserver/libvncclient/ |
h264.c | 76 static void h264_decode_frame(int f_width, int f_height, char *framedata, int framesize, int slice_type); 120 hdr.slice_type = rfbClientSwap32IfLE(hdr.slice_type); 128 DebugLog(("Reading %d bytes of frame data (type: %d)\n", hdr.nBytes, hdr.slice_type)); 155 h264_decode_frame(hdr.width, hdr.height, framedata, hdr.nBytes, hdr.slice_type); 272 static void h264_decode_frame(int f_width, int f_height, char *framedata, int framesize, int slice_type) 276 DebugLog(("%s: called for frame of %d bytes (%dx%d) slice_type=%d\n", __FUNCTION__, framesize, width, height, slice_type)); 296 if ( (slice_type != SLICE_TYPE_I) && (num_frames == 0) ) { 323 if (slice_type == SLICE_TYPE_P) [all...] |
/frameworks/av/media/libstagefright/codecs/avc/common/src/ |
reflist.cpp | 25 int slice_type = video->slice_type; local 32 if (slice_type == AVC_I_SLICE) 60 if (slice_type == AVC_P_SLICE) 143 int slice_type = video->slice_type; local 145 if (slice_type != AVC_I_SLICE)
|
/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...] |
/frameworks/av/media/libstagefright/codecs/avc/common/include/ |
avcint_common.h | 388 AVCSliceType slice_type; /* ue(v), Table 7-3, range 0..9 */ member in struct:tagSliceHeader 406 /* if(slice_type == B) */ 408 /* if(slice_type == P || slice_type==SP || slice_type==B) */ 437 /* if(entropy_coding_mode_flag && slice_type!=I && slice_type!=SI) */ 440 /* if(slice_type==SP || slice_type==SI) */ 441 /* if(slice_type==SP) * 659 AVCSliceType slice_type; member in struct:tagCommonObj [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
vbp_h264_parser.c | 314 ((h264_PtypeB == slice_header->slice_type) || 315 (h264_PtypeP == slice_header->slice_type))) 327 else if((i == 1) && (h264_PtypeB == slice_header->slice_type)) 371 if ((((h264_PtypeP == slice_header->slice_type) || 372 (h264_PtypeB == slice_header->slice_type)) && 374 ((h264_PtypeB == slice_header->slice_type) && [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:__anon42947
|
/hardware/intel/img/psb_video/src/ |
pnw_H264.c | 103 } SLICE_TYPE; [all...] |
/hardware/intel/img/psb_video/src/mrst/ |
psb_H264.c | 95 } SLICE_TYPE; [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_slice_header.c | 142 EPRINT("slice_type"); 752 /* slice_type */ 817 /* skip slice_type */ 898 /* skip slice_type */ 983 /* skip slice_type */ 1084 /* skip slice_type */ [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/libavc/decoder/ |
ih264d_thread_compute_bs.c | 250 (ps_dec->ps_computebs_cur_slice->slice_type == B_SLICE); 501 u1_slice_type = ps_dec->ps_computebs_cur_slice->slice_type;
|
ih264d_thread_parse_decode.c | 217 u1_slice_type = ps_dec->ps_decode_cur_slice->slice_type; 546 && (ps_dec->ps_decode_cur_slice->slice_type != B_SLICE)
|
/hardware/intel/common/libva/va/ |
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 */
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/include/ |
viddec_fw_frame_attr.h | 264 For H264, refer to "slice_type" in slice header (Table 7-6) in ITU-T H.264 Specification.
|
/hardware/intel/common/libmix/videoencoder/ |
VideoEncoderAVC.cpp | [all...] |