diff options
author | jstebbins <[email protected]> | 2014-02-23 20:03:32 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-02-23 20:03:32 +0000 |
commit | c83b6e95ade4d9b1c908093fdb56315fc8f8aacc (patch) | |
tree | 39684e66b1550be86b15998981659c40fc7e8e60 /gtk/src/hb-backend.h | |
parent | 45bee35a201f51f72c62ee89fa4b287ea35493d5 (diff) |
LinGui: rework how hb audio encoders are referenced from lingui
Cleans up the interface and fixes failure to use fallbacks properly
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6068 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.h')
-rw-r--r-- | gtk/src/hb-backend.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk/src/hb-backend.h b/gtk/src/hb-backend.h index 26dce0eda..de5708701 100644 --- a/gtk/src/hb-backend.h +++ b/gtk/src/hb-backend.h @@ -154,7 +154,6 @@ const gchar* ghb_lookup_combo_option(const gchar *name, const GValue *gval); const gchar* ghb_lookup_combo_string(const gchar *name, const GValue *gval); gchar* ghb_get_tmp_dir(); gint ghb_find_closest_audio_samplerate(gint rate); -GValue* ghb_lookup_audio_encoder_value(gint val); void ghb_init_lang_list_box(GtkListBox *list_box); @@ -174,5 +173,10 @@ gchar* ghb_create_title_label(const hb_title_t *title); // libhb lookup helpers const hb_title_t* ghb_lookup_title(int title_id, int *index); const hb_container_t* ghb_lookup_container_by_name(const gchar *name); +const hb_encoder_t* ghb_lookup_audio_encoder(const char *name); +int ghb_lookup_audio_encoder_codec(const char *name); +int ghb_settings_audio_encoder_codec(const GValue *settings, const char *name); +const hb_encoder_t* ghb_settings_audio_encoder( + const GValue *settings, const char *name); #endif // _HBBACKEND_H_ |