| 1598 | } |
| 1599 | |
| 1600 | static void |
| 1601 | audio_samplerate_opts_set(signal_user_data_t *ud, const gchar *name, |
| 1602 | void *opts, const void* data) |
| 1603 | { |
| 1604 | (void)opts; // Silence "unused variable" warning |
| 1605 | (void)data; // Silence "unused variable" warning |
| 1606 | |
| 1607 | GtkComboBox *combo = GTK_COMBO_BOX(ghb_builder_widget(name)); |
| 1608 | ghb_audio_samplerate_opts_set(combo); |
| 1609 | } |
| 1610 | |
| 1611 | void |
| 1612 | ghb_audio_samplerate_opts_filter(GtkComboBox *combo, gint acodec) |
nothing calls this directly
no test coverage detected