OSDN Git Service

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