OSDN Git Service

import 0.9.3
[handbrake-jp/handbrake-jp.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 ghb_status_s
30 {
31         gint state;
32         gint queue_state;
33
34         // SCANNING
35         gint title_count;
36         gint title_cur;
37
38         // WORKING
39         gint unique_id;
40         gint job_cur;
41         gint job_count;
42         gdouble progress;
43         gdouble rate_cur;
44         gdouble rate_avg;
45         gint hours;
46         gint minutes;
47         gint seconds;
48         gint error;
49 } ghb_status_t;
50
51 #define GHB_SCALE_KEEP_NONE 0
52 #define GHB_SCALE_KEEP_WIDTH 1
53 #define GHB_SCALE_KEEP_HEIGHT 2
54
55 typedef struct
56 {
57         gint width;
58         gint height;
59         gint crop[4];
60         gint num_chapters;
61         gint rate;
62         gint rate_base;
63         gint aspect_n;
64         gint aspect_d;
65         gint hours;
66         gint minutes;
67         gint seconds;
68         gint64 duration;
69 } ghb_title_info_t;
70
71 typedef struct
72 {
73         gint codec;
74         gint bitrate;
75         gint samplerate;
76 } ghb_audio_info_t;
77
78 #define GHB_AUDIO_SAMPLERATE 1
79 #define GHB_AUDIO_BITRATE 2
80 #define GHB_FRAMERATE 3
81
82 const gchar* ghb_version(void);
83 void ghb_vquality_range(
84         signal_user_data_t *ud, 
85         gdouble *min, 
86         gdouble *max,
87         gdouble *step,
88         gdouble *page,
89         gint *digits);
90 //const gchar* ghb_get_rate_string(gint rate, gint type);
91 void ghb_backend_init(GtkBuilder *builder, gint debug, gint update);
92 void ghb_backend_close(void);
93 void ghb_add_job(GValue *js, gint unique_id);
94 void ghb_remove_job(gint unique_id);
95 void ghb_start_queue(void);
96 void ghb_stop_queue(void);
97 void ghb_pause_queue(void);
98
99 gint ghb_get_state(void);
100 void ghb_clear_state(gint state);
101 void ghb_clear_queue_state(gint state);
102
103 void ghb_set_state(gint state);
104 gint ghb_get_queue_state();
105 void ghb_get_status(ghb_status_t *status);
106 void ghb_track_status(void);
107 void ghb_backend_scan(const gchar *path, gint titleindex);
108 void ghb_backend_queue_scan(const gchar *path, gint titleindex);
109 gboolean ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex);
110 void ghb_set_scale(signal_user_data_t *ud, gint mode);
111 GValue* ghb_get_chapters(gint titleindex);
112 gint ghb_get_best_mix(gint titleindex, gint track, gint acodec, gint mix);
113 gboolean ghb_ac3_in_audio_list(const GValue *audio_list);
114 gboolean ghb_audio_is_passthru(gint acodec);
115 gint ghb_get_default_acodec(void);
116 gboolean ghb_get_audio_info(
117         ghb_audio_info_t *ainfo, gint titleindex, gint audioindex);
118 void ghb_set_passthru_bitrate_opts(GtkBuilder *builder, gint bitrate);
119 void ghb_set_default_bitrate_opts(GtkBuilder *builder, gint last_rate);
120 void ghb_grey_combo_options(GtkBuilder *builder);
121 void ghb_update_ui_combo_box(
122         GtkBuilder *builder, const gchar *name, gint user_data, gboolean all);
123 gint ghb_find_audio_track(gint titleindex, const gchar *lang, gint index);
124 gint ghb_longest_title(void);
125 gchar* ghb_build_x264opts_string(GValue *settings);
126 GdkPixbuf* ghb_get_preview_image(
127         gint titleindex, gint index, GValue *settings, gboolean borders);
128 gint ghb_calculate_target_bitrate(GValue *settings, gint titleindex);
129 gchar* ghb_dvd_volname(const gchar *device);
130 gint ghb_get_title_number(gint titleindex);
131
132 gboolean ghb_validate_vquality(GValue *settings);
133 gboolean ghb_validate_audio(signal_user_data_t *ud);
134 gboolean ghb_validate_video(signal_user_data_t *ud);
135 gboolean ghb_validate_filters(signal_user_data_t *ud);
136 gboolean ghb_validate_filter_string(const gchar *str, gint max_fields);
137 void ghb_hb_cleanup(gboolean partial);
138 gint ghb_lookup_combo_int(const gchar *name, const GValue *acodec);
139 const gchar* ghb_lookup_combo_option(const gchar *name, const GValue *acodec);
140
141 #endif // _HBBACKEND_H_