OSDN Git Service

LinGui: fix audio preset initialization
[handbrake-jp/handbrake-jp-git.git] / gtk / src / hb-backend.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  * 
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU Library General Public License for more details.
11  * 
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
15  */
16  
17 #if !defined(_HBBACKEND_H_)
18 #define _HBBACKEND_H_
19
20 #include "settings.h"
21
22 enum
23 {
24         GHB_ERROR_NONE,
25         GHB_ERROR_CANCELED,
26         GHB_ERROR_FAIL,
27 };
28
29 typedef struct
30 {
31         gint state;
32
33         // SCANNING
34         gint title_count;
35         gint title_cur;
36
37         // WORKING
38         gint unique_id;
39         gint job_cur;
40         gint job_count;
41         gdouble progress;
42         gdouble rate_cur;
43         gdouble rate_avg;
44         gint hours;
45         gint minutes;
46         gint seconds;
47         gint error;
48 } ghb_instance_status_t;
49
50 typedef struct
51 {
52         ghb_instance_status_t scan;
53         ghb_instance_status_t queue;
54 } ghb_status_t;
55
56 #define GHB_PIC_KEEP_WIDTH          0x01
57 #define GHB_PIC_KEEP_HEIGHT         0x02
58 #define GHB_PIC_KEEP_DISPLAY_WIDTH  0x04
59 #define GHB_PIC_KEEP_DISPLAY_HEIGHT 0x08
60 #define GHB_PIC_KEEP_DAR            0x10
61 #define GHB_PIC_KEEP_PAR            0x20
62
63 typedef struct
64 {
65         gchar *path;
66         gchar *name;
67         gint index;
68         gint type;
69         gint width;
70         gint height;
71         gint crop[4];
72         gint num_chapters;
73         gint rate;
74         gint rate_base;
75         gint aspect_n;
76         gint aspect_d;
77         gint hours;
78         gint minutes;
79         gint seconds;
80         gint64 duration;
81         gint angle_count;
82 } ghb_title_info_t;
83
84 typedef struct
85 {
86         gint codec;
87         gint bitrate;
88         gint samplerate;
89 } ghb_audio_info_t;
90
91 #define GHB_AUDIO_SAMPLERATE 1
92 #define GHB_AUDIO_BITRATE 2
93 #define GHB_FRAMERATE 3
94
95 const gchar* ghb_version(void);
96 void ghb_vquality_range(
97         signal_user_data_t *ud, 
98         gdouble *min, 
99         gdouble *max,
100         gdouble *step,
101         gdouble *page,
102         gint *digits,
103         gboolean *inverted);
104 //const gchar* ghb_get_rate_string(gint rate, gint type);
105 void ghb_combo_init(signal_user_data_t *ud);
106 void ghb_backend_init(gint debug);
107 void ghb_backend_close(void);
108 void ghb_add_job(GValue *js, gint unique_id);
109 void ghb_remove_job(gint unique_id);
110 void ghb_start_queue(void);
111 void ghb_stop_queue(void);
112 void ghb_pause_queue(void);
113
114 void ghb_add_live_job(GValue *js, gint unique_id);
115 void ghb_start_live_encode();
116 void ghb_stop_live_encode();
117
118 void ghb_clear_scan_state(gint state);
119 void ghb_clear_queue_state(gint state);
120
121 void ghb_set_state(gint state);
122 gint ghb_get_scan_state();
123 gint ghb_get_queue_state();
124 void ghb_get_status(ghb_status_t *status);
125 void ghb_track_status(void);
126 void ghb_backend_scan(const gchar *path, gint titleindex, gint preview_count);
127 void ghb_backend_scan_stop();
128 void ghb_backend_queue_scan(const gchar *path, gint titleindex);
129 gboolean ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex);
130 void ghb_par_init(signal_user_data_t *ud);
131 void ghb_set_scale(signal_user_data_t *ud, gint mode);
132 GValue* ghb_get_chapters(gint titleindex);
133 void ghb_get_chapter_duration(gint ti, gint ii, gint *hh, gint *mm, gint *ss);
134 void ghb_part_duration(gint tt, gint sc, gint ec, gint *hh, gint *mm, gint *ss);
135 gint ghb_get_best_mix(gint titleindex, gint track, gint acodec, gint mix);
136 gboolean ghb_ac3_in_audio_list(const GValue *audio_list);
137 gboolean ghb_audio_is_passthru(gint acodec);
138 gint ghb_get_default_acodec(void);
139 gboolean ghb_get_audio_info(
140         ghb_audio_info_t *ainfo, gint titleindex, gint audioindex);
141 void ghb_set_passthru_bitrate_opts(GtkBuilder *builder, gint bitrate);
142 void ghb_set_default_bitrate_opts(
143         GtkBuilder *builder, gint first_rate, gint last_rate);
144 void ghb_grey_combo_options(GtkBuilder *builder);
145 void ghb_update_ui_combo_box(
146         signal_user_data_t *ud, const gchar *name, gint user_data, gboolean all);
147 gchar* ghb_get_source_audio_lang(gint titleindex, gint track);
148 gint ghb_find_audio_track(
149         gint titleindex, const gchar *lang, gint acodec, 
150         gint fallback_acodec, GHashTable *track_indices);
151 void ghb_add_all_subtitles(signal_user_data_t *ud, gint titleindex);
152 gint ghb_find_pref_subtitle_track(const gchar *lang);
153 gint ghb_find_subtitle_track(
154         gint titleindex, const gchar *lang, gboolean burn, 
155         gboolean force, gint source, GHashTable *track_indices);
156 gint ghb_pick_subtitle_track(signal_user_data_t *ud);
157 gint ghb_find_cc_track(gint titleindex);
158 gint ghb_longest_title(void);
159 gchar* ghb_build_x264opts_string(GValue *settings);
160 GdkPixbuf* ghb_get_preview_image(
161         gint titleindex, gint index, signal_user_data_t *ud,
162         gint *width, gint *height);
163 gint ghb_calculate_target_bitrate(GValue *settings, gint titleindex);
164 gchar* ghb_dvd_volname(const gchar *device);
165 gint ghb_get_title_number(gint titleindex);
166 gint ghb_subtitle_track_source(signal_user_data_t *ud, gint track);
167 const char* ghb_subtitle_track_source_name(signal_user_data_t *ud, gint track);
168 const char* ghb_subtitle_source_name(gint source);
169 gchar* ghb_subtitle_track_lang(signal_user_data_t *ud, gint track);
170
171 gboolean ghb_validate_vquality(GValue *settings);
172 gboolean ghb_validate_audio(signal_user_data_t *ud);
173 gboolean ghb_validate_subtitles(signal_user_data_t *ud);
174 gboolean ghb_validate_video(signal_user_data_t *ud);
175 gboolean ghb_validate_filters(signal_user_data_t *ud);
176 gboolean ghb_validate_filter_string(const gchar *str, gint max_fields);
177 void ghb_hb_cleanup(gboolean partial);
178 gint ghb_lookup_combo_int(const gchar *name, const GValue *gval);
179 gdouble ghb_lookup_combo_double(const gchar *name, const GValue *gval);
180 const gchar* ghb_lookup_combo_option(const gchar *name, const GValue *gval);
181 const gchar* ghb_lookup_combo_string(const gchar *name, const GValue *gval);
182 gchar* ghb_get_tmp_dir();
183 gint ghb_select_audio_codec(signal_user_data_t *ud, gint track);
184 const gchar* ghb_select_audio_codec_str(signal_user_data_t *ud, gint track);
185 gint ghb_find_closest_audio_bitrate(gint codec, gint rate);
186 gint ghb_find_closest_audio_rate(gint rate);
187 GValue* ghb_lookup_acodec_value(gint val);
188
189 #endif // _HBBACKEND_H_