| 2338 | } |
| 2339 | |
| 2340 | G_MODULE_EXPORT void |
| 2341 | audio_def_gain_changed_cb (GtkWidget *widget, gdouble gain, gpointer data) |
| 2342 | { |
| 2343 | signal_user_data_t *ud = ghb_ud(); |
| 2344 | audio_def_setting_update(ud, widget); |
| 2345 | |
| 2346 | GtkListBoxRow *row = audio_settings_get_row(widget); |
| 2347 | GtkWidget *gain_label = find_widget(GTK_WIDGET(row), "AudioTrackGainValue"); |
| 2348 | char *s_gain = get_gain_string(gain); |
| 2349 | ghb_update_widget(gain_label, ghb_string_value(s_gain)); |
| 2350 | g_free(s_gain); |
| 2351 | ghb_clear_presets_selection(ud); |
| 2352 | } |
| 2353 | |
| 2354 | G_MODULE_EXPORT void |
| 2355 | audio_def_drc_changed_cb (GtkWidget *widget, gdouble drc, gpointer data) |
nothing calls this directly
no test coverage detected