OSDN Git Service

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