Home
last modified time | relevance | path

Searched refs:slice_type (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dh264_bitstream_parser.cc335 uint32_t slice_type; in ParseNonParameterSetNalu() local
336 RETURN_FALSE_ON_FAIL(slice_reader.ReadExponentialGolomb(&slice_type)); in ParseNonParameterSetNalu()
340 slice_type %= 5; in ParseNonParameterSetNalu()
387 if (slice_type == kSliceTypeB) { in ParseNonParameterSetNalu()
391 if (slice_type == kSliceTypeP || slice_type == kSliceTypeSp || in ParseNonParameterSetNalu()
392 slice_type == kSliceTypeB) { in ParseNonParameterSetNalu()
400 if (slice_type == kSliceTypeB) { in ParseNonParameterSetNalu()
417 if (slice_type % 5 != 2 && slice_type % 5 != 4) { in ParseNonParameterSetNalu()
441 if (slice_type % 5 == 1) { in ParseNonParameterSetNalu()
468 (slice_type == kSliceTypeP || slice_type == kSliceTypeSp)) || in ParseNonParameterSetNalu()
[all …]
/external/libvncserver/libvncclient/
Dh264.c76 … 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); in HandleH264()
128 DebugLog(("Reading %d bytes of frame data (type: %d)\n", hdr.nBytes, hdr.slice_type)); in HandleH264()
155 h264_decode_frame(hdr.width, hdr.height, framedata, hdr.nBytes, hdr.slice_type); in HandleH264()
272 …c void h264_decode_frame(int f_width, int f_height, char *framedata, int framesize, int slice_type) in h264_decode_frame() argument
276 …r frame of %d bytes (%dx%d) slice_type=%d\n", __FUNCTION__, framesize, width, height, slice_type)); in h264_decode_frame()
296 if ( (slice_type != SLICE_TYPE_I) && (num_frames == 0) ) { in h264_decode_frame()
323 if (slice_type == SLICE_TYPE_P) { in h264_decode_frame()
327 else if (slice_type != SLICE_TYPE_I) { in h264_decode_frame()
398 if (slice_type == SLICE_TYPE_I) { in h264_decode_frame()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DH264TrackImpl.java273 if (sh.slice_type == SliceHeader.SliceType.B) { in readSamples()
432 public SliceType slice_type; field in H264TrackImpl.SliceHeader
449 slice_type = SliceType.P; in SliceHeader()
454 slice_type = SliceType.B; in SliceHeader()
459 slice_type = SliceType.I; in SliceHeader()
464 slice_type = SliceType.SP; in SliceHeader()
469 slice_type = SliceType.SI; in SliceHeader()
500 ", slice_type=" + slice_type + in toString()
/external/libhevc/decoder/
Dihevcd_mv_merge.c824 WORD32 slice_type; in ihevcd_mv_merge() local
826 slice_type = ps_slice_hdr->i1_slice_type; in ihevcd_mv_merge()
832 if(slice_type == BSLICE) in ihevcd_mv_merge()
903 if(slice_type == PSLICE) in ihevcd_mv_merge()
913 if(slice_type == PSLICE) in ihevcd_mv_merge()
/external/libavc/decoder/
Dih264d_thread_parse_decode.c217 u1_slice_type = ps_dec->ps_decode_cur_slice->slice_type; in ih264d_decode_recon_tfr_nmb_thread()
546 && (ps_dec->ps_decode_cur_slice->slice_type != B_SLICE) in ih264d_decode_slice_thread()
Dih264d_thread_compute_bs.c250 (ps_dec->ps_computebs_cur_slice->slice_type == B_SLICE); in ih264d_compute_bs_non_mbaff_thread()
501 u1_slice_type = ps_dec->ps_computebs_cur_slice->slice_type; in ih264d_recon_deblk_slice()
Dih264d_structs.h667 volatile UWORD32 slice_type; member
Dih264d_parse_slice.c1835 ps_dec->ps_parse_cur_slice->slice_type = in ih264d_parse_decode_slice()
Dih264d_parse_pslice.c1705 ps_dec->ps_parse_cur_slice->slice_type = P_SLICE; in ih264d_mark_err_slice_skip()
/external/libvncserver/rfb/
Drfbproto.h885 uint32_t slice_type; member