Lines Matching full:fps
48 struct sti_fps_info *fps; in sti_plane_update_fps() local
54 fps = &plane->fps_info; in sti_plane_update_fps()
57 fps->curr_field_counter++; in sti_plane_update_fps()
59 /* do not perform fps calcul if new_frame is false */ in sti_plane_update_fps()
63 fps->curr_frame_counter++; in sti_plane_update_fps()
64 ms_since_last = ktime_to_ms(ktime_sub(now, fps->last_timestamp)); in sti_plane_update_fps()
65 num_frames = fps->curr_frame_counter - fps->last_frame_counter; in sti_plane_update_fps()
70 fps->last_timestamp = now; in sti_plane_update_fps()
71 fps->last_frame_counter = fps->curr_frame_counter; in sti_plane_update_fps()
76 "%-8s %4dx%-4d %.4s @ %3d.%-3.3d fps (%s)", in sti_plane_update_fps()
85 if (fps->curr_field_counter) { in sti_plane_update_fps()
87 num_fields = fps->curr_field_counter - fps->last_field_counter; in sti_plane_update_fps()
88 fps->last_field_counter = fps->curr_field_counter; in sti_plane_update_fps()
97 if (fps->output) in sti_plane_update_fps()