| 1117 | } |
| 1118 | |
| 1119 | static media_frames_per_second make_fps(uint32_t num, uint32_t den) |
| 1120 | { |
| 1121 | media_frames_per_second fps{}; |
| 1122 | fps.numerator = num; |
| 1123 | fps.denominator = den; |
| 1124 | return fps; |
| 1125 | } |
| 1126 | |
| 1127 | static const common_frame_rate common_fps[] = { |
| 1128 | {"240", {240, 1}}, {"144", {144, 1}}, |
no outgoing calls
no test coverage detected