| 1062 | } |
| 1063 | |
| 1064 | G_MODULE_EXPORT void |
| 1065 | audio_track_changed_cb (GtkWidget *widget, gpointer data) |
| 1066 | { |
| 1067 | ghb_log_func(); |
| 1068 | signal_user_data_t *ud = ghb_ud(); |
| 1069 | ghb_widget_to_setting(ud->settings, widget); |
| 1070 | GhbValue *val = ghb_widget_value(widget); |
| 1071 | audio_update_setting(ghb_value_xform(val, GHB_INT), "Track", ud); |
| 1072 | ghb_value_free(&val); |
| 1073 | } |
| 1074 | |
| 1075 | G_MODULE_EXPORT void |
| 1076 | audio_mix_changed_cb (GtkWidget *widget, gpointer data) |
nothing calls this directly
no test coverage detected