OSDN Git Service

mkv soft subtitle support
[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         gint width;
66         gint height;
67         gint crop[4];
68         gint num_chapters;
69         gint rate;
70         gint rate_base;
71         gint aspect_n;
72         gint aspect_d;
73         gint hours;
74         gint minutes;
75         gint seconds;
76         gint64 duration;
77         gint angle_count;
78 } ghb_title_info_t;
79
80 typedef struct
81 {
82         gint codec;
83         gint bitrate;
84         gint samplerate;
85 } ghb_audio_info_t;
86
87 #define GHB_AUDIO_SAMPLERATE 1
88 #define GHB_AUDIO_BITRATE 2
89 #define GHB_FRAMERATE 3
90
91 const gchar* ghb_version(void);
92 void ghb_vquality_range(
93         signal_user_data_t *ud, 
94         gdouble *min, 
95         gdouble *max,
96         gdouble *step,
97         gdouble *page,
98         gint *digits,
99         gboolean *inverted);
100 //const gchar* ghb_get_rate_string(gint rate, gint type);
101 void ghb_combo_init(signal_user_data_t *ud);
102 void ghb_backend_init(gint debug);
103 void ghb_backend_close(void);
104 void ghb_add_job(GValue *js, gint unique_id);
105 void ghb_remove_job(gint unique_id);
106 void ghb_start_queue(void);
107 void ghb_stop_queue(void);
108 void ghb_pause_queue(void);
109
110 void ghb_add_live_job(GValue *js, gint unique_id);
111 void ghb_start_live_encode();
112 void ghb_stop_live_encode();
113
114 void ghb_clear_scan_state(gint state);
115 void ghb_clear_queue_state(gint state);
116
117 void ghb_set_state(gint state);
118 gint ghb_get_scan_state();
119 gint ghb_get_queue_state();
120 void ghb_get_status(ghb_status_t *status);
121 void ghb_track_status(void);
122 void ghb_backend_scan(const gchar *path, gint titleindex, gint preview_count);
123 void ghb_backend_queue_scan(const gchar *path, gint titleindex);
124 gboolean ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex);
125 void ghb_par_init(signal_user_data_t *ud);
126 void ghb_set_scale(signal_user_data_t *ud, gint mode);
127 GValue* ghb_get_chapters(gint titleindex);
128 void ghb_get_chapter_duration(gint ti, gint ii, gint *hh, gint *mm, gint *ss);
129 gint ghb_get_best_mix(gint titleindex, gint track, gint acodec, gint mix);
130 gboolean ghb_ac3_in_audio_list(const GValue *audio_list);
131 gboolean ghb_audio_is_passthru(gint acodec);
132 gint ghb_get_default_acodec(void);
133 gboolean ghb_get_audio_info(
134         ghb_audio_info_t *ainfo, gint titleindex, gint audioindex);
135 void ghb_set_passthru_bitrate_opts(GtkBuilder *builder, gint bitrate);
136 void ghb_set_default_bitrate_opts(GtkBuilder *builder, gint last_rate);
137 void ghb_grey_combo_options(GtkBuilder *builder);
138 void ghb_update_ui_combo_box(
139         signal_user_data_t *ud, const gchar *name, gint user_data, gboolean all);
140 gint ghb_find_audio_track(
141         gint titleindex, const gchar *lang, gint acodec, GHashTable *track_indices);
142 gint ghb_find_subtitle_track(
143         gint titleindex, const gchar *lang, GHashTable *track_indices);
144 gint ghb_pick_subtitle_track(signal_user_data_t *ud);
145 gint ghb_longest_title(void);
146 gchar* ghb_build_x264opts_string(GValue *settings);
147 GdkPixbuf* ghb_get_preview_image(
148         gint titleindex, gint index, signal_user_data_t *ud,
149         gint *width, gint *height);
150 gint ghb_calculate_target_bitrate(GValue *settings, gint titleindex);
151 gchar* ghb_dvd_volname(const gchar *device);
152 gint ghb_get_title_number(gint titleindex);
153 gint ghb_subtitle_track_source(signal_user_data_t *ud, gint track);
154 const char* ghb_subtitle_track_source_name(signal_user_data_t *ud, gint track);
155
156 gboolean ghb_validate_vquality(GValue *settings);
157 gboolean ghb_validate_audio(signal_user_data_t *ud);
158 gboolean ghb_validate_video(signal_user_data_t *ud);
159 gboolean ghb_validate_filters(signal_user_data_t *ud);
160 gboolean ghb_validate_filter_string(const gchar *str, gint max_fields);
161 void ghb_hb_cleanup(gboolean partial);
162 gint ghb_lookup_combo_int(const gchar *name, const GValue *gval);
163 gdouble ghb_lookup_combo_double(const gchar *name, const GValue *gval);
164 const gchar* ghb_lookup_combo_option(const gchar *name, const GValue *gval);
165 const gchar* ghb_lookup_combo_string(const gchar *name, const GValue *gval);
166 gchar* ghb_get_tmp_dir();
167
168 #endif // _HBBACKEND_H_