| 1687 | } |
| 1688 | |
| 1689 | const hb_rate_t* |
| 1690 | ghb_settings_audio_samplerate(const GhbValue *settings, const char *name) |
| 1691 | { |
| 1692 | const hb_rate_t *result; |
| 1693 | char *rate_id = ghb_dict_get_string_xform(settings, name); |
| 1694 | result = ghb_lookup_audio_samplerate(rate_id); |
| 1695 | g_free(rate_id); |
| 1696 | return result; |
| 1697 | } |
| 1698 | |
| 1699 | static void |
| 1700 | video_framerate_opts_set(signal_user_data_t *ud, const gchar *name, |
nothing calls this directly
no test coverage detected