OSDN Git Service

LinGui: Initial import
[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_EVENT_NONE,
25         GHB_EVENT_SCAN_DONE,
26         GHB_EVENT_WORKING,
27         GHB_EVENT_PAUSED,
28         GHB_EVENT_WORK_DONE,
29         GHB_EVENT_WORK_CANCELED
30 };
31
32 #define GHB_SCALE_KEEP_NONE 0
33 #define GHB_SCALE_KEEP_WIDTH 1
34 #define GHB_SCALE_KEEP_HEIGHT 2
35
36 typedef struct
37 {
38         gint width;
39         gint height;
40         gint crop[4];
41         gint num_chapters;
42         gint rate;
43         gint rate_base;
44         gint aspect_n;
45         gint aspect_d;
46         gint hours;
47         gint minutes;
48         gint seconds;
49 } ghb_title_info_t;
50
51 typedef struct
52 {
53         gint codec;
54         gint bitrate;
55         gint samplerate;
56 } ghb_audio_info_t;
57
58 #define GHB_AUDIO_SAMPLERATE 1
59 #define GHB_AUDIO_BITRATE 2
60 #define GHB_FRAMERATE 3
61
62 const gchar* ghb_version();
63 //const gchar* ghb_get_rate_string(gint rate, gint type);
64 void ghb_backend_init(GtkBuilder *builder, gint debug, gint update);
65 void ghb_add_job(job_settings_t *js, gint unique_id);
66 void ghb_remove_job(gint unique_id);
67 void ghb_start_queue();
68 void ghb_stop_queue();
69 void ghb_pause_queue();
70
71 gint ghb_backend_events(signal_user_data_t *ud, gint *unique_id);
72 void ghb_backend_scan(const gchar *path, gint titleindex);
73 gboolean ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex);
74 void ghb_set_scale(signal_user_data_t *ud, gint mode);
75 gchar ** ghb_get_chapters(gint titleindex);
76 gint ghb_get_best_mix(gint titleindex, gint track, gint acodec, gint mix);
77 gboolean ghb_audio_is_passthru(gint acodec);
78 gint ghb_get_default_acodec();
79 gboolean ghb_get_audio_info(ghb_audio_info_t *ainfo, gint titleindex, gint audioindex);
80 gboolean ghb_set_passthru_rate_opts(GtkBuilder *builder, gint bitrate);
81 gboolean ghb_set_default_rate_opts(GtkBuilder *builder);
82 void ghb_grey_combo_options(GtkBuilder *builder);
83 void ghb_update_ui_combo_box(GtkBuilder *builder, const gchar *name, gint user_data, gboolean all);
84 gint ghb_find_audio_track(gint titleindex, const gchar *lang, gint acodec);
85 gint ghb_longest_title();
86 gchar* ghb_build_x264opts_string(GHashTable *settings);
87 GdkPixbuf* ghb_get_preview_image(gint titleindex, gint index, GHashTable *settings, gboolean borders);
88 gint ghb_calculate_target_bitrate(GHashTable *settings, gint titleindex);
89 gchar* ghb_dvd_volname(const gchar *device);
90
91 gint ghb_guess_bitrate(GHashTable *settings);
92 gboolean ghb_validate_vquality(GHashTable *settings);
93 gboolean ghb_validate_audio(signal_user_data_t *ud);
94 gboolean ghb_validate_video(signal_user_data_t *ud);
95 #endif // _HBBACKEND_H_