MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / audio_name_changed_cb

Function audio_name_changed_cb

gtk/src/audiohandler.c:1083–1097  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1081}
1082
1083G_MODULE_EXPORT void
1084audio_name_changed_cb (GtkWidget *widget, gpointer data)
1085{
1086 signal_user_data_t *ud = ghb_ud();
1087 ghb_widget_to_setting(ud->settings, widget);
1088 const char *s = ghb_dict_get_string(ud->settings, "AudioTrackName");
1089 if (s != NULL && s[0] != 0)
1090 {
1091 audio_update_setting(ghb_widget_value(widget), "Name", ud);
1092 }
1093 else
1094 {
1095 audio_update_setting(NULL, "Name", ud);
1096 }
1097}
1098
1099G_MODULE_EXPORT void
1100audio_bitrate_changed_cb (GtkWidget *widget, gpointer data)

Callers

nothing calls this directly

Calls 5

ghb_udFunction · 0.85
ghb_widget_to_settingFunction · 0.85
ghb_dict_get_stringFunction · 0.85
audio_update_settingFunction · 0.85
ghb_widget_valueFunction · 0.85

Tested by

no test coverage detected