Home | History | Annotate | Download | only in libvncclient

Lines Matching refs:slice_type

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) {
327 else if (slice_type != SLICE_TYPE_I) {
398 if (slice_type == SLICE_TYPE_I) {
550 p->slice_type = 2;