Home | History | Annotate | Download | only in libvncclient

Lines Matching full:f_height

76 static void h264_decode_frame(int f_width, int f_height, char *framedata, int framesize, int slice_type);
81 static void put_updated_rectangle(rfbClient *client, int x, int y, int width, int height, int f_width, int f_height, int first_for_frame);
272 static void h264_decode_frame(int f_width, int f_height, char *framedata, int framesize, int slice_type)
279 if ( (f_width > cur_width) || (f_height > cur_height) ) {
283 cur_height = f_height;
285 h264_init_decoder(f_width, f_height);
320 SetVAPictureParameterBufferH264(pic_param_buf, f_width, f_height);
465 static void put_updated_rectangle(rfbClient *client, int x, int y, int width, int height, int f_width, int f_height, int first_for_frame)
478 va_status = vaPutSurface(va_dpy, curr_surface, client->outputWindow, 0, 0, f_width, f_height, 0, 0, f_width, f_height, NULL, 0, VA_FRAME_PICTURE);