| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | #ifndef _UI_UPDATE_H |
|---|
| 41 | #define _UI_UPDATE_H |
|---|
| 42 | |
|---|
| 43 | struct session_tag; |
|---|
| 44 | struct s_rtcp_dbentry; |
|---|
| 45 | struct s_cbaddr; |
|---|
| 46 | struct s_mix_info; |
|---|
| 47 | |
|---|
| 48 | void ui_info_update_name(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 49 | void ui_info_update_cname(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 50 | void ui_info_update_email(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 51 | void ui_info_update_phone(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 52 | void ui_info_update_loc(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 53 | void ui_info_update_tool(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 54 | void ui_info_update_note(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 55 | void ui_info_mute(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 56 | void ui_info_remove(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 57 | void ui_info_activate(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 58 | void ui_info_deactivate(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 59 | |
|---|
| 60 | void ui_show_audio_busy(struct session_tag *s); |
|---|
| 61 | void ui_hide_audio_busy(struct session_tag *s); |
|---|
| 62 | void ui_input_level(struct session_tag *s, int level); |
|---|
| 63 | void ui_output_level(struct session_tag *s, int level); |
|---|
| 64 | void ui_update_input_gain(struct session_tag *sp); |
|---|
| 65 | void ui_update_output_gain(struct session_tag *sp); |
|---|
| 66 | void ui_update_input_port(struct session_tag *sp); |
|---|
| 67 | void ui_update_frequency(struct session_tag *sp); |
|---|
| 68 | void ui_update_channels(struct session_tag *sp); |
|---|
| 69 | void ui_update_output_port(struct session_tag *sp); |
|---|
| 70 | void ui_update_primary(struct session_tag *sp); |
|---|
| 71 | void ui_update_channel(struct session_tag *sp) ; |
|---|
| 72 | void ui_update_powermeters(struct session_tag *sp, struct s_mix_info *ms, int elapsed_time); |
|---|
| 73 | |
|---|
| 74 | void ui_update_stats(struct session_tag *s, struct s_rtcp_dbentry *e); |
|---|
| 75 | void ui_update_lecture_mode(struct session_tag *session_pointer); |
|---|
| 76 | void ui_update(struct session_tag *session_pointer); |
|---|
| 77 | void ui_update_loss(struct session_tag *s, char *srce, char *dest, int loss); |
|---|
| 78 | void ui_update_reception(struct session_tag *s, char *cname, u_int32 recv, u_int32 lost, u_int32 misordered, u_int32 duplicates, u_int32 jitter, int jit_tog); |
|---|
| 79 | void ui_update_duration(struct session_tag *s, char *cname, int duration); |
|---|
| 80 | |
|---|
| 81 | void ui_update_video_playout(struct session_tag *s, char *cname, int playout); |
|---|
| 82 | void ui_update_sync(struct session_tag *s, int sync); |
|---|
| 83 | void ui_update_key(struct session_tag *s, char *key); |
|---|
| 84 | |
|---|
| 85 | void ui_update_playback_file(struct session_tag *s, char *name); |
|---|
| 86 | void ui_update_record_file(struct session_tag *s, char *name); |
|---|
| 87 | void ui_update_file_live(struct session_tag *s, char *mode, int valid); |
|---|
| 88 | |
|---|
| 89 | void ui_codecs(struct session_tag *s, int pt); |
|---|
| 90 | void ui_converters(struct session_tag *s); |
|---|
| 91 | void ui_sampling_modes(struct session_tag *sp); |
|---|
| 92 | void ui_title(struct session_tag *sp); |
|---|
| 93 | void ui_controller_init(struct session_tag *s, char *cname, char *name_engine, char *name_ui, char *name_video); |
|---|
| 94 | void ui_load_settings(struct session_tag *s); |
|---|
| 95 | void ui_quit(struct session_tag *s); |
|---|
| 96 | |
|---|
| 97 | #endif |
|---|