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

Function audio_def_update_widgets

gtk/src/audiohandler.c:1654–1673  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1652}
1653
1654static void audio_def_update_widgets(GtkWidget *row, GhbValue *adict)
1655{
1656 GhbDictIter ti;
1657 const gchar *key;
1658 GhbValue *gval;
1659 GtkWidget *widget;
1660
1661 ti = ghb_dict_iter_init(adict);
1662
1663 block_updates = TRUE;
1664 while (ghb_dict_iter_next(adict, &ti, &key, &gval))
1665 {
1666 widget = find_widget(row, key);
1667 if (widget != NULL)
1668 {
1669 ghb_update_widget(widget, gval);
1670 }
1671 }
1672 block_updates = FALSE;
1673}
1674
1675static GtkListBoxRow*
1676audio_settings_get_row(GtkWidget *widget)

Callers 2

audio_def_setting_add_cbFunction · 0.85
ghb_audio_defaults_to_uiFunction · 0.85

Calls 2

ghb_update_widgetFunction · 0.85
find_widgetFunction · 0.70

Tested by

no test coverage detected