| 3549 | } |
| 3550 | |
| 3551 | const hb_rate_t* |
| 3552 | ghb_settings_audio_bitrate(const GhbValue *settings, const char *name) |
| 3553 | { |
| 3554 | const hb_rate_t *result; |
| 3555 | char *rate_id = ghb_dict_get_string_xform(settings, name); |
| 3556 | result = ghb_lookup_audio_bitrate(rate_id); |
| 3557 | g_free(rate_id); |
| 3558 | return result; |
| 3559 | } |
| 3560 | |
| 3561 | static ghb_status_t hb_status; |
| 3562 |
nothing calls this directly
no test coverage detected