A59 -V1.1版本提交
This commit is contained in:
@ -89,8 +89,35 @@ struct IAACallbacks
|
||||
void* cb_ctx;
|
||||
};
|
||||
|
||||
typedef struct __auto_cfg_info
|
||||
{
|
||||
short width;//pixel
|
||||
short height;
|
||||
short density;
|
||||
short fps;
|
||||
char* wifi_ssid;
|
||||
char* wifi_passwd;
|
||||
char wifi_channel;
|
||||
bool disable_auto_audio;
|
||||
bool video_auto_start;
|
||||
|
||||
} auto_cfg_info;
|
||||
|
||||
extern auto_cfg_info *g_auto_link_info;
|
||||
|
||||
int android_auto_init(struct IAACallbacks* cbs);
|
||||
int android_auto_rfcomm_read_data_proc(char *buf, int len);
|
||||
void android_auto_start();
|
||||
void android_auto_set_rfcomm_info(const char * ssid, const char * passwd, const char * mac, int securityMode, const char * ip, int port);
|
||||
void android_auto_set_BT_paring_status(bool paired, const char *pinCode, int status);
|
||||
void android_auto_send_touch_event(unsigned int x, unsigned int y, int action);
|
||||
void android_auto_send_key_event(unsigned int keycode, int press);
|
||||
void android_auto_send_knob_event(unsigned int keycode, int delta);
|
||||
void android_auto_set_night_mode(bool night);
|
||||
|
||||
void android_auto_get_video_focus(int mode);
|
||||
void android_auto_release_video_focus(int mode);
|
||||
void android_auto_get_audio_focus(int mode);
|
||||
void android_auto_release_audio_focus(int mode);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user