1d97d7213d
Add an option to limit the capture frame rate. It only works for devices with Android >= 10. Fixes <https://github.com/Genymobile/scrcpy/issues/488>
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
#ifndef SCRCPY_H
|
|
#define SCRCPY_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "config.h"
|
|
#include "input_manager.h"
|
|
#include "recorder.h"
|
|
|
|
struct scrcpy_options {
|
|
const char *serial;
|
|
const char *crop;
|
|
const char *record_filename;
|
|
const char *window_title;
|
|
const char *push_target;
|
|
enum recorder_format record_format;
|
|
uint16_t port;
|
|
uint16_t max_size;
|
|
uint32_t bit_rate;
|
|
uint16_t max_fps;
|
|
int16_t window_x;
|
|
int16_t window_y;
|
|
uint16_t window_width;
|
|
uint16_t window_height;
|
|
bool show_touches;
|
|
bool fullscreen;
|
|
bool always_on_top;
|
|
bool control;
|
|
bool display;
|
|
bool turn_screen_off;
|
|
bool render_expired_frames;
|
|
bool prefer_text;
|
|
bool window_borderless;
|
|
};
|
|
|
|
#define SCRCPY_OPTIONS_DEFAULT { \
|
|
.serial = NULL, \
|
|
.crop = NULL, \
|
|
.record_filename = NULL, \
|
|
.window_title = NULL, \
|
|
.push_target = NULL, \
|
|
.record_format = RECORDER_FORMAT_AUTO, \
|
|
.port = DEFAULT_LOCAL_PORT, \
|
|
.max_size = DEFAULT_LOCAL_PORT, \
|
|
.bit_rate = DEFAULT_BIT_RATE, \
|
|
.max_fps = 0, \
|
|
.window_x = -1, \
|
|
.window_y = -1, \
|
|
.window_width = 0, \
|
|
.window_height = 0, \
|
|
.show_touches = false, \
|
|
.fullscreen = false, \
|
|
.always_on_top = false, \
|
|
.control = true, \
|
|
.display = true, \
|
|
.turn_screen_off = false, \
|
|
.render_expired_frames = false, \
|
|
.prefer_text = false, \
|
|
.window_borderless = false, \
|
|
}
|
|
|
|
bool
|
|
scrcpy(const struct scrcpy_options *options);
|
|
|
|
#endif
|