OSDN Git Service

0361cb7201ec912cc17218476f53d82f61272e4b
[handbrake-jp/handbrake-jp-git.git] / gtk / src / hb-backend.c
1 /***************************************************************************
2  *            hb-backend.c
3  *
4  *  Fri Mar 28 10:38:44 2008
5  *  Copyright  2008  John Stebbins
6  *  <john at stebbins dot name>
7  ****************************************************************************/
8
9 /*
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Library General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
23  */
24 #define _GNU_SOURCE
25 #include <limits.h>
26 #include <math.h>
27 #include "hb.h"
28 #include <gtk/gtk.h>
29 #include <glib/gstdio.h>
30 #include "hb-backend.h"
31 #include "settings.h"
32 #include "callbacks.h"
33 #include "subtitlehandler.h"
34 #include "preview.h"
35 #include "values.h"
36 #include "lang.h"
37
38 typedef struct
39 {
40         const gchar *option;
41         const gchar *shortOpt;
42         gdouble ivalue;
43         const gchar *svalue;
44 } options_map_t;
45
46 typedef struct
47 {
48         gint count;
49         options_map_t *map;
50 } combo_opts_t;
51
52 static gchar **index_str = NULL;
53 static gint index_str_size = 0;
54
55 static void 
56 index_str_init(gint max_index)
57 {
58         int ii;
59
60         if (max_index+1 > index_str_size)
61         {
62                 index_str = realloc(index_str, (max_index+1) * sizeof(char*));
63                 for (ii = index_str_size; ii <= max_index; ii++)
64                 {
65                         index_str[ii] = g_strdup_printf("%d", ii);
66                 }
67                 index_str_size = max_index + 1;
68         }
69 }
70
71 static options_map_t d_par_opts[] =
72 {
73         {"Off", "0", 0, "0"},
74         {"Strict", "1", 1, "1"},
75         {"Loose", "2", 2, "2"},
76         {"Custom", "3", 3, "3"},
77 };
78 combo_opts_t par_opts =
79 {
80         sizeof(d_par_opts)/sizeof(options_map_t),
81         d_par_opts
82 };
83
84 static options_map_t d_alignment_opts[] =
85 {
86         {"2", "2", 2, "2"},
87         {"4", "4", 4, "4"},
88         {"8", "8", 8, "8"},
89         {"16", "16", 16, "16"},
90 };
91 combo_opts_t alignment_opts =
92 {
93         sizeof(d_alignment_opts)/sizeof(options_map_t),
94         d_alignment_opts
95 };
96
97 static options_map_t d_logging_opts[] =
98 {
99         {"0", "0", 0, "0"},
100         {"1", "1", 1, "1"},
101         {"2", "2", 2, "2"},
102 };
103 combo_opts_t logging_opts =
104 {
105         sizeof(d_logging_opts)/sizeof(options_map_t),
106         d_logging_opts
107 };
108
109 static options_map_t d_vqual_granularity_opts[] =
110 {
111         {"0.2",  "0.2",  0.2,  "0.2"},
112         {"0.25", "0.25", 0.25, "0.25"},
113         {"0.5",  "0.5",  0.5,  "0.5"},
114         {"1",    "1",    1,    "1"},
115 };
116 combo_opts_t vqual_granularity_opts =
117 {
118         sizeof(d_vqual_granularity_opts)/sizeof(options_map_t),
119         d_vqual_granularity_opts
120 };
121
122 static options_map_t d_container_opts[] =
123 {
124         {"MKV", "mkv", HB_MUX_MKV, "mkv"},
125         {"MP4", "mp4", HB_MUX_MP4, "mp4"},
126         {"M4V", "m4v", HB_MUX_MP4, "m4v"},
127 };
128 combo_opts_t container_opts =
129 {
130         sizeof(d_container_opts)/sizeof(options_map_t),
131         d_container_opts
132 };
133
134 static options_map_t d_detel_opts[] =
135 {
136         {"None",   "none",   0, ""},
137         {"Custom", "custom", 1, ""},
138         {"Default","default",2, NULL},
139 };
140 combo_opts_t detel_opts =
141 {
142         sizeof(d_detel_opts)/sizeof(options_map_t),
143         d_detel_opts
144 };
145
146 static options_map_t d_decomb_opts[] =
147 {
148         {"None",   "none",   0, ""},
149         {"Custom", "custom", 1, ""},
150         {"Default","default",2, NULL},
151 };
152 combo_opts_t decomb_opts =
153 {
154         sizeof(d_decomb_opts)/sizeof(options_map_t),
155         d_decomb_opts
156 };
157
158 static options_map_t d_deint_opts[] =
159 {
160         {"None",   "none",   0, ""},
161         {"Custom", "custom", 1, ""},
162         {"Fast",   "fast",   2, "-1:-1:-1:0:1"},
163         {"Slow",   "slow",   3, "2:-1:-1:0:1"},
164         {"Slower", "slower", 4, "0:-1:-1:0:1"},
165 };
166 combo_opts_t deint_opts =
167 {
168         sizeof(d_deint_opts)/sizeof(options_map_t),
169         d_deint_opts
170 };
171
172 static options_map_t d_denoise_opts[] =
173 {
174         {"None",   "none",   0, ""},
175         {"Custom", "custom", 1, ""},
176         {"Weak",   "weak",   2, "2:1:2:3"},
177         {"Medium", "medium", 3, "3:2:2:3"},
178         {"Strong", "strong", 4, "7:7:5:5"},
179 };
180 combo_opts_t denoise_opts =
181 {
182         sizeof(d_denoise_opts)/sizeof(options_map_t),
183         d_denoise_opts
184 };
185
186 static options_map_t d_vcodec_opts[] =
187 {
188         {"H.264 (x264)",    "x264",   HB_VCODEC_X264, ""},
189         {"MPEG-4 (FFMPEG)", "ffmpeg", HB_VCODEC_FFMPEG, ""},
190         {"Theora",          "theora", HB_VCODEC_THEORA, ""},
191 };
192 combo_opts_t vcodec_opts =
193 {
194         sizeof(d_vcodec_opts)/sizeof(options_map_t),
195         d_vcodec_opts
196 };
197
198 static options_map_t d_acodec_opts[] =
199 {
200         {"AAC (faac)",      "faac",   HB_ACODEC_FAAC, "faac"},
201         {"MP3 (lame)",      "lame",   HB_ACODEC_LAME, "lame"},
202         {"Vorbis",          "vorbis", HB_ACODEC_VORBIS, "vorbis"},
203         {"AC3 (pass-thru)", "ac3",    HB_ACODEC_AC3, "ac3"},
204         {"DTS (pass-thru)", "dts",    HB_ACODEC_DCA, "dts"},
205         {"Auto Pass-Thru", "auto",    HB_ACODEC_DCA|HB_ACODEC_AC3, "auto"},
206 };
207 combo_opts_t acodec_opts =
208 {
209         sizeof(d_acodec_opts)/sizeof(options_map_t),
210         d_acodec_opts
211 };
212
213 static options_map_t d_direct_opts[] =
214 {
215         {"None",      "none",     0, "none"},
216         {"Spatial",   "spatial",  1, "spatial"},
217         {"Temporal",  "temporal", 2, "temporal"},
218         {"Automatic", "auto",     3, "auto"},
219 };
220 combo_opts_t direct_opts =
221 {
222         sizeof(d_direct_opts)/sizeof(options_map_t),
223         d_direct_opts
224 };
225
226 static options_map_t d_badapt_opts[] =
227 {
228         {"Off",             "0", 0, "0"},
229         {"Fast",            "1", 1, "1"},
230         {"Optimal",         "2", 2, "2"},
231 };
232 combo_opts_t badapt_opts =
233 {
234         sizeof(d_badapt_opts)/sizeof(options_map_t),
235         d_badapt_opts
236 };
237
238 static options_map_t d_me_opts[] =
239 {
240         {"Diamond",              "dia",  0, "dia"},
241         {"Hexagon",              "hex",  1, "hex"},
242         {"Uneven Multi-Hexagon", "umh",  2, "umh"},
243         {"Exhaustive",           "esa",  3, "esa"},
244         {"Hadamard Exhaustive",  "tesa", 4, "tesa"},
245 };
246 combo_opts_t me_opts =
247 {
248         sizeof(d_me_opts)/sizeof(options_map_t),
249         d_me_opts
250 };
251
252 static options_map_t d_subme_opts[] =
253 {
254         {"1", "1", 1, "1"},
255         {"2", "2", 2, "2"},
256         {"3", "3", 3, "3"},
257         {"4", "4", 4, "4"},
258         {"5", "5", 5, "5"},
259         {"6", "6", 6, "6"},
260         {"7", "7", 7, "7"},
261         {"8", "8", 8, "8"},
262         {"9", "9", 9, "9"},
263 };
264 combo_opts_t subme_opts =
265 {
266         sizeof(d_subme_opts)/sizeof(options_map_t),
267         d_subme_opts
268 };
269
270 static options_map_t d_analyse_opts[] =
271 {
272         {"Some", "some", 0, "some"},
273         {"None", "none", 1, "none"},
274         {"All",  "all",  2, "all"},
275         {"Custom",  "custom",  3, "all"},
276 };
277 combo_opts_t analyse_opts =
278 {
279         sizeof(d_analyse_opts)/sizeof(options_map_t),
280         d_analyse_opts
281 };
282
283 static options_map_t d_trellis_opts[] =
284 {
285         {"Disabled",          "0", 0, "0"},
286         {"Final Macro Block", "1", 1, "1"},
287         {"Always",            "2", 2, "2"},
288 };
289 combo_opts_t trellis_opts =
290 {
291         sizeof(d_trellis_opts)/sizeof(options_map_t),
292         d_trellis_opts
293 };
294
295 combo_opts_t subtitle_opts =
296 {
297         0,
298         NULL
299 };
300
301 combo_opts_t title_opts =
302 {
303         0,
304         NULL
305 };
306
307 combo_opts_t audio_track_opts =
308 {
309         0,
310         NULL
311 };
312
313 typedef struct
314 {
315         const gchar *name;
316         combo_opts_t *opts;
317 } combo_name_map_t;
318
319 combo_name_map_t combo_name_map[] =
320 {
321         {"PicturePAR", &par_opts},
322         {"PictureModulus", &alignment_opts},
323         {"LoggingLevel", &logging_opts},
324         {"VideoQualityGranularity", &vqual_granularity_opts},
325         {"FileFormat", &container_opts},
326         {"PictureDeinterlace", &deint_opts},
327         {"PictureDecomb", &decomb_opts},
328         {"PictureDetelecine", &detel_opts},
329         {"PictureDenoise", &denoise_opts},
330         {"VideoEncoder", &vcodec_opts},
331         {"AudioEncoder", &acodec_opts},
332         {"x264_direct", &direct_opts},
333         {"x264_b_adapt", &badapt_opts},
334         {"x264_me", &me_opts},
335         {"x264_subme", &subme_opts},
336         {"x264_analyse", &analyse_opts},
337         {"x264_trellis", &trellis_opts},
338         {"SubtitleTrack", &subtitle_opts},
339         {"title", &title_opts},
340         {"AudioTrack", &audio_track_opts},
341         {NULL, NULL}
342 };
343
344 #if 0
345 typedef struct iso639_lang_t
346 {
347     char * eng_name;        /* Description in English */
348     char * native_name;     /* Description in native language */
349     char * iso639_1;       /* ISO-639-1 (2 characters) code */
350     char * iso639_2;        /* ISO-639-2/t (3 character) code */
351     char * iso639_2b;       /* ISO-639-2/b code (if different from above) */
352 } iso639_lang_t;
353 #endif
354
355 const iso639_lang_t ghb_language_table[] =
356
357         { "Any", "", "zz", "und" },
358         { "Afar", "", "aa", "aar" },
359         { "Abkhazian", "", "ab", "abk" },
360         { "Afrikaans", "", "af", "afr" },
361         { "Akan", "", "ak", "aka" },
362         { "Albanian", "", "sq", "sqi", "alb" },
363         { "Amharic", "", "am", "amh" },
364         { "Arabic", "", "ar", "ara" },
365         { "Aragonese", "", "an", "arg" },
366         { "Armenian", "", "hy", "hye", "arm" },
367         { "Assamese", "", "as", "asm" },
368         { "Avaric", "", "av", "ava" },
369         { "Avestan", "", "ae", "ave" },
370         { "Aymara", "", "ay", "aym" },
371         { "Azerbaijani", "", "az", "aze" },
372         { "Bashkir", "", "ba", "bak" },
373         { "Bambara", "", "bm", "bam" },
374         { "Basque", "", "eu", "eus", "baq" },
375         { "Belarusian", "", "be", "bel" },
376         { "Bengali", "", "bn", "ben" },
377         { "Bihari", "", "bh", "bih" },
378         { "Bislama", "", "bi", "bis" },
379         { "Bosnian", "", "bs", "bos" },
380         { "Breton", "", "br", "bre" },
381         { "Bulgarian", "", "bg", "bul" },
382         { "Burmese", "", "my", "mya", "bur" },
383         { "Catalan", "", "ca", "cat" },
384         { "Chamorro", "", "ch", "cha" },
385         { "Chechen", "", "ce", "che" },
386         { "Chinese", "", "zh", "zho", "chi" },
387         { "Church Slavic", "", "cu", "chu" },
388         { "Chuvash", "", "cv", "chv" },
389         { "Cornish", "", "kw", "cor" },
390         { "Corsican", "", "co", "cos" },
391         { "Cree", "", "cr", "cre" },
392         { "Czech", "", "cs", "ces", "cze" },
393         { "Danish", "Dansk", "da", "dan" },
394         { "Divehi", "", "dv", "div" },
395         { "Dutch", "Nederlands", "nl", "nld", "dut" },
396         { "Dzongkha", "", "dz", "dzo" },
397         { "English", "English", "en", "eng" },
398         { "Esperanto", "", "eo", "epo" },
399         { "Estonian", "", "et", "est" },
400         { "Ewe", "", "ee", "ewe" },
401         { "Faroese", "", "fo", "fao" },
402         { "Fijian", "", "fj", "fij" },
403         { "Finnish", "Suomi", "fi", "fin" },
404         { "French", "Francais", "fr", "fra", "fre" },
405         { "Western Frisian", "", "fy", "fry" },
406         { "Fulah", "", "ff", "ful" },
407         { "Georgian", "", "ka", "kat", "geo" },
408         { "German", "Deutsch", "de", "deu", "ger" },
409         { "Gaelic (Scots)", "", "gd", "gla" },
410         { "Irish", "", "ga", "gle" },
411         { "Galician", "", "gl", "glg" },
412         { "Manx", "", "gv", "glv" },
413         { "Greek, Modern", "", "el", "ell", "gre" },
414         { "Guarani", "", "gn", "grn" },
415         { "Gujarati", "", "gu", "guj" },
416         { "Haitian", "", "ht", "hat" },
417         { "Hausa", "", "ha", "hau" },
418         { "Hebrew", "", "he", "heb" },
419         { "Herero", "", "hz", "her" },
420         { "Hindi", "", "hi", "hin" },
421         { "Hiri Motu", "", "ho", "hmo" },
422         { "Hungarian", "Magyar", "hu", "hun" },
423         { "Igbo", "", "ig", "ibo" },
424         { "Icelandic", "Islenska", "is", "isl", "ice" },
425         { "Ido", "", "io", "ido" },
426         { "Sichuan Yi", "", "ii", "iii" },
427         { "Inuktitut", "", "iu", "iku" },
428         { "Interlingue", "", "ie", "ile" },
429         { "Interlingua", "", "ia", "ina" },
430         { "Indonesian", "", "id", "ind" },
431         { "Inupiaq", "", "ik", "ipk" },
432         { "Italian", "Italiano", "it", "ita" },
433         { "Javanese", "", "jv", "jav" },
434         { "Japanese", "", "ja", "jpn" },
435         { "Kalaallisut", "", "kl", "kal" },
436         { "Kannada", "", "kn", "kan" },
437         { "Kashmiri", "", "ks", "kas" },
438         { "Kanuri", "", "kr", "kau" },
439         { "Kazakh", "", "kk", "kaz" },
440         { "Central Khmer", "", "km", "khm" },
441         { "Kikuyu", "", "ki", "kik" },
442         { "Kinyarwanda", "", "rw", "kin" },
443         { "Kirghiz", "", "ky", "kir" },
444         { "Komi", "", "kv", "kom" },
445         { "Kongo", "", "kg", "kon" },
446         { "Korean", "", "ko", "kor" },
447         { "Kuanyama", "", "kj", "kua" },
448         { "Kurdish", "", "ku", "kur" },
449         { "Lao", "", "lo", "lao" },
450         { "Latin", "", "la", "lat" },
451         { "Latvian", "", "lv", "lav" },
452         { "Limburgan", "", "li", "lim" },
453         { "Lingala", "", "ln", "lin" },
454         { "Lithuanian", "", "lt", "lit" },
455         { "Luxembourgish", "", "lb", "ltz" },
456         { "Luba-Katanga", "", "lu", "lub" },
457         { "Ganda", "", "lg", "lug" },
458         { "Macedonian", "", "mk", "mkd", "mac" },
459         { "Marshallese", "", "mh", "mah" },
460         { "Malayalam", "", "ml", "mal" },
461         { "Maori", "", "mi", "mri", "mao" },
462         { "Marathi", "", "mr", "mar" },
463         { "Malay", "", "ms", "msa", "msa" },
464         { "Malagasy", "", "mg", "mlg" },
465         { "Maltese", "", "mt", "mlt" },
466         { "Moldavian", "", "mo", "mol" },
467         { "Mongolian", "", "mn", "mon" },
468         { "Nauru", "", "na", "nau" },
469         { "Navajo", "", "nv", "nav" },
470         { "Ndebele, South", "", "nr", "nbl" },
471         { "Ndebele, North", "", "nd", "nde" },
472         { "Ndonga", "", "ng", "ndo" },
473         { "Nepali", "", "ne", "nep" },
474         { "Norwegian Nynorsk", "", "nn", "nno" },
475         { "Norwegian Bokmål", "", "nb", "nob" },
476         { "Norwegian", "Norsk", "no", "nor" },
477         { "Chichewa; Nyanja", "", "ny", "nya" },
478         { "Occitan", "", "oc", "oci" },
479         { "Ojibwa", "", "oj", "oji" },
480         { "Oriya", "", "or", "ori" },
481         { "Oromo", "", "om", "orm" },
482         { "Ossetian", "", "os", "oss" },
483         { "Panjabi", "", "pa", "pan" },
484         { "Persian", "", "fa", "fas", "per" },
485         { "Pali", "", "pi", "pli" },
486         { "Polish", "", "pl", "pol" },
487         { "Portuguese", "Portugues", "pt", "por" },
488         { "Pushto", "", "ps", "pus" },
489         { "Quechua", "", "qu", "que" },
490         { "Romansh", "", "rm", "roh" },
491         { "Romanian", "", "ro", "ron", "rum" },
492         { "Rundi", "", "rn", "run" },
493         { "Russian", "", "ru", "rus" },
494         { "Sango", "", "sg", "sag" },
495         { "Sanskrit", "", "sa", "san" },
496         { "Serbian", "", "sr", "srp", "scc" },
497         { "Croatian", "Hrvatski", "hr", "hrv", "scr" },
498         { "Sinhala", "", "si", "sin" },
499         { "Slovak", "", "sk", "slk", "slo" },
500         { "Slovenian", "", "sl", "slv" },
501         { "Northern Sami", "", "se", "sme" },
502         { "Samoan", "", "sm", "smo" },
503         { "Shona", "", "sn", "sna" },
504         { "Sindhi", "", "sd", "snd" },
505         { "Somali", "", "so", "som" },
506         { "Sotho, Southern", "", "st", "sot" },
507         { "Spanish", "Espanol", "es", "spa" },
508         { "Sardinian", "", "sc", "srd" },
509         { "Swati", "", "ss", "ssw" },
510         { "Sundanese", "", "su", "sun" },
511         { "Swahili", "", "sw", "swa" },
512         { "Swedish", "Svenska", "sv", "swe" },
513         { "Tahitian", "", "ty", "tah" },
514         { "Tamil", "", "ta", "tam" },
515         { "Tatar", "", "tt", "tat" },
516         { "Telugu", "", "te", "tel" },
517         { "Tajik", "", "tg", "tgk" },
518         { "Tagalog", "", "tl", "tgl" },
519         { "Thai", "", "th", "tha" },
520         { "Tibetan", "", "bo", "bod", "tib" },
521         { "Tigrinya", "", "ti", "tir" },
522         { "Tonga", "", "to", "ton" },
523         { "Tswana", "", "tn", "tsn" },
524         { "Tsonga", "", "ts", "tso" },
525         { "Turkmen", "", "tk", "tuk" },
526         { "Turkish", "", "tr", "tur" },
527         { "Twi", "", "tw", "twi" },
528         { "Uighur", "", "ug", "uig" },
529         { "Ukrainian", "", "uk", "ukr" },
530         { "Urdu", "", "ur", "urd" },
531         { "Uzbek", "", "uz", "uzb" },
532         { "Venda", "", "ve", "ven" },
533         { "Vietnamese", "", "vi", "vie" },
534         { "Volapük", "", "vo", "vol" },
535         { "Welsh", "", "cy", "cym", "wel" },
536         { "Walloon", "", "wa", "wln" },
537         { "Wolof", "", "wo", "wol" },
538         { "Xhosa", "", "xh", "xho" },
539         { "Yiddish", "", "yi", "yid" },
540         { "Yoruba", "", "yo", "yor" },
541         { "Zhuang", "", "za", "zha" },
542         { "Zulu", "", "zu", "zul" },
543         {NULL, NULL, NULL, NULL}
544 };
545 #define LANG_TABLE_SIZE (sizeof(ghb_language_table)/ sizeof(iso639_lang_t)-1)
546
547 static void audio_bitrate_opts_set(GtkBuilder *builder, const gchar *name);
548
549 static void
550 del_tree(const gchar *name, gboolean del_top)
551 {
552         const gchar *file;
553
554         if (g_file_test(name, G_FILE_TEST_IS_DIR))
555         {
556                 GDir *gdir = g_dir_open(name, 0, NULL);
557                 file = g_dir_read_name(gdir);
558                 while (file)
559                 {
560                         gchar *path;
561                         path = g_strdup_printf("%s/%s", name, file);
562                         del_tree(path, TRUE);
563                         g_free(path);
564                         file = g_dir_read_name(gdir);
565                 }
566                 if (del_top)
567                         g_rmdir(name);
568                 g_dir_close(gdir);
569         }
570         else
571         {
572                 g_unlink(name);
573         }
574 }
575
576 const gchar*
577 ghb_version()
578 {
579         return hb_get_version(NULL);
580 }
581
582 void
583 ghb_vquality_range(
584         signal_user_data_t *ud, 
585         gdouble *min, 
586         gdouble *max,
587         gdouble *step,
588         gdouble *page,
589         gint *digits,
590         gboolean *inverted)
591 {
592         gint vcodec = ghb_settings_combo_int(ud->settings, "VideoEncoder");
593         *page = 10;
594         *digits = 0;
595         switch (vcodec)
596         {
597                 case HB_VCODEC_X264:
598                 {
599                         *min = 0;
600                         *max = 51;
601                         *step = ghb_settings_combo_double(ud->settings, 
602                                                                                         "VideoQualityGranularity");
603                         if (*step == 0.2 || *step == 0.5)
604                                 *digits = 1;
605                         else if (*step == 0.25)
606                                 *digits = 2;
607                         *inverted = TRUE;
608                 } break;
609
610                 case HB_VCODEC_FFMPEG:
611                 {
612                         *min = 1;
613                         *max = 31;
614                         *step = 1;
615                         *inverted = TRUE;
616                 } break;
617
618                 case HB_VCODEC_THEORA:
619                 {
620                         *min = 0;
621                         *max = 63;
622                         *step = 1;
623                         *inverted = FALSE;
624                 } break;
625
626                 default:
627                 {
628                         *min = 0;
629                         *max = 100;
630                         *step = 1;
631                         *inverted = FALSE;
632                 } break;
633         }
634 }
635
636 static const gchar*
637 lookup_generic_string(combo_opts_t *opts, const GValue *gval)
638 {
639         gint ii;
640         gchar *str;
641         const gchar *result = "";
642
643         str = ghb_value_string(gval);
644         for (ii = 0; ii < opts->count; ii++)
645         {
646                 if (strcmp(opts->map[ii].shortOpt, str) == 0)
647                 {
648                         result = opts->map[ii].svalue;
649                         break;
650                 }
651         }
652         g_free(str);
653         return result;
654 }
655
656 static gint
657 lookup_generic_int(combo_opts_t *opts, const GValue *gval)
658 {
659         gint ii;
660         gchar *str;
661         gint result = -1;
662
663         str = ghb_value_string(gval);
664         for (ii = 0; ii < opts->count; ii++)
665         {
666                 if (strcmp(opts->map[ii].shortOpt, str) == 0)
667                 {
668                         result = opts->map[ii].ivalue;
669                         break;
670                 }
671         }
672         g_free(str);
673         return result;
674 }
675
676 static gdouble
677 lookup_generic_double(combo_opts_t *opts, const GValue *gval)
678 {
679         gint ii;
680         gchar *str;
681         gdouble result = -1;
682
683         str = ghb_value_string(gval);
684         for (ii = 0; ii < opts->count; ii++)
685         {
686                 if (strcmp(opts->map[ii].shortOpt, str) == 0)
687                 {
688                         result = opts->map[ii].ivalue;
689                         break;
690                 }
691         }
692         g_free(str);
693         return result;
694 }
695
696 static const gchar*
697 lookup_generic_option(combo_opts_t *opts, const GValue *gval)
698 {
699         gint ii;
700         gchar *str;
701         const gchar *result = "";
702
703         str = ghb_value_string(gval);
704         for (ii = 0; ii < opts->count; ii++)
705         {
706                 if (strcmp(opts->map[ii].shortOpt, str) == 0)
707                 {
708                         result = opts->map[ii].option;
709                         break;
710                 }
711         }
712         g_free(str);
713         return result;
714 }
715
716 static gint
717 lookup_mix_int(const GValue *mix)
718 {
719         gint ii;
720         gchar *str;
721         gint result = 0;
722
723
724         str = ghb_value_string(mix);
725         for (ii = 0; ii < hb_audio_mixdowns_count; ii++)
726         {
727                 if (strcmp(hb_audio_mixdowns[ii].short_name, str) == 0)
728                 {
729                         result = hb_audio_mixdowns[ii].amixdown;
730                         break;
731                 }
732         }
733         g_free(str);
734         return result;
735 }
736
737 static const gchar*
738 lookup_mix_option(const GValue *mix)
739 {
740         gint ii;
741         gchar *str;
742         gchar *result = "None";
743
744
745         str = ghb_value_string(mix);
746         for (ii = 0; ii < hb_audio_mixdowns_count; ii++)
747         {
748                 if (strcmp(hb_audio_mixdowns[ii].short_name, str) == 0)
749                 {
750                         result = hb_audio_mixdowns[ii].human_readable_name;
751                         break;
752                 }
753         }
754         g_free(str);
755         return result;
756 }
757
758 static gint
759 lookup_video_rate_int(const GValue *vrate)
760 {
761         gint ii;
762         gchar *str;
763         gint result = 0;
764
765         str = ghb_value_string(vrate);
766         for (ii = 0; ii < hb_video_rates_count; ii++)
767         {
768                 if (strcmp(hb_video_rates[ii].string, str) == 0)
769                 {
770                         result = hb_video_rates[ii].rate;
771                         break;
772                 }
773         }
774         g_free(str);
775         // Default to "same as source"
776         return result;
777 }
778
779 static const gchar*
780 lookup_video_rate_option(const GValue *vrate)
781 {
782         gint ii;
783         gchar *str;
784         const gchar *result = "Same as source";
785
786         str = ghb_value_string(vrate);
787         for (ii = 0; ii < hb_video_rates_count; ii++)
788         {
789                 if (strcmp(hb_video_rates[ii].string, str) == 0)
790                 {
791                         result = hb_video_rates[ii].string;
792                         break;
793                 }
794         }
795         g_free(str);
796         // Default to "same as source"
797         return result;
798 }
799
800 static gint
801 lookup_audio_rate_int(const GValue *rate)
802 {
803         gint ii;
804         gchar *str;
805         gint result = 0;
806
807         // Coincidentally, the string "source" will return 0
808         // which is our flag to use "same as source"
809         str = ghb_value_string(rate);
810         for (ii = 0; ii < hb_audio_rates_count; ii++)
811         {
812                 if (strcmp(hb_audio_rates[ii].string, str) == 0)
813                 {
814                         result = hb_audio_rates[ii].rate;
815                         break;
816                 }
817         }
818         g_free(str);
819         return result;
820 }
821
822 static const gchar*
823 lookup_audio_rate_option(const GValue *rate)
824 {
825         gint ii;
826         gchar *str;
827         const gchar *result = "Same as source";
828
829         // Coincidentally, the string "source" will return 0
830         // which is our flag to use "same as source"
831         str = ghb_value_string(rate);
832         for (ii = 0; ii < hb_audio_rates_count; ii++)
833         {
834                 if (strcmp(hb_audio_rates[ii].string, str) == 0)
835                 {
836                         result = hb_audio_rates[ii].string;
837                         break;
838                 }
839         }
840         g_free(str);
841         return result;
842 }
843
844 static gint
845 lookup_audio_bitrate_int(const GValue *rate)
846 {
847         gint ii;
848         gchar *str;
849         gint result = 0;
850
851         // Coincidentally, the string "source" will return 0
852         // which is our flag to use "same as source"
853         str = ghb_value_string(rate);
854         for (ii = 0; ii < hb_audio_bitrates_count; ii++)
855         {
856                 if (strcmp(hb_audio_bitrates[ii].string, str) == 0)
857                 {
858                         result = hb_audio_bitrates[ii].rate;
859                         break;
860                 }
861         }
862         g_free(str);
863         return result;
864 }
865
866 static const gchar*
867 lookup_audio_bitrate_option(const GValue *rate)
868 {
869         gint ii;
870         gchar *str;
871         const gchar *result = "Same as source";
872
873         // Coincidentally, the string "source" will return 0
874         // which is our flag to use "same as source"
875         str = ghb_value_string(rate);
876         for (ii = 0; ii < hb_audio_bitrates_count; ii++)
877         {
878                 if (strcmp(hb_audio_bitrates[ii].string, str) == 0)
879                 {
880                         result = hb_audio_bitrates[ii].string;
881                         break;
882                 }
883         }
884         g_free(str);
885         return result;
886 }
887
888 static gint
889 lookup_audio_lang_int(const GValue *rate)
890 {
891         gint ii;
892         gchar *str;
893         gint result = 0;
894
895         // Coincidentally, the string "source" will return 0
896         // which is our flag to use "same as source"
897         str = ghb_value_string(rate);
898         for (ii = 0; ii < LANG_TABLE_SIZE; ii++)
899         {
900                 if (strcmp(ghb_language_table[ii].iso639_2, str) == 0)
901                 {
902                         result = ii;
903                         break;
904                 }
905         }
906         g_free(str);
907         return result;
908 }
909
910 static const gchar*
911 lookup_audio_lang_option(const GValue *rate)
912 {
913         gint ii;
914         gchar *str;
915         const gchar *result = "Same as source";
916
917         // Coincidentally, the string "source" will return 0
918         // which is our flag to use "same as source"
919         str = ghb_value_string(rate);
920         for (ii = 0; ii < LANG_TABLE_SIZE; ii++)
921         {
922                 if (strcmp(ghb_language_table[ii].iso639_2, str) == 0)
923                 {
924                         result = ghb_language_table[ii].eng_name;
925                         break;
926                 }
927         }
928         g_free(str);
929         return result;
930 }
931
932 static GValue*
933 get_acodec_value(gint val)
934 {
935         GValue *value = NULL;
936         gint ii;
937
938         for (ii = 0; ii < acodec_opts.count; ii++)
939         {
940                 if ((int)acodec_opts.map[ii].ivalue == val)
941                 {
942                         value = ghb_string_value_new(acodec_opts.map[ii].shortOpt);
943                         break;
944                 }
945         }
946         return value;
947 }
948
949 static GValue*
950 get_amix_value(gint val)
951 {
952         GValue *value = NULL;
953         gint ii;
954
955         for (ii = 0; ii < hb_audio_mixdowns_count; ii++)
956         {
957                 if (hb_audio_mixdowns[ii].amixdown == val)
958                 {
959                         value = ghb_string_value_new(hb_audio_mixdowns[ii].short_name);
960                         break;
961                 }
962         }
963         return value;
964 }
965
966 // Handle for libhb.  Gets set by ghb_backend_init()
967 static hb_handle_t * h_scan = NULL;
968 static hb_handle_t * h_queue = NULL;
969
970 extern void hb_get_tempory_directory(hb_handle_t *h, char path[512]);
971
972 gchar*
973 ghb_get_tmp_dir()
974 {
975         char dir[512];
976
977         hb_get_tempory_directory(h_scan, dir);
978         return g_strdup(dir);
979 }
980
981 void
982 ghb_hb_cleanup(gboolean partial)
983 {
984         char dir[512];
985
986         hb_get_tempory_directory(h_scan, dir);
987         del_tree(dir, !partial);
988 }
989
990 gint
991 ghb_subtitle_track_source(signal_user_data_t *ud, gint track)
992 {
993         gint titleindex;
994
995         if (track == -2)
996                 return CC608SUB;
997         if (track < 0)
998                 return VOBSUB;
999         titleindex = ghb_settings_combo_int(ud->settings, "title");
1000         if (titleindex < 0)
1001                 return VOBSUB;
1002
1003         hb_list_t  * list;
1004         hb_title_t * title;
1005         hb_subtitle_t * sub;
1006         
1007         if (h_scan == NULL) return VOBSUB;
1008         list = hb_get_titles( h_scan );
1009         if( !hb_list_count( list ) )
1010         {
1011                 /* No valid title, stop right there */
1012                 return VOBSUB;
1013         }
1014         title = hb_list_item( list, titleindex );
1015         if (title == NULL) return VOBSUB;       // Bad titleindex
1016         sub = hb_list_item( title->list_subtitle, track);
1017         if (sub != NULL)
1018                 return sub->source;
1019         else
1020                 return VOBSUB;
1021 }
1022
1023 const char*
1024 ghb_subtitle_track_source_name(signal_user_data_t *ud, gint track)
1025 {
1026         gint titleindex;
1027         const gchar * name = "Unknown";
1028
1029         if (track == -2)
1030         {
1031                 name = "Text";
1032                 goto done;
1033         }
1034         if (track == -1)
1035         {
1036                 name = "Bitmap";
1037                 goto done;
1038         }
1039
1040         titleindex = ghb_settings_combo_int(ud->settings, "title");
1041         if (titleindex < 0)
1042                 goto done;
1043
1044         hb_list_t  * list;
1045         hb_title_t * title;
1046         hb_subtitle_t * sub;
1047         
1048         if (h_scan == NULL) 
1049                 goto done;
1050         list = hb_get_titles( h_scan );
1051         if( !hb_list_count( list ) )
1052                 goto done;
1053
1054         title = hb_list_item( list, titleindex );
1055         if (title == NULL)
1056                 goto done;
1057
1058         sub = hb_list_item( title->list_subtitle, track);
1059         if (sub != NULL)
1060         {
1061                 switch (sub->source)
1062                 {
1063                         case VOBSUB:
1064                                 name = "Bitmap";
1065                                 break;
1066                         case CC708SUB:
1067                         case CC608SUB:
1068                         case SRTSUB:
1069                                 name = "Text";
1070                                 break;
1071                         default:
1072                                 break;
1073                 }
1074         }
1075
1076 done:
1077         return name;
1078 }
1079
1080
1081 gint
1082 ghb_get_title_number(gint titleindex)
1083 {
1084         hb_list_t  * list;
1085         hb_title_t * title;
1086         
1087         if (h_scan == NULL) return 1;
1088         list = hb_get_titles( h_scan );
1089         if( !hb_list_count( list ) )
1090         {
1091                 /* No valid title, stop right there */
1092                 return 1;
1093         }
1094         title = hb_list_item( list, titleindex );
1095         if (title == NULL) return 1;    // Bad titleindex
1096         return title->index;
1097 }
1098
1099 static hb_audio_config_t*
1100 get_hb_audio(gint titleindex, gint track)
1101 {
1102         hb_list_t  * list;
1103         hb_title_t * title;
1104     hb_audio_config_t *audio = NULL;
1105         
1106     if (h_scan == NULL) return NULL;
1107         list = hb_get_titles( h_scan );
1108         if( !hb_list_count( list ) )
1109         {
1110                 /* No valid title, stop right there */
1111                 return NULL;
1112         }
1113     title = hb_list_item( list, titleindex );
1114         if (title == NULL) return NULL; // Bad titleindex
1115         if (!hb_list_count(title->list_audio))
1116         {
1117                 return NULL;
1118         }
1119     audio = (hb_audio_config_t *)hb_list_audio_config_item(title->list_audio, track);
1120         return audio;
1121 }
1122
1123 static gint
1124 search_rates(hb_rate_t *rates, gint rate, gint count)
1125 {
1126         gint ii;
1127         for (ii = 0; ii < count; ii++)
1128         {
1129                 if (rates[ii].rate == rate)
1130                         return ii;
1131         }
1132         return -1;
1133 }
1134
1135 static gboolean find_combo_item_by_int(GtkTreeModel *store, gint value, GtkTreeIter *iter);
1136
1137 static GtkListStore*
1138 get_combo_box_store(GtkBuilder *builder, const gchar *name)
1139 {
1140         GtkComboBox *combo;
1141         GtkListStore *store;
1142
1143         g_debug("get_combo_box_store() %s\n", name);
1144         // First modify the combobox model to allow greying out of options
1145         combo = GTK_COMBO_BOX(GHB_WIDGET(builder, name));
1146         store = GTK_LIST_STORE(gtk_combo_box_get_model (combo));
1147         return store;
1148 }
1149
1150 static void
1151 grey_combo_box_item(GtkBuilder *builder, const gchar *name, gint value, gboolean grey)
1152 {
1153         GtkListStore *store;
1154         GtkTreeIter iter;
1155         
1156         store = get_combo_box_store(builder, name);
1157         if (find_combo_item_by_int(GTK_TREE_MODEL(store), value, &iter))
1158         {
1159                 gtk_list_store_set(store, &iter, 
1160                                                    1, !grey, 
1161                                                    -1);
1162         }
1163 }
1164
1165 void
1166 ghb_grey_combo_options(GtkBuilder *builder)
1167 {
1168         GtkWidget *widget;
1169         gint container, track, titleindex, acodec;
1170     hb_audio_config_t *audio = NULL;
1171         GValue *gval;
1172         
1173         widget = GHB_WIDGET (builder, "title");
1174         gval = ghb_widget_value(widget);
1175         titleindex = ghb_lookup_combo_int("title", gval);
1176         ghb_value_free(gval);
1177         widget = GHB_WIDGET (builder, "AudioTrack");
1178         gval = ghb_widget_value(widget);
1179         track = ghb_lookup_combo_int("AudioTrack", gval);
1180         ghb_value_free(gval);
1181         audio = get_hb_audio(titleindex, track);
1182         widget = GHB_WIDGET (builder, "FileFormat");
1183         gval = ghb_widget_value(widget);
1184         container = ghb_lookup_combo_int("FileFormat", gval);
1185         ghb_value_free(gval);
1186
1187         grey_combo_box_item(builder, "x264_analyse", 3, TRUE);
1188         grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_FAAC, FALSE);
1189         grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_LAME, FALSE);
1190         grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_VORBIS, FALSE);
1191
1192         gboolean allow_dca = TRUE;
1193         allow_dca = (container != HB_MUX_MP4);
1194
1195         grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_AC3, FALSE);
1196         if (allow_dca)
1197                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_DCA, FALSE);
1198         else
1199                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_DCA, TRUE);
1200
1201         if (audio && audio->in.codec != HB_ACODEC_AC3)
1202         {
1203                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_AC3, TRUE);
1204         }
1205         if (audio && audio->in.codec != HB_ACODEC_DCA)
1206         {
1207                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_DCA, TRUE);
1208         }
1209         grey_combo_box_item(builder, "VideoEncoder", HB_VCODEC_THEORA, FALSE);
1210
1211         widget = GHB_WIDGET (builder, "AudioEncoder");
1212         gval = ghb_widget_value(widget);
1213         acodec = ghb_lookup_combo_int("AudioEncoder", gval);
1214         ghb_value_free(gval);
1215         if (acodec != HB_ACODEC_AC3)
1216         {
1217                 grey_combo_box_item(builder, "AudioMixdown", 0, TRUE);
1218         }
1219         if (container == HB_MUX_MP4)
1220         {
1221                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_LAME, TRUE);
1222                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_VORBIS, TRUE);
1223                 grey_combo_box_item(builder, "VideoEncoder", HB_VCODEC_THEORA, TRUE);
1224         }
1225         else if (container == HB_MUX_AVI)
1226         {
1227                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_FAAC, TRUE);
1228                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_VORBIS, TRUE);
1229                 grey_combo_box_item(builder, "VideoEncoder", HB_VCODEC_THEORA, TRUE);
1230         }
1231         else if (container == HB_MUX_OGM)
1232         {
1233                 grey_combo_box_item(builder, "AudioEncoder", HB_ACODEC_FAAC, TRUE);
1234         }
1235
1236         gboolean allow_mono = TRUE;
1237         gboolean allow_stereo = TRUE;
1238         gboolean allow_dolby = TRUE;
1239         gboolean allow_dpl2 = TRUE;
1240         gboolean allow_6ch = TRUE;
1241         if (audio)
1242         {
1243                 allow_mono =
1244                         (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
1245                         (acodec != HB_ACODEC_LAME);
1246                 gint layout = audio->in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK;
1247                 allow_stereo =
1248                         ((layout == HB_INPUT_CH_LAYOUT_MONO && !allow_mono) || layout >= HB_INPUT_CH_LAYOUT_STEREO);
1249                 allow_dolby =
1250                         (layout == HB_INPUT_CH_LAYOUT_3F1R) || 
1251                         (layout == HB_INPUT_CH_LAYOUT_3F2R) || 
1252                         (layout == HB_INPUT_CH_LAYOUT_DOLBY);
1253                 allow_dpl2 = (layout == HB_INPUT_CH_LAYOUT_3F2R);
1254                 allow_6ch =
1255                         (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
1256                         (acodec != HB_ACODEC_LAME) &&
1257                         (layout == HB_INPUT_CH_LAYOUT_3F2R) && 
1258                         (audio->in.channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE);
1259         }
1260         grey_combo_box_item(builder, "AudioMixdown", HB_AMIXDOWN_MONO, !allow_mono);
1261         grey_combo_box_item(builder, "AudioMixdown", HB_AMIXDOWN_STEREO, !allow_stereo);
1262         grey_combo_box_item(builder, "AudioMixdown", HB_AMIXDOWN_DOLBY, !allow_dolby);
1263         grey_combo_box_item(builder, "AudioMixdown", HB_AMIXDOWN_DOLBYPLII, !allow_dpl2);
1264         grey_combo_box_item(builder, "AudioMixdown", HB_AMIXDOWN_6CH, !allow_6ch);
1265 }
1266
1267 gint
1268 ghb_get_best_mix(gint titleindex, gint track, gint acodec, gint mix)
1269 {
1270     hb_audio_config_t *audio = NULL;
1271         gboolean allow_mono = TRUE;
1272         gboolean allow_stereo = TRUE;
1273         gboolean allow_dolby = TRUE;
1274         gboolean allow_dpl2 = TRUE;
1275         gboolean allow_6ch = TRUE;
1276         
1277         if (acodec & (HB_ACODEC_AC3 | HB_ACODEC_DCA))
1278         {
1279                 // Audio codec pass-thru.  No mixdown
1280                 return 0;
1281         }
1282         audio = get_hb_audio(titleindex, track);
1283         if (audio)
1284         {
1285                 allow_mono =
1286                         (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
1287                         (acodec != HB_ACODEC_LAME);
1288                 gint layout = audio->in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK;
1289                 allow_stereo =
1290                         ((layout == HB_INPUT_CH_LAYOUT_MONO && !allow_mono) || layout >= HB_INPUT_CH_LAYOUT_STEREO);
1291                 allow_dolby =
1292                         (layout == HB_INPUT_CH_LAYOUT_3F1R) || 
1293                         (layout == HB_INPUT_CH_LAYOUT_3F2R) || 
1294                         (layout == HB_INPUT_CH_LAYOUT_DOLBY);
1295                 allow_dpl2 = (layout == HB_INPUT_CH_LAYOUT_3F2R);
1296                 allow_6ch =
1297                         (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
1298                         (acodec != HB_ACODEC_LAME) &&
1299                         (layout == HB_INPUT_CH_LAYOUT_3F2R) && 
1300                         (audio->in.channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE);
1301         }
1302         gboolean greater = FALSE;
1303         if (mix == 0) 
1304         {
1305                 // If no mix is specified, select the best available.
1306                 mix = HB_AMIXDOWN_6CH;
1307         }
1308         if (mix == HB_AMIXDOWN_6CH)
1309         {
1310                 greater = TRUE;
1311                 if (allow_6ch) return HB_AMIXDOWN_6CH;
1312         }
1313         if (mix == HB_AMIXDOWN_DOLBYPLII || greater)
1314         {
1315                 greater = TRUE;
1316                 if (allow_dpl2) return HB_AMIXDOWN_DOLBYPLII;
1317         }
1318         if (mix == HB_AMIXDOWN_DOLBY || greater)
1319         {
1320                 greater = TRUE;
1321                 if (allow_dolby) return HB_AMIXDOWN_DOLBY;
1322         }
1323         if (mix == HB_AMIXDOWN_STEREO || greater)
1324         {
1325                 greater = TRUE;
1326                 if (allow_stereo) return HB_AMIXDOWN_STEREO;
1327         }
1328         if (mix == HB_AMIXDOWN_MONO || greater)
1329         {
1330                 greater = TRUE;
1331                 if (allow_mono) return HB_AMIXDOWN_MONO;
1332         }
1333         if (allow_stereo) return HB_AMIXDOWN_STEREO;
1334         if (allow_dolby) return HB_AMIXDOWN_DOLBY;
1335         if (allow_dpl2) return HB_AMIXDOWN_DOLBYPLII;
1336         if (allow_6ch) return HB_AMIXDOWN_6CH;
1337         return 0;
1338 }
1339
1340 // Set up the model for the combo box
1341 static void
1342 init_combo_box(GtkBuilder *builder, const gchar *name)
1343 {
1344         GtkComboBox *combo;
1345         GtkListStore *store;
1346         GtkCellRenderer *cell;
1347
1348         g_debug("init_combo_box() %s\n", name);
1349         // First modify the combobox model to allow greying out of options
1350         combo = GTK_COMBO_BOX(GHB_WIDGET(builder, name));
1351         if (combo == NULL)
1352                 return;
1353         // Store contains:
1354         // 1 - String to display
1355         // 2 - bool indicating whether the entry is selectable (grey or not)
1356         // 3 - String that is used for presets
1357         // 4 - Int value determined by backend
1358         // 5 - String value determined by backend
1359         store = gtk_list_store_new(5, G_TYPE_STRING, G_TYPE_BOOLEAN, 
1360                                                            G_TYPE_STRING, G_TYPE_DOUBLE, G_TYPE_STRING);
1361         gtk_combo_box_set_model(combo, GTK_TREE_MODEL(store));
1362
1363         if (GTK_WIDGET_TYPE(combo) == GTK_TYPE_COMBO_BOX)
1364         {
1365                 gtk_cell_layout_clear(GTK_CELL_LAYOUT(combo));
1366         cell = GTK_CELL_RENDERER(gtk_cell_renderer_text_new());
1367         gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), cell, TRUE);
1368         gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo), cell,
1369                 "text", 0, "sensitive", 1, NULL);
1370         }
1371         else
1372         { // Combo box entry
1373                 gtk_combo_box_entry_set_text_column(GTK_COMBO_BOX_ENTRY(combo), 0);
1374         }
1375 }       
1376
1377 static void
1378 audio_samplerate_opts_set(GtkBuilder *builder, const gchar *name, hb_rate_t *rates, gint count)
1379 {
1380         GtkTreeIter iter;
1381         GtkListStore *store;
1382         gint ii;
1383         
1384         g_debug("audio_samplerate_opts_set ()\n");
1385         store = get_combo_box_store(builder, name);
1386         gtk_list_store_clear(store);
1387         // Add an item for "Same As Source"
1388         gtk_list_store_append(store, &iter);
1389         gtk_list_store_set(store, &iter, 
1390                                            0, "Same as source", 
1391                                            1, TRUE, 
1392                                            2, "source", 
1393                                            3, 0.0, 
1394                                            4, "source", 
1395                                            -1);
1396         for (ii = 0; ii < count; ii++)
1397         {
1398                 gtk_list_store_append(store, &iter);
1399                 gtk_list_store_set(store, &iter, 
1400                                                    0, rates[ii].string, 
1401                                                    1, TRUE, 
1402                                                    2, rates[ii].string, 
1403                                                    3, (gdouble)rates[ii].rate, 
1404                                                    4, rates[ii].string, 
1405                                                    -1);
1406         }
1407 }
1408
1409 static void
1410 video_rate_opts_set(GtkBuilder *builder, const gchar *name, hb_rate_t *rates, gint count)
1411 {
1412         GtkTreeIter iter;
1413         GtkListStore *store;
1414         gint ii;
1415         
1416         g_debug("video_rate_opts_set ()\n");
1417         store = get_combo_box_store(builder, name);
1418         gtk_list_store_clear(store);
1419         // Add an item for "Same As Source"
1420         gtk_list_store_append(store, &iter);
1421         gtk_list_store_set(store, &iter, 
1422                                            0, "Same as source", 
1423                                            1, TRUE, 
1424                                            2, "source", 
1425                                            3, 0.0, 
1426                                            4, "source", 
1427                                            -1);
1428         for (ii = 0; ii < count; ii++)
1429         {
1430                 gchar *desc = "";
1431                 gchar *option;
1432                 if (strcmp(rates[ii].string, "23.976") == 0)
1433                 {
1434                         desc = "(NTSC Film)";
1435                 }
1436                 else if (strcmp(rates[ii].string, "25") == 0)
1437                 {
1438                         desc = "(PAL Film/Video)";
1439                 }
1440                 else if (strcmp(rates[ii].string, "29.97") == 0)
1441                 {
1442                         desc = "(NTSC Video)";
1443                 }
1444                 option = g_strdup_printf ("%s %s", rates[ii].string, desc);
1445                 gtk_list_store_append(store, &iter);
1446                 gtk_list_store_set(store, &iter, 
1447                                                    0, option, 
1448                                                    1, TRUE, 
1449                                                    2, rates[ii].string, 
1450                                                    3, (gdouble)rates[ii].rate, 
1451                                                    4, rates[ii].string, 
1452                                                    -1);
1453                 g_free(option);
1454         }
1455 }
1456
1457 static void
1458 mix_opts_set(GtkBuilder *builder, const gchar *name)
1459 {
1460         GtkTreeIter iter;
1461         GtkListStore *store;
1462         gint ii;
1463         
1464         g_debug("mix_opts_set ()\n");
1465         store = get_combo_box_store(builder, name);
1466         gtk_list_store_clear(store);
1467         gtk_list_store_append(store, &iter);
1468         gtk_list_store_set(store, &iter, 
1469                                            0, "None", 
1470                                            1, TRUE, 
1471                                            2, "none", 
1472                                            3, 0.0, 
1473                                            4, "none", 
1474                                            -1);
1475         for (ii = 0; ii < hb_audio_mixdowns_count; ii++)
1476         {
1477                 gtk_list_store_append(store, &iter);
1478                 gtk_list_store_set(store, &iter, 
1479                                                    0, hb_audio_mixdowns[ii].human_readable_name, 
1480                                                    1, TRUE, 
1481                                                    2, hb_audio_mixdowns[ii].short_name, 
1482                                                    3, (gdouble)hb_audio_mixdowns[ii].amixdown, 
1483                                                    4, hb_audio_mixdowns[ii].internal_name, 
1484                                                    -1);
1485         }
1486 }
1487
1488 static void
1489 language_opts_set(GtkBuilder *builder, const gchar *name)
1490 {
1491         GtkTreeIter iter;
1492         GtkListStore *store;
1493         gint ii;
1494         
1495         g_debug("language_opts_set ()\n");
1496         store = get_combo_box_store(builder, name);
1497         gtk_list_store_clear(store);
1498         for (ii = 0; ii < LANG_TABLE_SIZE; ii++)
1499         {
1500                 gtk_list_store_append(store, &iter);
1501                 gtk_list_store_set(store, &iter, 
1502                                                    0, ghb_language_table[ii].eng_name, 
1503                                                    1, TRUE, 
1504                                                    2, ghb_language_table[ii].iso639_2, 
1505                                                    3, (gdouble)ii, 
1506                                                    4, ghb_language_table[ii].iso639_1, 
1507                                                    -1);
1508         }
1509 }
1510
1511 static gchar **titles = NULL;
1512
1513 void
1514 title_opts_set(GtkBuilder *builder, const gchar *name)
1515 {
1516         GtkTreeIter iter;
1517         GtkListStore *store;
1518         hb_list_t  * list = NULL;
1519         hb_title_t * title = NULL;
1520         gint ii;
1521         gint count = 0;
1522         
1523         g_debug("title_opts_set ()\n");
1524         store = get_combo_box_store(builder, name);
1525         gtk_list_store_clear(store);
1526         if (h_scan != NULL)
1527         {
1528                 list = hb_get_titles( h_scan );
1529                 count = hb_list_count( list );
1530                 if (count > 100) count = 100;
1531         }
1532         if (titles) g_strfreev(titles);
1533         if (title_opts.map) g_free(title_opts.map);
1534         if (count > 0)
1535         {
1536                 title_opts.count = count;
1537                 title_opts.map = g_malloc(count*sizeof(options_map_t));
1538                 titles = g_malloc((count+1) * sizeof(gchar*));
1539         }
1540         else
1541         {
1542                 title_opts.count = 1;
1543                 title_opts.map = g_malloc(sizeof(options_map_t));
1544                 titles = NULL;
1545         }
1546         if( count <= 0 )
1547         {
1548                 // No titles.  Fill in a default.
1549                 gtk_list_store_append(store, &iter);
1550                 gtk_list_store_set(store, &iter, 
1551                                                    0, "No Titles", 
1552                                                    1, TRUE, 
1553                                                    2, "none", 
1554                                                    3, -1.0, 
1555                                                    4, "none", 
1556                                                    -1);
1557                 title_opts.map[0].option = "No Titles";
1558                 title_opts.map[0].shortOpt = "none";
1559                 title_opts.map[0].ivalue = -1;
1560                 title_opts.map[0].svalue = "none";
1561                 return;
1562         }
1563         for (ii = 0; ii < count; ii++)
1564         {
1565                 title = (hb_title_t*)hb_list_item(list, ii);
1566                 if (title->duration != 0)
1567                 {
1568                         titles[ii]  = g_strdup_printf ("%d - %02dh%02dm%02ds",
1569                                 title->index, title->hours, title->minutes, title->seconds);
1570                 }
1571                 else
1572                 {
1573                         titles[ii]  = g_strdup_printf ("%d - Unknown Length", title->index);
1574                 }
1575                 gtk_list_store_append(store, &iter);
1576                 gtk_list_store_set(store, &iter, 
1577                                                    0, titles[ii], 
1578                                                    1, TRUE, 
1579                                                    2, titles[ii], 
1580                                                    3, (gdouble)ii, 
1581                                                    4, titles[ii], 
1582                                                    -1);
1583                 title_opts.map[ii].option = titles[ii];
1584                 title_opts.map[ii].shortOpt = titles[ii];
1585                 title_opts.map[ii].ivalue = ii;
1586                 title_opts.map[ii].svalue = titles[ii];
1587         }
1588         titles[ii] = NULL;
1589 }
1590
1591 static gboolean
1592 find_combo_item_by_int(GtkTreeModel *store, gint value, GtkTreeIter *iter)
1593 {
1594         gdouble ivalue;
1595         gboolean foundit = FALSE;
1596         
1597         if (gtk_tree_model_get_iter_first (store, iter))
1598         {
1599                 do
1600                 {
1601                         gtk_tree_model_get(store, iter, 3, &ivalue, -1);
1602                         if (value == (int)ivalue)
1603                         {
1604                                 foundit = TRUE;
1605                                 break;
1606                         }
1607                 } while (gtk_tree_model_iter_next (store, iter));
1608         }
1609         return foundit;
1610 }
1611
1612 void
1613 audio_track_opts_set(GtkBuilder *builder, const gchar *name, gint titleindex)
1614 {
1615         GtkTreeIter iter;
1616         GtkListStore *store;
1617         hb_list_t  * list = NULL;
1618         hb_title_t * title = NULL;
1619     hb_audio_config_t * audio;
1620         gint ii;
1621         gint count = 0;
1622         
1623         g_debug("audio_track_opts_set ()\n");
1624         store = get_combo_box_store(builder, name);
1625         gtk_list_store_clear(store);
1626         if (h_scan != NULL)
1627         {
1628                 list = hb_get_titles( h_scan );
1629             title = (hb_title_t*)hb_list_item( list, titleindex );
1630                 if (title != NULL)
1631                 {
1632                         count = hb_list_count( title->list_audio );
1633                 }
1634         }
1635         if (count > 100) count = 100;
1636         if (audio_track_opts.map) g_free(audio_track_opts.map);
1637         if (count > 0)
1638         {
1639                 audio_track_opts.count = count;
1640                 audio_track_opts.map = g_malloc(count*sizeof(options_map_t));
1641         }
1642         else
1643         {
1644                 audio_track_opts.count = 1;
1645                 audio_track_opts.map = g_malloc(sizeof(options_map_t));
1646         }
1647         if( count <= 0 )
1648         {
1649                 // No audio. set some default
1650                 gtk_list_store_append(store, &iter);
1651                 gtk_list_store_set(store, &iter, 
1652                                                    0, "No Audio", 
1653                                                    1, TRUE, 
1654                                                    2, "none", 
1655                                                    3, -1.0, 
1656                                                    4, "none", 
1657                                                    -1);
1658                 audio_track_opts.map[0].option = "No Audio";
1659                 audio_track_opts.map[0].shortOpt = "none";
1660                 audio_track_opts.map[0].ivalue = -1;
1661                 audio_track_opts.map[0].svalue = "none";
1662                 return;
1663         }
1664         index_str_init(count-1);
1665         for (ii = 0; ii < count; ii++)
1666         {
1667         audio = (hb_audio_config_t *) hb_list_audio_config_item( title->list_audio, ii );
1668                 gtk_list_store_append(store, &iter);
1669                 gtk_list_store_set(store, &iter, 
1670                                                    0, audio->lang.description, 
1671                                                    1, TRUE, 
1672                                                    2, index_str[ii], 
1673                                                    3, (gdouble)ii, 
1674                                                    4, index_str[ii], 
1675                                                    -1);
1676                 audio_track_opts.map[ii].option = audio->lang.description,
1677                 audio_track_opts.map[ii].shortOpt = index_str[ii];
1678                 audio_track_opts.map[ii].ivalue = ii;
1679                 audio_track_opts.map[ii].svalue = index_str[ii];
1680         }
1681 }
1682
1683 void
1684 subtitle_track_opts_set(GtkBuilder *builder, const gchar *name, gint titleindex)
1685 {
1686         GtkTreeIter iter;
1687         GtkListStore *store;
1688         hb_list_t  * list = NULL;
1689         hb_title_t * title = NULL;
1690         hb_subtitle_t * subtitle;
1691         gint ii, count = 0;
1692         static char ** options = NULL;
1693         
1694         g_debug("subtitle_track_opts_set ()\n");
1695         store = get_combo_box_store(builder, name);
1696         gtk_list_store_clear(store);
1697         if (h_scan != NULL)
1698         {
1699                 list = hb_get_titles( h_scan );
1700             title = (hb_title_t*)hb_list_item( list, titleindex );
1701                 if (title != NULL)
1702                 {
1703                         count = hb_list_count( title->list_subtitle );
1704                 }
1705         }
1706         if (count > 100) count = 100;
1707         if (subtitle_opts.map) g_free(subtitle_opts.map);
1708         if (count > 0)
1709         {
1710                 subtitle_opts.count = count;
1711                 subtitle_opts.map = g_malloc((count)*sizeof(options_map_t));
1712         }
1713         else
1714         {
1715                 subtitle_opts.count = LANG_TABLE_SIZE;
1716                 subtitle_opts.map = g_malloc((LANG_TABLE_SIZE)*sizeof(options_map_t));
1717         }
1718         if (count > 0)
1719         {
1720                 if (options != NULL)
1721                         g_strfreev(options);
1722                 options = g_malloc((count+1)*sizeof(gchar*));
1723                 index_str_init(count-1);
1724                 for (ii = 0; ii < count; ii++)
1725                 {
1726                 subtitle = (hb_subtitle_t *)hb_list_item(title->list_subtitle, ii);
1727                         // Skip subtitles that must be burned if there is already
1728                         // a burned subtitle in the list
1729                         options[ii] = g_strdup_printf("%d - %s", ii+1, subtitle->lang);
1730                         subtitle_opts.map[ii].option = options[ii];
1731                         subtitle_opts.map[ii].shortOpt = index_str[ii];
1732                         subtitle_opts.map[ii].ivalue = ii;
1733                         subtitle_opts.map[ii].svalue = subtitle->iso639_2;
1734                         gtk_list_store_append(store, &iter);
1735                         gtk_list_store_set(store, &iter, 
1736                                                 0, options[ii], 
1737                                                 1, TRUE, 
1738                                                 2, index_str[ii], 
1739                                                 3, (gdouble)ii, 
1740                                                 4, subtitle->iso639_2, 
1741                                                 -1);
1742                 }
1743                 options[count] = NULL;
1744         }
1745         else
1746         {
1747                 index_str_init(LANG_TABLE_SIZE-1);
1748                 for (ii = 0; ii < LANG_TABLE_SIZE; ii++)
1749                 {
1750                         subtitle_opts.map[ii].option = ghb_language_table[ii].eng_name;
1751                         subtitle_opts.map[ii].shortOpt = index_str[ii];
1752                         subtitle_opts.map[ii].ivalue = ii;
1753                         subtitle_opts.map[ii].svalue = ghb_language_table[ii].iso639_2;
1754                         gtk_list_store_append(store, &iter);
1755                         gtk_list_store_set(store, &iter, 
1756                                         0, ghb_language_table[ii].eng_name, 
1757                                         1, TRUE, 
1758                                         2, index_str[ii],
1759                                         3, (gdouble)ii, 
1760                                         4, ghb_language_table[ii].iso639_2, 
1761                                         -1);
1762                 }
1763         }
1764 }
1765
1766 gint
1767 ghb_longest_title()
1768 {
1769         hb_list_t  * list;
1770         hb_title_t * title;
1771         gint ii;
1772         gint count = 0;
1773         guint64 longest = 0;
1774         gint titleindex = 0;
1775         
1776         g_debug("ghb_longest_title ()\n");
1777         if (h_scan == NULL) return 0;
1778         list = hb_get_titles( h_scan );
1779         count = hb_list_count( list );
1780         if (count > 100) count = 100;
1781         for (ii = 0; ii < count; ii++)
1782         {
1783                 title = (hb_title_t*)hb_list_item(list, ii);
1784                 if (title->duration > longest)
1785                 {
1786                         titleindex = ii;
1787                         longest = title->duration;
1788                 }
1789         }
1790         return titleindex;
1791 }
1792
1793 gint
1794 ghb_find_audio_track(
1795         gint titleindex, 
1796         const gchar *lang, 
1797         gint acodec,
1798         GHashTable *track_indices)
1799 {
1800         hb_list_t  * list;
1801         hb_title_t * title;
1802     hb_audio_config_t * audio;
1803         gint ii;
1804         gint count = 0;
1805         gint track = -1;
1806         gint max_chan = 0;
1807         gboolean *used;
1808         
1809         g_debug("find_audio_track ()\n");
1810         if (h_scan == NULL) return -1;
1811         list = hb_get_titles( h_scan );
1812     title = (hb_title_t*)hb_list_item( list, titleindex );
1813         if (title != NULL)
1814         {
1815                 count = hb_list_count( title->list_audio );
1816         }
1817         if (count > 10) count = 10;
1818         used = g_hash_table_lookup(track_indices, &acodec);
1819         if (used == NULL)
1820         {
1821                 used = g_malloc0(count * sizeof(gboolean));
1822                 g_hash_table_insert(track_indices, &acodec, used);
1823         }
1824         // Try to find an item that matches the preferred language and
1825         // the passthru codec type
1826         if (acodec & (HB_ACODEC_AC3 | HB_ACODEC_DCA))
1827         {
1828                 for (ii = 0; ii < count; ii++)
1829                 {
1830                         gint channels;
1831
1832                         if (used[ii])
1833                                 continue;
1834
1835                 audio = (hb_audio_config_t*)hb_list_audio_config_item( 
1836                                                                                                         title->list_audio, ii );
1837                         channels = HB_INPUT_CH_LAYOUT_GET_DISCRETE_COUNT(
1838                                                                                                         audio->in.channel_layout);
1839                         // Find a track that is not visually impaired or dirctor's
1840                         // commentary, and has the highest channel count.
1841                         if ((audio->in.codec & acodec) &&
1842                                 (audio->lang.type < 2) &&
1843                                 ((strcmp(lang, audio->lang.iso639_2) == 0) ||
1844                                 (strcmp(lang, "und") == 0)))
1845                         {
1846                                 if (channels > max_chan)
1847                                 {
1848                                         track = ii;
1849                                         max_chan = channels;
1850                                 }
1851                         }
1852                 }
1853         }
1854         if (track > -1)
1855         {
1856                 used[track] = TRUE;
1857                 return track;
1858         }
1859         // Try to find an item that matches the preferred language
1860         for (ii = 0; ii < count; ii++)
1861         {
1862                 if (used[ii])
1863                         continue;
1864         audio = (hb_audio_config_t*)hb_list_audio_config_item( 
1865                                                                                                         title->list_audio, ii );
1866                 // Find a track that is not visually impaired or dirctor's commentary
1867                 if ((audio->lang.type < 2) &&
1868                         ((strcmp(lang, audio->lang.iso639_2) == 0) ||
1869                         (strcmp(lang, "und") == 0)))
1870                 {
1871                         track = ii;
1872                         break;
1873                 }
1874         }
1875         if (track > -1)
1876         {
1877                 used[track] = TRUE;
1878                 return track;
1879         }
1880         // Try to fine an item that does not match the preferred language and
1881         // matches the passthru codec type
1882         if (acodec & (HB_ACODEC_AC3 | HB_ACODEC_DCA))
1883         {
1884                 for (ii = 0; ii < count; ii++)
1885                 {
1886                         gint channels;
1887
1888                         if (used[ii])
1889                                 continue;
1890
1891                 audio = (hb_audio_config_t*)hb_list_audio_config_item( 
1892                                                                                                         title->list_audio, ii );
1893                         channels = HB_INPUT_CH_LAYOUT_GET_DISCRETE_COUNT(
1894                                                                                                         audio->in.channel_layout);
1895                         // Find a track that is not visually impaired or dirctor's
1896                         // commentary, and has the highest channel count.
1897                         if ((audio->in.codec & acodec) &&
1898                                 (audio->lang.type < 2))
1899                         {
1900                                 if (channels > max_chan)
1901                                 {
1902                                         track = ii;
1903                                         max_chan = channels;
1904                                 }
1905                         }
1906                 }
1907         }
1908         if (track > -1)
1909         {
1910                 used[track] = TRUE;
1911                 return track;
1912         }
1913         // Try to fine an item that does not match the preferred language
1914         for (ii = 0; ii < count; ii++)
1915         {
1916                 if (used[ii])
1917                         continue;
1918         audio = (hb_audio_config_t*)hb_list_audio_config_item( 
1919                                                                                                         title->list_audio, ii );
1920                 // Find a track that is not visually impaired or dirctor's commentary
1921                 if (audio->lang.type < 2)
1922                 {
1923                         track = ii;
1924                         break;
1925                 }
1926         }
1927         if (track > -1)
1928         {
1929                 used[track] = TRUE;
1930                 return track;
1931         }
1932         // Last ditch, anything goes
1933         for (ii = 0; ii < count; ii++)
1934         {
1935         audio = (hb_audio_config_t*)hb_list_audio_config_item( 
1936                                                                                                         title->list_audio, ii );
1937                 if (!used[ii])
1938                 {
1939                         track = ii;
1940                         break;
1941                 }
1942         }
1943         if (track > -1)
1944         {
1945                 used[track] = TRUE;
1946         }
1947         return track;
1948 }
1949
1950 gint
1951 ghb_find_pref_subtitle_track(const gchar *lang)
1952 {
1953         gint ii, count;
1954         count = subtitle_opts.count;
1955         for (ii = 0; ii < count; ii++)
1956         {
1957                 if (strcmp(lang, subtitle_opts.map[ii].svalue) == 0)
1958                 {
1959                         return subtitle_opts.map[ii].ivalue;
1960                 }
1961         }
1962         return -2;
1963 }
1964
1965 gint
1966 ghb_find_subtitle_track(
1967         gint titleindex, 
1968         const gchar *lang, 
1969         GHashTable *track_indices)
1970 {
1971         hb_list_t  * list;
1972         hb_title_t * title;
1973         hb_subtitle_t * subtitle;
1974         gint count, ii;
1975         gboolean *used;
1976         
1977         g_debug("find_subtitle_track ()\n");
1978         if (strcmp(lang, "auto") == 0)
1979                 return -1;
1980         if (h_scan == NULL) return -1;
1981         list = hb_get_titles( h_scan );
1982         title = (hb_title_t*)hb_list_item( list, titleindex );
1983         if (title != NULL)
1984         {
1985                 count = hb_list_count( title->list_subtitle );
1986                 used = g_hash_table_lookup(track_indices, lang);
1987                 if (used == NULL)
1988                 {
1989                         used = g_malloc0(count * sizeof(gboolean));
1990                         g_hash_table_insert(track_indices, g_strdup(lang), used);
1991                 }
1992                 // Try to find an item that matches the preferred language
1993                 for (ii = 0; ii < count; ii++)
1994                 {
1995                         if (used[ii])
1996                                 continue;
1997
1998                 subtitle = (hb_subtitle_t*)hb_list_item( title->list_subtitle, ii );
1999                         if ((strcmp(lang, subtitle->iso639_2) == 0) ||
2000                                 (strcmp(lang, "und") == 0))
2001                         {
2002                                 used[ii] = TRUE;
2003                                 return ii;
2004                         }
2005                 }
2006         }
2007         return -2;
2008 }
2009
2010 static void
2011 generic_opts_set(GtkBuilder *builder, const gchar *name, combo_opts_t *opts)
2012 {
2013         GtkTreeIter iter;
2014         GtkListStore *store;
2015         gint ii;
2016         
2017         g_debug("generic_opts_set ()\n");
2018         if (name == NULL || opts == NULL) return;
2019         store = get_combo_box_store(builder, name);
2020         gtk_list_store_clear(store);
2021         for (ii = 0; ii < opts->count; ii++)
2022         {
2023                 gtk_list_store_append(store, &iter);
2024                 gtk_list_store_set(store, &iter, 
2025                                                    0, opts->map[ii].option, 
2026                                                    1, TRUE, 
2027                                                    2, opts->map[ii].shortOpt, 
2028                                                    3, opts->map[ii].ivalue, 
2029                                                    4, opts->map[ii].svalue, 
2030                                                    -1);
2031         }
2032 }
2033
2034 combo_opts_t*
2035 find_combo_table(const gchar *name)
2036 {
2037         gint ii;
2038
2039         for (ii = 0; combo_name_map[ii].name != NULL; ii++)
2040         {
2041                 if (strcmp(name, combo_name_map[ii].name) == 0)
2042                 {
2043                         return combo_name_map[ii].opts;
2044                 }
2045         }
2046         return NULL;
2047 }
2048
2049 gint
2050 ghb_lookup_combo_int(const gchar *name, const GValue *gval)
2051 {
2052         if (gval == NULL)
2053                 return 0;
2054         if (strcmp(name, "AudioBitrate") == 0)
2055                 return lookup_audio_bitrate_int(gval);
2056         else if (strcmp(name, "AudioSamplerate") == 0)
2057                 return lookup_audio_rate_int(gval);
2058         else if (strcmp(name, "VideoFramerate") == 0)
2059                 return lookup_video_rate_int(gval);
2060         else if (strcmp(name, "AudioMixdown") == 0)
2061                 return lookup_mix_int(gval);
2062         else if (strcmp(name, "SourceAudioLang") == 0)
2063                 return lookup_audio_lang_int(gval);
2064         else
2065         {
2066                 return lookup_generic_int(find_combo_table(name), gval);
2067         }
2068         g_warning("ghb_lookup_combo_int() couldn't find %s", name);
2069         return 0;
2070 }
2071
2072 gdouble
2073 ghb_lookup_combo_double(const gchar *name, const GValue *gval)
2074 {
2075         if (gval == NULL)
2076                 return 0;
2077         if (strcmp(name, "AudioBitrate") == 0)
2078                 return lookup_audio_bitrate_int(gval);
2079         else if (strcmp(name, "AudioSamplerate") == 0)
2080                 return lookup_audio_rate_int(gval);
2081         else if (strcmp(name, "VideoFramerate") == 0)
2082                 return lookup_video_rate_int(gval);
2083         else if (strcmp(name, "AudioMixdown") == 0)
2084                 return lookup_mix_int(gval);
2085         else if (strcmp(name, "SourceAudioLang") == 0)
2086                 return lookup_audio_lang_int(gval);
2087         else
2088         {
2089                 return lookup_generic_double(find_combo_table(name), gval);
2090         }
2091         g_warning("ghb_lookup_combo_double() couldn't find %s", name);
2092         return 0;
2093 }
2094
2095 const gchar*
2096 ghb_lookup_combo_option(const gchar *name, const GValue *gval)
2097 {
2098         if (gval == NULL)
2099                 return NULL;
2100         if (strcmp(name, "AudioBitrate") == 0)
2101                 return lookup_audio_bitrate_option(gval);
2102         else if (strcmp(name, "AudioSamplerate") == 0)
2103                 return lookup_audio_rate_option(gval);
2104         else if (strcmp(name, "VideoFramerate") == 0)
2105                 return lookup_video_rate_option(gval);
2106         else if (strcmp(name, "AudioMixdown") == 0)
2107                 return lookup_mix_option(gval);
2108         else if (strcmp(name, "SourceAudioLang") == 0)
2109                 return lookup_audio_lang_option(gval);
2110         else
2111         {
2112                 return lookup_generic_option(find_combo_table(name), gval);
2113         }
2114         g_warning("ghb_lookup_combo_int() couldn't find %s", name);
2115         return NULL;
2116 }
2117
2118 const gchar*
2119 ghb_lookup_combo_string(const gchar *name, const GValue *gval)
2120 {
2121         if (gval == NULL)
2122                 return NULL;
2123         if (strcmp(name, "AudioBitrate") == 0)
2124                 return lookup_audio_bitrate_option(gval);
2125         else if (strcmp(name, "AudioSamplerate") == 0)
2126                 return lookup_audio_rate_option(gval);
2127         else if (strcmp(name, "VideoFramerate") == 0)
2128                 return lookup_video_rate_option(gval);
2129         else if (strcmp(name, "AudioMixdown") == 0)
2130                 return lookup_mix_option(gval);
2131         else if (strcmp(name, "SourceAudioLang") == 0)
2132                 return lookup_audio_lang_option(gval);
2133         else
2134         {
2135                 return lookup_generic_string(find_combo_table(name), gval);
2136         }
2137         g_warning("ghb_lookup_combo_int() couldn't find %s", name);
2138         return NULL;
2139 }
2140
2141 void
2142 ghb_update_ui_combo_box(
2143         signal_user_data_t *ud, 
2144         const gchar *name, 
2145         gint user_data, 
2146         gboolean all)
2147 {
2148         GtkComboBox *combo = NULL;
2149         gint signal_id;
2150         gint handler_id = 0;
2151
2152         if (name != NULL)
2153         {               
2154                 g_debug("ghb_update_ui_combo_box() %s\n", name);
2155                 // Clearing a combo box causes a rash of "changed" events, even when
2156                 // the active item is -1 (inactive).  To control things, I'm disabling
2157                 // the event till things are settled down.
2158                 combo = GTK_COMBO_BOX(GHB_WIDGET(ud->builder, name));
2159                 signal_id = g_signal_lookup("changed", GTK_TYPE_COMBO_BOX);
2160                 if (signal_id > 0)
2161                 {
2162                         // Valid signal id found.  This should always succeed.
2163                         handler_id = g_signal_handler_find ((gpointer)combo, G_SIGNAL_MATCH_ID, 
2164                                                                                                 signal_id, 0, 0, 0, 0);
2165                         if (handler_id > 0)
2166                         {
2167                                 // This should also always succeed
2168                                 g_signal_handler_block ((gpointer)combo, handler_id);
2169                         }
2170                 }
2171         }       
2172         if (all)
2173         {
2174                 audio_bitrate_opts_set(ud->builder, "AudioBitrate");
2175                 audio_samplerate_opts_set(ud->builder, "AudioSamplerate", hb_audio_rates, hb_audio_rates_count);
2176                 video_rate_opts_set(ud->builder, "VideoFramerate", hb_video_rates, hb_video_rates_count);
2177                 mix_opts_set(ud->builder, "AudioMixdown");
2178                 language_opts_set(ud->builder, "SourceAudioLang");
2179                 title_opts_set(ud->builder, "title");
2180                 audio_track_opts_set(ud->builder, "AudioTrack", user_data);
2181                 subtitle_track_opts_set(ud->builder, "SubtitleTrack", user_data);
2182                 generic_opts_set(ud->builder, "VideoQualityGranularity", &vqual_granularity_opts);
2183                 generic_opts_set(ud->builder, "PicturePAR", &par_opts);
2184                 generic_opts_set(ud->builder, "PictureModulus", &alignment_opts);
2185                 generic_opts_set(ud->builder, "LoggingLevel", &logging_opts);
2186                 generic_opts_set(ud->builder, "FileFormat", &container_opts);
2187                 generic_opts_set(ud->builder, "PictureDeinterlace", &deint_opts);
2188                 generic_opts_set(ud->builder, "PictureDetelecine", &detel_opts);
2189                 generic_opts_set(ud->builder, "PictureDecomb", &decomb_opts);
2190                 generic_opts_set(ud->builder, "PictureDenoise", &denoise_opts);
2191                 generic_opts_set(ud->builder, "VideoEncoder", &vcodec_opts);
2192                 generic_opts_set(ud->builder, "AudioEncoder", &acodec_opts);
2193                 generic_opts_set(ud->builder, "x264_direct", &direct_opts);
2194                 generic_opts_set(ud->builder, "x264_b_adapt", &badapt_opts);
2195                 generic_opts_set(ud->builder, "x264_me", &me_opts);
2196                 generic_opts_set(ud->builder, "x264_subme", &subme_opts);
2197                 generic_opts_set(ud->builder, "x264_analyse", &analyse_opts);
2198                 generic_opts_set(ud->builder, "x264_trellis", &trellis_opts);
2199         }
2200         else
2201         {
2202                 if (strcmp(name, "AudioBitrate") == 0)
2203                         audio_bitrate_opts_set(ud->builder, "AudioBitrate");
2204                 else if (strcmp(name, "AudioSamplerate") == 0)
2205                         audio_samplerate_opts_set(ud->builder, "AudioSamplerate", hb_audio_rates, hb_audio_rates_count);
2206                 else if (strcmp(name, "VideoFramerate") == 0)
2207                         video_rate_opts_set(ud->builder, "VideoFramerate", hb_video_rates, hb_video_rates_count);
2208                 else if (strcmp(name, "AudioMixdown") == 0)
2209                         mix_opts_set(ud->builder, "AudioMixdown");
2210                 else if (strcmp(name, "SourceAudioLang") == 0)
2211                         language_opts_set(ud->builder, "SourceAudioLang");
2212                 else if (strcmp(name, "title") == 0)
2213                         title_opts_set(ud->builder, "title");
2214                 else if (strcmp(name, "SubtitleTrack") == 0)
2215                         subtitle_track_opts_set(ud->builder, "SubtitleTrack", user_data);
2216                 else if (strcmp(name, "AudioTrack") == 0)
2217                         audio_track_opts_set(ud->builder, "AudioTrack", user_data);
2218                 else
2219                         generic_opts_set(ud->builder, name, find_combo_table(name));
2220         }
2221         if (handler_id > 0)
2222         {
2223                 g_signal_handler_unblock ((gpointer)combo, handler_id);
2224         }
2225 }
2226         
2227 static void
2228 init_ui_combo_boxes(GtkBuilder *builder)
2229 {
2230         gint ii;
2231
2232         init_combo_box(builder, "AudioBitrate");
2233         init_combo_box(builder, "AudioSamplerate");
2234         init_combo_box(builder, "VideoFramerate");
2235         init_combo_box(builder, "AudioMixdown");
2236         init_combo_box(builder, "SourceAudioLang");
2237         init_combo_box(builder, "title");
2238         init_combo_box(builder, "AudioTrack");
2239         for (ii = 0; combo_name_map[ii].name != NULL; ii++)
2240         {
2241                 init_combo_box(builder, combo_name_map[ii].name);
2242         }
2243 }
2244         
2245 static const char * turbo_opts = 
2246         "ref=1:subme=1:me=dia:analyse=none:trellis=0:"
2247         "no-fast-pskip=0:8x8dct=0:weightb=0";
2248
2249 // Construct the x264 options string
2250 // The result is allocated, so someone must free it at some point.
2251 gchar*
2252 ghb_build_x264opts_string(GValue *settings)
2253 {
2254         gchar *result;
2255         gchar *opts = ghb_settings_get_string(settings, "x264Option");
2256         if (opts != NULL)
2257         {
2258                 result = opts;
2259         }
2260         else
2261         {
2262                 result = g_strdup("");
2263         }
2264         return result;
2265 }
2266
2267 void
2268 ghb_get_chapter_duration(gint ti, gint ii, gint *hh, gint *mm, gint *ss)
2269 {
2270         hb_list_t  * list;
2271         hb_title_t * title;
2272     hb_chapter_t * chapter;
2273         gint count;
2274         
2275         g_debug("ghb_get_chapter_duration (title = %d)\n", ti);
2276         *hh = *mm = *ss = 0;
2277         if (h_scan == NULL) return;
2278         list = hb_get_titles( h_scan );
2279     title = (hb_title_t*)hb_list_item( list, ti );
2280         if (title == NULL) return;
2281         count = hb_list_count( title->list_chapter );
2282         if (ii >= count) return;
2283         chapter = hb_list_item(title->list_chapter, ii);
2284         if (chapter == NULL) return;
2285         *hh = chapter->hours;
2286         *mm = chapter->minutes;
2287         *ss = chapter->seconds;
2288 }
2289
2290 GValue*
2291 ghb_get_chapters(gint titleindex)
2292 {
2293         hb_list_t  * list;
2294         hb_title_t * title;
2295     hb_chapter_t * chapter;
2296         gint count, ii;
2297         GValue *chapters = NULL;
2298         
2299         g_debug("ghb_get_chapters (title = %d)\n", titleindex);
2300         if (h_scan == NULL) return NULL;
2301         list = hb_get_titles( h_scan );
2302     title = (hb_title_t*)hb_list_item( list, titleindex );
2303         if (title == NULL) return NULL;
2304         count = hb_list_count( title->list_chapter );
2305         chapters = ghb_array_value_new(count);
2306         for (ii = 0; ii < count; ii++)
2307         {
2308                 chapter = hb_list_item(title->list_chapter, ii);
2309                 if (chapter == NULL) break;
2310                 if (chapter->title == NULL || chapter->title[0] == 0)
2311                 {
2312                         gchar *str;
2313                         str = g_strdup_printf ("Chapter %2d", ii+1);
2314                         ghb_array_append(chapters, ghb_string_value_new(str));
2315                         g_free(str);
2316                 }
2317                 else 
2318                 {
2319                         ghb_array_append(chapters, ghb_string_value_new(chapter->title));
2320                 }
2321         }
2322         return chapters;
2323 }
2324
2325 gboolean
2326 ghb_ac3_in_audio_list(const GValue *audio_list)
2327 {
2328         gint count, ii;
2329
2330         count = ghb_array_len(audio_list);
2331         for (ii = 0; ii < count; ii++)
2332         {
2333                 GValue *asettings;
2334                 gint acodec;
2335
2336                 asettings = ghb_array_get_nth(audio_list, ii);
2337                 acodec = ghb_settings_combo_int(asettings, "AudioEncoder");
2338                 if (acodec == HB_ACODEC_AC3)
2339                         return TRUE;
2340         }
2341         return FALSE;
2342 }
2343
2344 static void
2345 audio_bitrate_opts_add(GtkBuilder *builder, const gchar *name, gint rate)
2346 {
2347         GtkTreeIter iter;
2348         GtkListStore *store;
2349         gchar *str;
2350         
2351         g_debug("audio_rate_opts_add ()\n");
2352         store = get_combo_box_store(builder, name);
2353         if (!find_combo_item_by_int(GTK_TREE_MODEL(store), rate, &iter))
2354         {
2355                 str = g_strdup_printf ("%d", rate);
2356                 gtk_list_store_append(store, &iter);
2357                 gtk_list_store_set(store, &iter, 
2358                                                    0, str, 
2359                                                    1, TRUE, 
2360                                                    2, str, 
2361                                                    3, (gdouble)rate, 
2362                                                    4, str, 
2363                                                    -1);
2364                 g_free(str);
2365         }
2366 }
2367
2368 static void
2369 audio_bitrate_opts_clean(GtkBuilder *builder, const gchar *name, gint last_rate)
2370 {
2371         GtkTreeIter iter;
2372         GtkListStore *store;
2373         gdouble ivalue;
2374         gboolean done = FALSE;
2375         gint ii = 0;
2376         guint last = (guint)last_rate;
2377         
2378         g_debug("audio_bitrate_opts_clean ()\n");
2379         store = get_combo_box_store(builder, name);
2380         if (gtk_tree_model_get_iter_first (GTK_TREE_MODEL(store), &iter))
2381         {
2382                 do
2383                 {
2384                         gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, 3, &ivalue, -1);
2385                         if (search_rates(
2386                                 hb_audio_bitrates, ivalue, hb_audio_bitrates_count) < 0)
2387                         {
2388                                 done = !gtk_list_store_remove(store, &iter);
2389                         }
2390                         else if (ivalue > last)
2391                         {
2392                                 ii++;
2393                                 gtk_list_store_set(store, &iter, 1, FALSE, -1);
2394                                 done = !gtk_tree_model_iter_next (GTK_TREE_MODEL(store), &iter);
2395                         }
2396                         else
2397                         {
2398                                 ii++;
2399                                 gtk_list_store_set(store, &iter, 1, TRUE, -1);
2400                                 done = !gtk_tree_model_iter_next (GTK_TREE_MODEL(store), &iter);
2401                         }
2402                 } while (!done);
2403         }
2404 }
2405
2406 static void
2407 audio_bitrate_opts_set(GtkBuilder *builder, const gchar *name)
2408 {
2409         GtkTreeIter iter;
2410         GtkListStore *store;
2411         gint ii;
2412         
2413         g_debug("audio_bitrate_opts_set ()\n");
2414         store = get_combo_box_store(builder, name);
2415         gtk_list_store_clear(store);
2416         for (ii = 0; ii < hb_audio_bitrates_count; ii++)
2417         {
2418                 gtk_list_store_append(store, &iter);
2419                 gtk_list_store_set(store, &iter, 
2420                                                    0, hb_audio_bitrates[ii].string, 
2421                                                    1, TRUE, 
2422                                                    2, hb_audio_bitrates[ii].string, 
2423                                                    3, (gdouble)hb_audio_bitrates[ii].rate, 
2424                                                    4, hb_audio_bitrates[ii].string, 
2425                                                    -1);
2426         }
2427 }
2428
2429 void
2430 ghb_set_passthru_bitrate_opts(GtkBuilder *builder, gint bitrate)
2431 {
2432         audio_bitrate_opts_add(builder, "AudioBitrate", bitrate);
2433 }
2434
2435 void
2436 ghb_set_default_bitrate_opts(GtkBuilder *builder, gint last_rate)
2437 {
2438         audio_bitrate_opts_clean(builder, "AudioBitrate", last_rate);
2439 }
2440
2441 static ghb_status_t hb_status;
2442
2443 void
2444 ghb_combo_init(signal_user_data_t *ud)
2445 {
2446         // Set up the list model for the combos
2447         init_ui_combo_boxes(ud->builder);
2448         // Populate all the combos
2449         ghb_update_ui_combo_box(ud, NULL, 0, TRUE);
2450 }
2451
2452 void
2453 ghb_backend_init(gint debug)
2454 {
2455     /* Init libhb */
2456     h_scan = hb_init( debug, 0 );
2457     h_queue = hb_init( debug, 0 );
2458 }
2459
2460 void
2461 ghb_backend_close()
2462 {
2463         hb_close(&h_queue);
2464         hb_close(&h_scan);
2465 }
2466
2467 void
2468 ghb_backend_scan(const gchar *path, gint titleindex, gint preview_count)
2469 {
2470     hb_scan( h_scan, path, titleindex, preview_count, 1 );
2471         hb_status.scan.state |= GHB_STATE_SCANNING;
2472         // initialize count and cur to something that won't cause FPE
2473         // when computing progress
2474         hb_status.scan.title_count = 1;
2475         hb_status.scan.title_cur = 0;
2476 }
2477
2478 void
2479 ghb_backend_queue_scan(const gchar *path, gint titlenum)
2480 {
2481         g_debug("ghb_backend_queue_scan()");
2482         hb_scan( h_queue, path, titlenum, 10, 0 );
2483         hb_status.queue.state |= GHB_STATE_SCANNING;
2484 }
2485
2486 gint
2487 ghb_get_scan_state()
2488 {
2489         return hb_status.scan.state;
2490 }
2491
2492 gint
2493 ghb_get_queue_state()
2494 {
2495         return hb_status.queue.state;
2496 }
2497
2498 void
2499 ghb_clear_scan_state(gint state)
2500 {
2501         hb_status.scan.state &= ~state;
2502 }
2503
2504 void
2505 ghb_clear_queue_state(gint state)
2506 {
2507         hb_status.queue.state &= ~state;
2508 }
2509
2510 void
2511 ghb_set_scan_state(gint state)
2512 {
2513         hb_status.scan.state |= state;
2514 }
2515
2516 void
2517 ghb_set_queue_state(gint state)
2518 {
2519         hb_status.queue.state |= state;
2520 }
2521
2522 void
2523 ghb_get_status(ghb_status_t *status)
2524 {
2525         memcpy(status, &hb_status, sizeof(ghb_status_t));
2526 }
2527
2528 void 
2529 ghb_track_status()
2530 {
2531     hb_state_t s_scan;
2532     hb_state_t s_queue;
2533
2534         if (h_scan == NULL) return;
2535     hb_get_state( h_scan, &s_scan );
2536         switch( s_scan.state )
2537     {
2538 #define p s_scan.param.scanning
2539         case HB_STATE_SCANNING:
2540                 {
2541                         hb_status.scan.state |= GHB_STATE_SCANNING;
2542                         hb_status.scan.title_count = p.title_count;
2543                         hb_status.scan.title_cur = p.title_cur;
2544                 } break;
2545 #undef p
2546
2547         case HB_STATE_SCANDONE:
2548         {
2549                         hb_status.scan.state &= ~GHB_STATE_SCANNING;
2550                         hb_status.scan.state |= GHB_STATE_SCANDONE;
2551         } break;
2552
2553 #define p s_scan.param.working
2554         case HB_STATE_WORKING:
2555                         hb_status.scan.state |= GHB_STATE_WORKING;
2556                         hb_status.scan.state &= ~GHB_STATE_PAUSED;
2557                         hb_status.scan.job_cur = p.job_cur;
2558                         hb_status.scan.job_count = p.job_count;
2559                         hb_status.scan.progress = p.progress;
2560                         hb_status.scan.rate_cur = p.rate_cur;
2561                         hb_status.scan.rate_avg = p.rate_avg;
2562                         hb_status.scan.hours = p.hours;
2563                         hb_status.scan.minutes = p.minutes;
2564                         hb_status.scan.seconds = p.seconds;
2565                         hb_status.scan.unique_id = p.sequence_id & 0xFFFFFF;
2566             break;
2567 #undef p
2568
2569         case HB_STATE_PAUSED:
2570                         hb_status.scan.state |= GHB_STATE_PAUSED;
2571             break;
2572                                 
2573         case HB_STATE_MUXING:
2574         {
2575                         hb_status.scan.state |= GHB_STATE_MUXING;
2576         } break;
2577
2578 #define p s_scan.param.workdone
2579         case HB_STATE_WORKDONE:
2580                 {
2581             hb_job_t *job;
2582
2583                         hb_status.scan.state |= GHB_STATE_WORKDONE;
2584                         hb_status.scan.state &= ~GHB_STATE_MUXING;
2585                         hb_status.scan.state &= ~GHB_STATE_PAUSED;
2586                         hb_status.scan.state &= ~GHB_STATE_WORKING;
2587                         switch (p.error)
2588                         {
2589                         case HB_ERROR_NONE:
2590                                 hb_status.scan.error = GHB_ERROR_NONE;
2591                                 break;
2592                         case HB_ERROR_CANCELED:
2593                                 hb_status.scan.error = GHB_ERROR_CANCELED;
2594                                 break;
2595                         default:
2596                                 hb_status.scan.error = GHB_ERROR_FAIL;
2597                                 break;
2598                         }
2599                         // Delete all remaining jobs of this encode.
2600                         // An encode can be composed of multiple associated jobs.
2601                         // When a job is stopped, libhb removes it from the job list,
2602                         // but does not remove other jobs that may be associated with it.
2603                         // Associated jobs are taged in the sequence id.
2604             while ((job = hb_job(h_scan, 0)) != NULL) 
2605                 hb_rem( h_scan, job );
2606                 } break;
2607 #undef p
2608     }
2609     hb_get_state( h_queue, &s_queue );
2610         switch( s_queue.state )
2611     {
2612 #define p s_queue.param.scanning
2613         case HB_STATE_SCANNING:
2614                 {
2615                         hb_status.queue.state |= GHB_STATE_SCANNING;
2616                         hb_status.queue.title_count = p.title_count;
2617                         hb_status.queue.title_cur = p.title_cur;
2618                 } break;
2619 #undef p
2620
2621         case HB_STATE_SCANDONE:
2622         {
2623                         hb_status.queue.state &= ~GHB_STATE_SCANNING;
2624                         hb_status.queue.state |= GHB_STATE_SCANDONE;
2625         } break;
2626
2627 #define p s_queue.param.working
2628         case HB_STATE_WORKING:
2629                         hb_status.queue.state |= GHB_STATE_WORKING;
2630                         hb_status.queue.state &= ~GHB_STATE_PAUSED;
2631                         hb_status.queue.job_cur = p.job_cur;
2632                         hb_status.queue.job_count = p.job_count;
2633                         hb_status.queue.progress = p.progress;
2634                         hb_status.queue.rate_cur = p.rate_cur;
2635                         hb_status.queue.rate_avg = p.rate_avg;
2636                         hb_status.queue.hours = p.hours;
2637                         hb_status.queue.minutes = p.minutes;
2638                         hb_status.queue.seconds = p.seconds;
2639                         hb_status.queue.unique_id = p.sequence_id & 0xFFFFFF;
2640             break;
2641 #undef p
2642
2643         case HB_STATE_PAUSED:
2644                         hb_status.queue.state |= GHB_STATE_PAUSED;
2645             break;
2646                                 
2647         case HB_STATE_MUXING:
2648         {
2649                         hb_status.queue.state |= GHB_STATE_MUXING;
2650         } break;
2651
2652 #define p s_queue.param.workdone
2653         case HB_STATE_WORKDONE:
2654                 {
2655             hb_job_t *job;
2656
2657                         hb_status.queue.state |= GHB_STATE_WORKDONE;
2658                         hb_status.queue.state &= ~GHB_STATE_MUXING;
2659                         hb_status.queue.state &= ~GHB_STATE_PAUSED;
2660                         hb_status.queue.state &= ~GHB_STATE_WORKING;
2661                         switch (p.error)
2662                         {
2663                         case HB_ERROR_NONE:
2664                                 hb_status.queue.error = GHB_ERROR_NONE;
2665                                 break;
2666                         case HB_ERROR_CANCELED:
2667                                 hb_status.queue.error = GHB_ERROR_CANCELED;
2668                                 break;
2669                         default:
2670                                 hb_status.queue.error = GHB_ERROR_FAIL;
2671                                 break;
2672                         }
2673                         // Delete all remaining jobs of this encode.
2674                         // An encode can be composed of multiple associated jobs.
2675                         // When a job is stopped, libhb removes it from the job list,
2676                         // but does not remove other jobs that may be associated with it.
2677                         // Associated jobs are taged in the sequence id.
2678             while ((job = hb_job(h_queue, 0)) != NULL) 
2679                 hb_rem( h_queue, job );
2680                 } break;
2681 #undef p
2682     }
2683 }
2684
2685 gboolean
2686 ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex)
2687 {
2688         hb_list_t  * list;
2689         hb_title_t * title;
2690         
2691     if (h_scan == NULL) return FALSE;
2692         list = hb_get_titles( h_scan );
2693         if( !hb_list_count( list ) )
2694         {
2695                 /* No valid title, stop right there */
2696                 return FALSE;
2697         }
2698
2699     title = hb_list_item( list, titleindex );
2700         if (title == NULL) return FALSE;        // Bad titleindex
2701         tinfo->width = title->width;
2702         tinfo->height = title->height;
2703         memcpy(tinfo->crop, title->crop, 4 * sizeof(int));
2704         // Don't allow crop to 0
2705         if (title->crop[0] + title->crop[1] >= title->height)
2706                 title->crop[0] = title->crop[1] = 0;
2707         if (title->crop[2] + title->crop[3] >= title->width)
2708                 title->crop[2] = title->crop[3] = 0;
2709         tinfo->num_chapters = hb_list_count(title->list_chapter);
2710         tinfo->rate_base = title->rate_base;
2711         tinfo->rate = title->rate;
2712         hb_reduce(&(tinfo->aspect_n), &(tinfo->aspect_d), 
2713                                 title->width * title->pixel_aspect_width, 
2714                                 title->height * title->pixel_aspect_height);
2715         tinfo->hours = title->hours;
2716         tinfo->minutes = title->minutes;
2717         tinfo->seconds = title->seconds;
2718         tinfo->duration = title->duration;
2719
2720         tinfo->angle_count = title->angle_count;
2721         return TRUE;
2722 }
2723
2724 gboolean
2725 ghb_get_audio_info(ghb_audio_info_t *ainfo, gint titleindex, gint audioindex)
2726 {
2727     hb_audio_config_t *audio;
2728         
2729         audio = get_hb_audio(titleindex, audioindex);
2730         if (audio == NULL) return FALSE; // Bad audioindex
2731         ainfo->codec = audio->in.codec;
2732         ainfo->bitrate = audio->in.bitrate;
2733         ainfo->samplerate = audio->in.samplerate;
2734         return TRUE;
2735 }
2736
2737 gboolean
2738 ghb_audio_is_passthru(gint acodec)
2739 {
2740         g_debug("ghb_audio_is_passthru () \n");
2741         return (acodec & (HB_ACODEC_AC3 | HB_ACODEC_DCA));
2742 }
2743
2744 gint
2745 ghb_get_default_acodec()
2746 {
2747         return HB_ACODEC_FAAC;
2748 }
2749
2750 static void
2751 picture_settings_deps(signal_user_data_t *ud)
2752 {
2753         gboolean autoscale, keep_aspect, enable_keep_aspect;
2754         gboolean enable_scale_width, enable_scale_height;
2755         gboolean enable_disp_width, enable_disp_height;
2756         gint pic_par;
2757         GtkWidget *widget;
2758
2759         pic_par = ghb_settings_combo_int(ud->settings, "PicturePAR");
2760         if (pic_par == 1)
2761         {
2762                 ghb_ui_update(ud, "autoscale", ghb_boolean_value(TRUE));
2763                 ghb_ui_update(ud, "PictureModulus", ghb_int_value(2));
2764                 ghb_ui_update(ud, "PictureLooseCrop", ghb_boolean_value(TRUE));
2765         }
2766         enable_keep_aspect = (pic_par != 1 && pic_par != 2);
2767         if (!enable_keep_aspect)
2768         {
2769                 ghb_ui_update(ud, "PictureKeepRatio", ghb_boolean_value(TRUE));
2770         }
2771         keep_aspect = ghb_settings_get_boolean(ud->settings, "PictureKeepRatio");
2772         autoscale = ghb_settings_get_boolean(ud->settings, "autoscale");
2773
2774         enable_scale_width = !autoscale && (pic_par != 1);
2775         enable_scale_height = !autoscale && (pic_par != 1);
2776         enable_disp_width = (pic_par == 3) && !keep_aspect;
2777         enable_disp_height = FALSE;
2778
2779         widget = GHB_WIDGET(ud->builder, "PictureModulus");
2780         gtk_widget_set_sensitive(widget, pic_par != 1);
2781         widget = GHB_WIDGET(ud->builder, "PictureLooseCrop");
2782         gtk_widget_set_sensitive(widget, pic_par != 1);
2783         widget = GHB_WIDGET(ud->builder, "scale_width");
2784         gtk_widget_set_sensitive(widget, enable_scale_width);
2785         widget = GHB_WIDGET(ud->builder, "scale_height");
2786         gtk_widget_set_sensitive(widget, enable_scale_height);
2787         widget = GHB_WIDGET(ud->builder, "PictureDisplayWidth");
2788         gtk_widget_set_sensitive(widget, enable_disp_width);
2789         widget = GHB_WIDGET(ud->builder, "PictureDisplayHeight");
2790         gtk_widget_set_sensitive(widget, enable_disp_height);
2791         widget = GHB_WIDGET(ud->builder, "PictureKeepRatio");
2792         gtk_widget_set_sensitive(widget, enable_keep_aspect);
2793         widget = GHB_WIDGET(ud->builder, "autoscale");
2794         gtk_widget_set_sensitive(widget, pic_par != 1);
2795 }
2796
2797 void
2798 ghb_set_scale(signal_user_data_t *ud, gint mode)
2799 {
2800         hb_list_t  * list;
2801         hb_title_t * title;
2802         hb_job_t   * job;
2803         gboolean keep_aspect;
2804         gint pic_par;
2805         gboolean autocrop, autoscale, noscale;
2806         gint crop[4], width, height, par_width, par_height;
2807         gint crop_width, crop_height;
2808         gint aspect_n, aspect_d;
2809         gboolean keep_width = (mode & GHB_PIC_KEEP_WIDTH);
2810         gboolean keep_height = (mode & GHB_PIC_KEEP_HEIGHT);
2811         gint step;
2812         GtkWidget *widget;
2813         gint mod;
2814         gint max_width = 0;
2815         gint max_height = 0;
2816         static gboolean busy = FALSE;
2817         
2818         g_debug("ghb_set_scale ()\n");
2819         if (h_scan == NULL) return;
2820         list = hb_get_titles( h_scan );
2821         if( !hb_list_count( list ) )
2822         {
2823                 /* No valid title, stop right there */
2824                 return;
2825         }
2826         gint titleindex;
2827
2828         titleindex = ghb_settings_combo_int(ud->settings, "title");
2829     title = hb_list_item( list, titleindex );
2830         if (title == NULL) return;
2831         job   = title->job;
2832         if (job == NULL) return;
2833
2834         picture_settings_deps(ud);
2835         if (busy) return;
2836         busy = TRUE;
2837
2838         
2839         // First configure widgets
2840         mod = ghb_settings_combo_int(ud->settings, "PictureModulus");
2841         pic_par = ghb_settings_combo_int(ud->settings, "PicturePAR");
2842         keep_aspect = ghb_settings_get_boolean(ud->settings, "PictureKeepRatio");
2843         autocrop = ghb_settings_get_boolean(ud->settings, "PictureAutoCrop");
2844         autoscale = ghb_settings_get_boolean(ud->settings, "autoscale");
2845         // "Noscale" is a flag that says we prefer to crop extra to satisfy
2846         // alignment constraints rather than scaling to satisfy them.
2847         noscale = ghb_settings_get_boolean(ud->settings, "PictureLooseCrop");
2848         // Align dimensions to either 16 or 2 pixels
2849         // The scaler crashes if the dimensions are not divisible by 2
2850         // x264 also will not accept dims that are not multiple of 2
2851         if (autoscale)
2852         {
2853                 keep_width = FALSE;
2854                 keep_height = FALSE;
2855         }
2856         // Step needs to be at least 2 because odd widths cause scaler crash
2857         step = mod;
2858         widget = GHB_WIDGET (ud->builder, "scale_width");
2859         gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2860         widget = GHB_WIDGET (ud->builder, "scale_height");
2861         gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2862         if (noscale)
2863         {
2864                 widget = GHB_WIDGET (ud->builder, "PictureTopCrop");
2865                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2866                 widget = GHB_WIDGET (ud->builder, "PictureBottomCrop");
2867                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2868                 widget = GHB_WIDGET (ud->builder, "PictureLeftCrop");
2869                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2870                 widget = GHB_WIDGET (ud->builder, "PictureRightCrop");
2871                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), step, 16);
2872         }
2873         else
2874         {
2875                 widget = GHB_WIDGET (ud->builder, "PictureTopCrop");
2876                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), 1, 16);
2877                 widget = GHB_WIDGET (ud->builder, "PictureBottomCrop");
2878                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), 1, 16);
2879                 widget = GHB_WIDGET (ud->builder, "PictureLeftCrop");
2880                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), 1, 16);
2881                 widget = GHB_WIDGET (ud->builder, "PictureRightCrop");
2882                 gtk_spin_button_set_increments (GTK_SPIN_BUTTON(widget), 1, 16);
2883         }
2884         ghb_title_info_t tinfo;
2885         ghb_get_title_info (&tinfo, titleindex);
2886         if (autocrop)
2887         {
2888                 crop[0] = tinfo.crop[0];
2889                 crop[1] = tinfo.crop[1];
2890                 crop[2] = tinfo.crop[2];
2891                 crop[3] = tinfo.crop[3];
2892                 ghb_ui_update(ud, "PictureTopCrop", ghb_int64_value(crop[0]));
2893                 ghb_ui_update(ud, "PictureBottomCrop", ghb_int64_value(crop[1]));
2894                 ghb_ui_update(ud, "PictureLeftCrop", ghb_int64_value(crop[2]));
2895                 ghb_ui_update(ud, "PictureRightCrop", ghb_int64_value(crop[3]));
2896         }
2897         else
2898         {
2899                 crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop");
2900                 crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop");
2901                 crop[2] = ghb_settings_get_int(ud->settings, "PictureLeftCrop");
2902                 crop[3] = ghb_settings_get_int(ud->settings, "PictureRightCrop");
2903         }
2904         if (noscale)
2905         {
2906                 gint need1, need2;
2907
2908                 // Adjust the cropping to accomplish the desired width and height
2909                 crop_width = tinfo.width - crop[2] - crop[3];
2910                 crop_height = tinfo.height - crop[0] - crop[1];
2911                 width = MOD_DOWN(crop_width, mod);
2912                 height = MOD_DOWN(crop_height, mod);
2913
2914                 need1 = (crop_height - height) / 2;
2915                 need2 = crop_height - height - need1;
2916                 crop[0] += need1;
2917                 crop[1] += need2;
2918                 need1 = (crop_width - width) / 2;
2919                 need2 = crop_width - width - need1;
2920                 crop[2] += need1;
2921                 crop[3] += need2;
2922                 ghb_ui_update(ud, "PictureTopCrop", ghb_int64_value(crop[0]));
2923                 ghb_ui_update(ud, "PictureBottomCrop", ghb_int64_value(crop[1]));
2924                 ghb_ui_update(ud, "PictureLeftCrop", ghb_int64_value(crop[2]));
2925                 ghb_ui_update(ud, "PictureRightCrop", ghb_int64_value(crop[3]));
2926         }
2927         hb_reduce(&aspect_n, &aspect_d, 
2928                                 title->width * title->pixel_aspect_width, 
2929                                 title->height * title->pixel_aspect_height);
2930         crop_width = title->width - crop[2] - crop[3];
2931         crop_height = title->height - crop[0] - crop[1];
2932         if (autoscale)
2933         {
2934                 width = crop_width;
2935                 height = crop_height;
2936         }
2937         else
2938         {
2939                 width = ghb_settings_get_int(ud->settings, "scale_width");
2940                 height = ghb_settings_get_int(ud->settings, "scale_height");
2941                 max_width = MOD_DOWN(
2942                         ghb_settings_get_int(ud->settings, "PictureWidth"), mod);
2943                 max_height = MOD_DOWN(
2944                         ghb_settings_get_int(ud->settings, "PictureHeight"), mod);
2945         }
2946         g_debug("max_width %d, max_height %d\n", max_width, max_height);
2947
2948         if (width < 16)
2949                 width = title->width - crop[2] - crop[3];
2950         if (height < 16)
2951                 height = title->height - crop[0] - crop[1];
2952
2953         width = MOD_ROUND(width, mod);
2954         height = MOD_ROUND(height, mod);
2955
2956         // Adjust dims according to max values
2957         if (max_height)
2958                 height = MIN(height, max_height);
2959         if (max_width)
2960                 width = MIN(width, max_width);
2961
2962         if (pic_par)
2963         {
2964                 job->anamorphic.mode = pic_par;
2965                 // The scaler crashes if the dimensions are not divisible by 2
2966                 // Align mod 2.  And so does something in x264_encoder_headers()
2967                 job->anamorphic.modulus = mod;
2968                 if (keep_height && pic_par == 2)
2969                         width = ((double)height * crop_width / crop_height) + 0.5;
2970                 job->width = width;
2971                 job->height = height;
2972                 if (max_width) 
2973                         job->maxWidth = max_width;
2974                 if (max_height) 
2975                         job->maxHeight = max_height;
2976                 job->crop[0] = crop[0]; job->crop[1] = crop[1];
2977                 job->crop[2] = crop[2]; job->crop[3] = crop[3];
2978                 if (job->anamorphic.mode == 3 && !keep_aspect)
2979                 {
2980                         gint dar_width, dar_height;
2981                         if (mode & GHB_PIC_KEEP_PAR)
2982                         {
2983                                 par_width = ghb_settings_get_int(ud->settings, 
2984                                                                                                 "PicturePARWidth");
2985                                 par_height = ghb_settings_get_int(ud->settings, 
2986                                                                                                 "PicturePARHeight");
2987                                 dar_width = ((gdouble)width * par_width / par_height) + 0.5;
2988                                 dar_height = height;
2989                         }
2990                         else
2991                         {
2992                                 dar_width = ghb_settings_get_int(ud->settings, 
2993                                                                                                 "PictureDisplayWidth");
2994                                 dar_height = ghb_settings_get_int(ud->settings, 
2995                                                                                                 "PictureDisplayHeight");
2996                         }
2997                         job->anamorphic.dar_width = dar_width;
2998                         job->anamorphic.dar_height = dar_height;
2999                         job->anamorphic.keep_display_aspect = 0;
3000                 }
3001                 else
3002                 {
3003                         job->anamorphic.dar_width = 0;
3004                         job->anamorphic.dar_height = 0;
3005                         job->anamorphic.keep_display_aspect = 1;
3006                 }
3007                 hb_set_anamorphic_size( job, &width, &height, 
3008                                                                 &par_width, &par_height );
3009         }
3010         else 
3011         {
3012                 job->anamorphic.mode = pic_par;
3013                 if (keep_aspect)
3014                 {
3015                         gdouble par;
3016                         gint new_width, new_height;
3017                         
3018                         // Compute pixel aspect ration.  
3019                         par = (gdouble)(title->height * aspect_n) / (title->width * aspect_d);
3020                         // Must scale so that par becomes 1:1
3021                         // Try to keep largest dimension
3022                         new_height = (crop_height * ((gdouble)width/crop_width) / par);
3023                         new_width = (crop_width * ((gdouble)height/crop_height) * par);
3024
3025                         if (max_width && new_width > max_width)
3026                         {
3027                                 height = new_height;
3028                         }
3029                         else if (max_height && new_height > max_height)
3030                         {
3031                                 width = new_width;
3032                         }
3033                         else if (keep_width)
3034                         {
3035                                 height = new_height;
3036                         }
3037                         else if (keep_height)
3038                         {
3039                                 width = new_width;
3040                         }
3041                         else if (width > new_width)
3042                         {
3043                                 height = new_height;
3044                         }
3045                         else
3046                         {
3047                                 width = new_width;
3048                         }
3049                         g_debug("new w %d h %d\n", width, height);
3050                 }
3051                 width = MOD_ROUND(width, mod);
3052                 height = MOD_ROUND(height, mod);
3053                 if (max_height)
3054                         height = MIN(height, max_height);
3055                 if (max_width)
3056                         width = MIN(width, max_width);
3057                 par_width = par_height = 1;
3058         }
3059         ghb_ui_update(ud, "scale_width", ghb_int64_value(width));
3060         ghb_ui_update(ud, "scale_height", ghb_int64_value(height));
3061
3062         gint disp_width, dar_width, dar_height;
3063         gchar *str;
3064
3065         disp_width = (gdouble)(width * par_width / par_height) + 0.5;
3066         hb_reduce(&dar_width, &dar_height, disp_width, height);
3067                 
3068         gint iaspect = dar_width * 9 / dar_height;
3069         if (dar_width > 2 * dar_height)
3070         {
3071                 str = g_strdup_printf("%.2f : 1", (gdouble)dar_width / dar_height);
3072         }
3073         else if (iaspect <= 16 && iaspect >= 15)
3074         {
3075                 str = g_strdup_printf("%.2f : 9", (gdouble)dar_width * 9 / dar_height);
3076         }
3077         else if (iaspect <= 12 && iaspect >= 11)
3078         {
3079                 str = g_strdup_printf("%.2f : 3", (gdouble)dar_width * 3 / dar_height);
3080         }
3081         else
3082         {
3083                 str = g_strdup_printf("%d : %d", dar_width, dar_height);
3084         }
3085         ghb_ui_update(ud, "display_aspect", ghb_string_value(str));
3086         g_free(str);
3087         ghb_ui_update(ud, "par_width", ghb_int64_value(par_width));
3088         ghb_ui_update(ud, "par_height", ghb_int64_value(par_height));
3089         ghb_ui_update(ud, "PictureDisplayWidth", ghb_int64_value(disp_width));
3090         ghb_ui_update(ud, "PictureDisplayHeight", ghb_int64_value(height));
3091         busy = FALSE;
3092 }
3093
3094 static void
3095 set_preview_job_settings(hb_job_t *job, GValue *settings)
3096 {
3097         job->crop[0] = ghb_settings_get_int(settings, "PictureTopCrop");
3098         job->crop[1] = ghb_settings_get_int(settings, "PictureBottomCrop");
3099         job->crop[2] = ghb_settings_get_int(settings, "PictureLeftCrop");
3100         job->crop[3] = ghb_settings_get_int(settings, "PictureRightCrop");
3101
3102         job->anamorphic.mode = ghb_settings_combo_int(settings, "PicturePAR");
3103         job->anamorphic.modulus = 
3104                 ghb_settings_combo_int(settings, "PictureModulus");
3105         job->width = ghb_settings_get_int(settings, "scale_width");
3106         job->height = ghb_settings_get_int(settings, "scale_height");
3107         if (ghb_settings_get_boolean(settings, "show_crop"))
3108         {
3109                 gdouble xscale = (gdouble)job->width / 
3110                         (gdouble)(job->title->width - job->crop[2] - job->crop[3]);
3111                 gdouble yscale = (gdouble)job->height / 
3112                         (gdouble)(job->title->height - job->crop[0] - job->crop[1]);
3113         
3114                 job->width += xscale * (job->crop[2] + job->crop[3]);
3115                 job->height += yscale * (job->crop[0] + job->crop[1]);
3116                 job->crop[0] = 0;
3117                 job->crop[1] = 0;
3118                 job->crop[2] = 0;
3119                 job->crop[3] = 0;
3120                 job->anamorphic.modulus = 2;
3121         }
3122
3123         gint deint = ghb_settings_combo_int(settings, "PictureDeinterlace");
3124         gint decomb = ghb_settings_combo_int(settings, "PictureDecomb");
3125         job->deinterlace = (!decomb && deint == 0) ? 0 : 1;
3126
3127         gboolean keep_aspect;
3128         keep_aspect = ghb_settings_get_boolean(settings, "PictureKeepRatio");
3129         if (job->anamorphic.mode == 3 && !keep_aspect)
3130         {
3131                 gint disp_width, disp_height;
3132                 disp_width = ghb_settings_get_int(settings, "PictureDisplayWidth");
3133                 disp_height = ghb_settings_get_int(settings, "PictureDisplayHeight");
3134                 job->anamorphic.dar_width = disp_width;
3135                 job->anamorphic.dar_height = disp_height;
3136                 job->anamorphic.keep_display_aspect = 0;
3137         }
3138         else
3139         {
3140                 job->anamorphic.keep_display_aspect = 1;
3141                 job->anamorphic.dar_width = 0;
3142                 job->anamorphic.dar_height = 0;
3143         }
3144 }
3145
3146 gint
3147 ghb_calculate_target_bitrate(GValue *settings, gint titleindex)
3148 {
3149         hb_list_t  * list;
3150         hb_title_t * title;
3151         hb_job_t   * job;
3152         gint size;
3153
3154         if (h_scan == NULL) return 1500;
3155         list = hb_get_titles( h_scan );
3156     title = hb_list_item( list, titleindex );
3157         if (title == NULL) return 1500;
3158         job   = title->job;
3159         if (job == NULL) return 1500;
3160         size = ghb_settings_get_int(settings, "VideoTargetSize");
3161         return hb_calc_bitrate( job, size );
3162 }
3163
3164 gboolean
3165 ghb_validate_filter_string(const gchar *str, gint max_fields)
3166 {
3167         gint fields = 0;
3168         gchar *end;
3169         gdouble val;
3170
3171         if (str == NULL || *str == 0) return TRUE;
3172         while (*str)
3173         {
3174                 val = g_strtod(str, &end);
3175                 if (str != end)
3176                 { // Found a numeric value
3177                         fields++;
3178                         // negative max_fields means infinate
3179                         if (max_fields >= 0 && fields > max_fields) return FALSE;
3180                         if (*end == 0)
3181                                 return TRUE;
3182                         if (*end != ':')
3183                                 return FALSE;
3184                         str = end + 1;
3185                 }
3186                 else
3187                         return FALSE;
3188         }
3189         return FALSE;
3190 }
3191
3192 gboolean
3193 ghb_validate_filters(signal_user_data_t *ud)
3194 {
3195         gchar *str;
3196         gint index;
3197         gchar *message;
3198
3199         // deinte 4
3200         index = ghb_settings_combo_int(ud->settings, "PictureDeinterlace");
3201         if (index == 1)
3202         {
3203                 str = ghb_settings_get_string(ud->settings, "PictureDeinterlaceCustom");
3204                 if (!ghb_validate_filter_string(str, 4))
3205                 {
3206                         message = g_strdup_printf(
3207                                                 "Invalid Deinterlace Settings:\n\n%s\n",
3208                                                 str);
3209                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3210                         g_free(message);
3211                         g_free(str);
3212                         return FALSE;
3213                 }
3214                 g_free(str);
3215         }
3216         // detel
3217         index = ghb_settings_combo_int(ud->settings, "PictureDetelecine");
3218         if (index == 1)
3219         {
3220                 str = ghb_settings_get_string(ud->settings, "PictureDetelecineCustom");
3221                 if (!ghb_validate_filter_string(str, 6))
3222                 {
3223                         message = g_strdup_printf(
3224                                                 "Invalid Detelecine Settings:\n\n%s\n",
3225                                                 str);
3226                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3227                         g_free(message);
3228                         g_free(str);
3229                         return FALSE;
3230                 }
3231                 g_free(str);
3232         }
3233         // decomb 4
3234         index = ghb_settings_combo_int(ud->settings, "PictureDecomb");
3235         if (index == 1)
3236         {
3237                 str = ghb_settings_get_string(ud->settings, "PictureDecombCustom");
3238                 if (!ghb_validate_filter_string(str, 7))
3239                 {
3240                         message = g_strdup_printf(
3241                                                 "Invalid Decomb Settings:\n\n%s\n",
3242                                                 str);
3243                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3244                         g_free(message);
3245                         g_free(str);
3246                         return FALSE;
3247                 }
3248                 g_free(str);
3249         }
3250         // denois 4
3251         index = ghb_settings_combo_int(ud->settings, "PictureDenoise");
3252         if (index == 1)
3253         {
3254                 str = ghb_settings_get_string(ud->settings, "PictureDenoiseCustom");
3255                 if (!ghb_validate_filter_string(str, 4))
3256                 {
3257                         message = g_strdup_printf(
3258                                                 "Invalid Denoise Settings:\n\n%s\n",
3259                                                 str);
3260                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3261                         g_free(str);
3262                         g_free(message);
3263                         return FALSE;
3264                 }
3265                 g_free(str);
3266         }
3267         return TRUE;
3268 }
3269
3270 gboolean
3271 ghb_validate_video(signal_user_data_t *ud)
3272 {
3273         gint vcodec, mux;
3274         gchar *message;
3275
3276         mux = ghb_settings_combo_int(ud->settings, "FileFormat");
3277         vcodec = ghb_settings_combo_int(ud->settings, "VideoEncoder");
3278         if ((mux == HB_MUX_MP4 || mux == HB_MUX_AVI) && 
3279                 (vcodec == HB_VCODEC_THEORA))
3280         {
3281                 // mp4|avi/theora combination is not supported.
3282                 message = g_strdup_printf(
3283                                         "Theora is not supported in the MP4 and AVI containers.\n\n"
3284                                         "You should choose a different video codec or container.\n"
3285                                         "If you continue, FFMPEG will be chosen for you.");
3286                 if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3287                 {
3288                         g_free(message);
3289                         return FALSE;
3290                 }
3291                 g_free(message);
3292                 vcodec = HB_VCODEC_FFMPEG;
3293                 ghb_ui_update(ud, "VideoEncoder", ghb_int64_value(vcodec));
3294         }
3295         return TRUE;
3296 }
3297
3298 gboolean
3299 ghb_validate_subtitles(signal_user_data_t *ud)
3300 {
3301         hb_list_t  * list;
3302         hb_title_t * title;
3303         gchar *message;
3304
3305         if (h_scan == NULL) return FALSE;
3306         list = hb_get_titles( h_scan );
3307         if( !hb_list_count( list ) )
3308         {
3309                 /* No valid title, stop right there */
3310                 g_message("No title found.\n");
3311                 return FALSE;
3312         }
3313
3314         gint titleindex;
3315
3316         titleindex = ghb_settings_combo_int(ud->settings, "title");
3317     title = hb_list_item( list, titleindex );
3318         if (title == NULL) return FALSE;
3319         gint mux = ghb_settings_combo_int(ud->settings, "FileFormat");
3320
3321         const GValue *slist, *settings;
3322         gint count, ii, track, source;
3323         gboolean burned, one_burned = FALSE;
3324
3325         slist = ghb_settings_get_value(ud->settings, "subtitle_list");
3326         count = ghb_array_len(slist);
3327         for (ii = 0; ii < count; ii++)
3328         {
3329                 settings = ghb_array_get_nth(slist, ii);
3330                 track = ghb_settings_combo_int(settings, "SubtitleTrack");
3331                 burned = ghb_settings_get_boolean(settings, "SubtitleBurned");
3332                 source = ghb_subtitle_track_source(ud, track);
3333                 if (burned && one_burned)
3334                 {
3335                         // MP4 can only handle burned vobsubs.  make sure there isn't
3336                         // already something burned in the list
3337                         message = g_strdup_printf(
3338                         "Only one subtitle may be burned into the video.\n\n"
3339                                 "You should change your subtitle selections.\n"
3340                                 "If you continue, some subtitles will be lost.");
3341                         if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3342                         {
3343                                 g_free(message);
3344                                 return FALSE;
3345                         }
3346                         g_free(message);
3347                         break;
3348                 }
3349                 else if (burned)
3350                 {
3351                         one_burned = TRUE;
3352                 }
3353                 if (!burned && mux == HB_MUX_MP4 && source == VOBSUB)
3354                 {
3355                         // MP4 can only handle burned vobsubs.  make sure there isn't
3356                         // already something burned in the list
3357                         message = g_strdup_printf(
3358                         "Your chosen container does not support soft bitmap subtitles.\n\n"
3359                                 "You should change your subtitle selections.\n"
3360                                 "If you continue, some subtitles will be lost.");
3361                         if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3362                         {
3363                                 g_free(message);
3364                                 return FALSE;
3365                         }
3366                         g_free(message);
3367                         break;
3368                 }
3369         }
3370         return TRUE;
3371 }
3372
3373 gboolean
3374 ghb_validate_audio(signal_user_data_t *ud)
3375 {
3376         hb_list_t  * list;
3377         hb_title_t * title;
3378         gchar *message;
3379         GValue *value;
3380
3381         if (h_scan == NULL) return FALSE;
3382         list = hb_get_titles( h_scan );
3383         if( !hb_list_count( list ) )
3384         {
3385                 /* No valid title, stop right there */
3386                 g_message("No title found.\n");
3387                 return FALSE;
3388         }
3389
3390         gint titleindex;
3391
3392         titleindex = ghb_settings_combo_int(ud->settings, "title");
3393     title = hb_list_item( list, titleindex );
3394         if (title == NULL) return FALSE;
3395         gint mux = ghb_settings_combo_int(ud->settings, "FileFormat");
3396
3397         const GValue *audio_list;
3398         gint count, ii;
3399
3400         audio_list = ghb_settings_get_value(ud->settings, "audio_list");
3401         count = ghb_array_len(audio_list);
3402         for (ii = 0; ii < count; ii++)
3403         {
3404                 GValue *asettings;
3405             hb_audio_config_t *taudio;
3406
3407                 asettings = ghb_array_get_nth(audio_list, ii);
3408                 gint track = ghb_settings_combo_int(asettings, "AudioTrack");
3409                 gint codec = ghb_settings_combo_int(asettings, "AudioEncoder");
3410         taudio = (hb_audio_config_t *) hb_list_audio_config_item(
3411                                                                                         title->list_audio, track );
3412                 if (!(taudio->in.codec & codec) && 
3413                         (codec & (HB_ACODEC_AC3 | HB_ACODEC_DCA)))
3414                 {
3415                         // Not supported.  AC3 is passthrough only, so input must be AC3
3416                         message = g_strdup_printf(
3417                                                 "The source does not support Pass-Thru.\n\n"
3418                                                 "You should choose a different audio codec.\n"
3419                                                 "If you continue, one will be chosen for you.");
3420                         if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3421                         {
3422                                 g_free(message);
3423                                 return FALSE;
3424                         }
3425                         g_free(message);
3426                         if (mux == HB_MUX_AVI)
3427                         {
3428                                 codec = HB_ACODEC_LAME;
3429                         }
3430                         else
3431                         {
3432                                 codec = HB_ACODEC_FAAC;
3433                         }
3434                         value = get_acodec_value(codec);
3435                         ghb_settings_take_value(asettings, "AudioEncoder", value);
3436                 }
3437                 gchar *a_unsup = NULL;
3438                 gchar *mux_s = NULL;
3439                 if (mux == HB_MUX_MP4)
3440                 { 
3441                         mux_s = "MP4";
3442                         // mp4/mp3|vorbis combination is not supported.
3443                         if (codec == HB_ACODEC_LAME)
3444                         {
3445                                 a_unsup = "MP3";
3446                                 codec = HB_ACODEC_FAAC;
3447                         }
3448                         if (codec == HB_ACODEC_VORBIS)
3449                         {
3450                                 a_unsup = "Vorbis";
3451                                 codec = HB_ACODEC_FAAC;
3452                         }
3453                         if (codec == HB_ACODEC_DCA)
3454                         {
3455                                 a_unsup = "DTS";
3456                                 codec = HB_ACODEC_FAAC;
3457                         }
3458                 }
3459                 else if (mux == HB_MUX_AVI)
3460                 {
3461                         mux_s = "AVI";
3462                         // avi/faac|vorbis combination is not supported.
3463                         if (codec == HB_ACODEC_FAAC)
3464                         {
3465                                 a_unsup = "FAAC";
3466                                 codec = HB_ACODEC_LAME;
3467                         }
3468                         if (codec == HB_ACODEC_VORBIS)
3469                         {
3470                                 a_unsup = "Vorbis";
3471                                 codec = HB_ACODEC_LAME;
3472                         }
3473                 }
3474                 else if (mux == HB_MUX_OGM)
3475                 {
3476                         mux_s = "OGM";
3477                         // avi/faac|vorbis combination is not supported.
3478                         if (codec == HB_ACODEC_FAAC)
3479                         {
3480                                 a_unsup = "FAAC";
3481                                 codec = HB_ACODEC_VORBIS;
3482                         }
3483                         if (codec == HB_ACODEC_AC3)
3484                         {
3485                                 a_unsup = "AC-3";
3486                                 codec = HB_ACODEC_VORBIS;
3487                         }
3488                         if (codec == HB_ACODEC_DCA)
3489                         {
3490                                 a_unsup = "DTS";
3491                                 codec = HB_ACODEC_VORBIS;
3492                         }
3493                 }
3494                 if (a_unsup)
3495                 {
3496                         message = g_strdup_printf(
3497                                                 "%s is not supported in the %s container.\n\n"
3498                                                 "You should choose a different audio codec.\n"
3499                                                 "If you continue, one will be chosen for you.", a_unsup, mux_s);
3500                         if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3501                         {
3502                                 g_free(message);
3503                                 return FALSE;
3504                         }
3505                         g_free(message);
3506                         value = get_acodec_value(codec);
3507                         ghb_settings_take_value(asettings, "AudioEncoder", value);
3508                 }
3509                 gint mix = ghb_settings_combo_int (asettings, "AudioMixdown");
3510                 gboolean allow_mono = TRUE;
3511                 gboolean allow_stereo = TRUE;
3512                 gboolean allow_dolby = TRUE;
3513                 gboolean allow_dpl2 = TRUE;
3514                 gboolean allow_6ch = TRUE;
3515                 allow_mono =
3516                         (taudio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
3517                         (codec != HB_ACODEC_LAME);
3518                 gint layout = taudio->in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK;
3519                 allow_stereo =
3520                         ((layout == HB_INPUT_CH_LAYOUT_MONO && !allow_mono) || layout >= HB_INPUT_CH_LAYOUT_STEREO);
3521                 allow_dolby =
3522                         (layout == HB_INPUT_CH_LAYOUT_3F1R) || 
3523                         (layout == HB_INPUT_CH_LAYOUT_3F2R) || 
3524                         (layout == HB_INPUT_CH_LAYOUT_DOLBY);
3525                 allow_dpl2 = (layout == HB_INPUT_CH_LAYOUT_3F2R);
3526                 allow_6ch =
3527                         (taudio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
3528                         (codec != HB_ACODEC_LAME) &&
3529                         (layout == HB_INPUT_CH_LAYOUT_3F2R) && 
3530                         (taudio->in.channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE);
3531
3532                 gchar *mix_unsup = NULL;
3533                 if (mix == HB_AMIXDOWN_MONO && !allow_mono)
3534                 {
3535                         mix_unsup = "mono";
3536                 }
3537                 if (mix == HB_AMIXDOWN_STEREO && !allow_stereo)
3538                 {
3539                         mix_unsup = "stereo";
3540                 }
3541                 if (mix == HB_AMIXDOWN_DOLBY && !allow_dolby)
3542                 {
3543                         mix_unsup = "Dolby";
3544                 }
3545                 if (mix == HB_AMIXDOWN_DOLBYPLII && !allow_dpl2)
3546                 {
3547                         mix_unsup = "Dolby Pro Logic II";
3548                 }
3549                 if (mix == HB_AMIXDOWN_6CH && !allow_6ch)
3550                 {
3551                         mix_unsup = "6 Channel";
3552                 }
3553                 if (mix_unsup)
3554                 {
3555                         message = g_strdup_printf(
3556                                                 "The source audio does not support %s mixdown.\n\n"
3557                                                 "You should choose a different mixdown.\n"
3558                                                 "If you continue, one will be chosen for you.", mix_unsup);
3559                         if (!ghb_message_dialog(GTK_MESSAGE_WARNING, message, "Cancel", "Continue"))
3560                         {
3561                                 g_free(message);
3562                                 return FALSE;
3563                         }
3564                         g_free(message);
3565                         mix = ghb_get_best_mix(titleindex, track, codec, mix);
3566                         value = get_amix_value(mix);
3567                         ghb_settings_take_value(asettings, "AudioMixdown", value);
3568                 }
3569         }
3570         return TRUE;
3571 }
3572
3573 gboolean
3574 ghb_validate_vquality(GValue *settings)
3575 {
3576         gint vcodec;
3577         gchar *message;
3578         gint min, max;
3579
3580         if (ghb_settings_get_boolean(settings, "nocheckvquality")) return TRUE;
3581         vcodec = ghb_settings_combo_int(settings, "VideoEncoder");
3582         gdouble vquality;
3583         vquality = ghb_settings_get_double(settings, "VideoQualitySlider");
3584         if (ghb_settings_get_boolean(settings, "vquality_type_constant"))
3585         {
3586                 switch (vcodec)
3587                 {
3588                         case HB_VCODEC_X264:
3589                         {
3590                                 min = 16;
3591                                 max = 30;
3592                         } break;
3593
3594                         case HB_VCODEC_FFMPEG:
3595                         {
3596                                 min = 1;
3597                                 max = 8;
3598                         } break;
3599
3600                         case HB_VCODEC_THEORA:
3601                         {
3602                                 min = 0;
3603                                 max = 63;
3604                         } break;
3605
3606                         default:
3607                         {
3608                                 min = 48;
3609                                 max = 62;
3610                         } break;
3611                 }
3612                 if (vquality < min || vquality > max)
3613                 {
3614                         message = g_strdup_printf(
3615                                                 "Interesting video quality choise: %d\n\n"
3616                                                 "Typical values range from %d to %d.\n"
3617                                                 "Are you sure you wish to use this setting?",
3618                                                 (gint)vquality, min, max);
3619                         if (!ghb_message_dialog(GTK_MESSAGE_QUESTION, message, 
3620                                                                         "Cancel", "Continue"))
3621                         {
3622                                 g_free(message);
3623                                 return FALSE;
3624                         }
3625                         g_free(message);
3626                 }
3627         }
3628         return TRUE;
3629 }
3630
3631 static void
3632 add_job(hb_handle_t *h, GValue *js, gint unique_id, gint titleindex)
3633 {
3634         hb_list_t  * list;
3635         hb_title_t * title;
3636         hb_job_t   * job;
3637         static gchar *x264opts;
3638         gint sub_id = 0;
3639         gboolean tweaks = FALSE;
3640         gchar *detel_str = NULL;
3641         gchar *decomb_str = NULL;
3642         gchar *deint_str = NULL;
3643         gchar *deblock_str = NULL;
3644         gchar *denoise_str = NULL;
3645         gchar *dest_str = NULL;
3646
3647         g_debug("add_job()\n");
3648         if (h == NULL) return;
3649         list = hb_get_titles( h );
3650         if( !hb_list_count( list ) )
3651         {
3652                 /* No valid title, stop right there */
3653                 return;
3654         }
3655
3656     title = hb_list_item( list, titleindex );
3657         if (title == NULL) return;
3658
3659         /* Set job settings */
3660         job   = title->job;
3661         if (job == NULL) return;
3662
3663         job->start_at_preview = ghb_settings_get_int(js, "start_frame") + 1;
3664         if (job->start_at_preview)
3665         {
3666                 job->seek_points = ghb_settings_get_int(js, "preview_count");
3667                 job->pts_to_stop = ghb_settings_get_int(js, "live_duration") * 90000LL;
3668         }
3669
3670         tweaks = ghb_settings_get_boolean(js, "allow_tweaks");
3671         job->mux = ghb_settings_combo_int(js, "FileFormat");
3672         if (job->mux == HB_MUX_MP4)
3673         {
3674                 job->largeFileSize = ghb_settings_get_boolean(js, "Mp4LargeFile");
3675                 job->mp4_optimize = ghb_settings_get_boolean(js, "Mp4HttpOptimize");
3676         }
3677         else
3678         {
3679                 job->largeFileSize = FALSE;
3680                 job->mp4_optimize = FALSE;
3681         }
3682         if (!job->start_at_preview)
3683         {
3684                 gint chapter_start, chapter_end;
3685                 chapter_start = ghb_settings_get_int(js, "start_chapter");
3686                 chapter_end = ghb_settings_get_int(js, "end_chapter");
3687                 gint num_chapters = hb_list_count(title->list_chapter);
3688                 job->chapter_start = MIN( num_chapters, chapter_start );
3689                 job->chapter_end   = MAX( job->chapter_start, chapter_end );
3690
3691                 job->chapter_markers = ghb_settings_get_boolean(js, "ChapterMarkers");
3692                 if (job->chapter_start == job->chapter_end)
3693                         job->chapter_markers = 0;
3694                 if ( job->chapter_markers )
3695                 {
3696                         GValue *chapters;
3697                         GValue *chapter;
3698                         gint chap;
3699                         gint count;
3700                 
3701                         chapters = ghb_settings_get_value(js, "chapter_list");
3702                         count = ghb_array_len(chapters);
3703                         for(chap = chapter_start; chap <= chapter_end; chap++)
3704                         {
3705                                 hb_chapter_t * chapter_s;
3706                                 gchar *name;
3707                                 
3708                                 name = NULL;
3709                                 if (chap-1 < count)
3710                                 {
3711                                         chapter = ghb_array_get_nth(chapters, chap-1);
3712                                         name = ghb_value_string(chapter); 
3713                                 }
3714                                 if (name == NULL)
3715                                 {
3716                                         name = g_strdup_printf ("Chapter %2d", chap);
3717                                 }
3718                                 chapter_s = hb_list_item( job->title->list_chapter, chap - 1);
3719                                 strncpy(chapter_s->title, name, 1023);
3720                                 chapter_s->title[1023] = '\0';
3721                                 g_free(name);
3722                         }
3723                 }
3724         }
3725         job->crop[0] = ghb_settings_get_int(js, "PictureTopCrop");
3726         job->crop[1] = ghb_settings_get_int(js, "PictureBottomCrop");
3727         job->crop[2] = ghb_settings_get_int(js, "PictureLeftCrop");
3728         job->crop[3] = ghb_settings_get_int(js, "PictureRightCrop");
3729
3730         
3731         gint decomb = ghb_settings_combo_int(js, "PictureDecomb");
3732         gint deint = ghb_settings_combo_int(js, "PictureDeinterlace");
3733         if (!decomb)
3734                 job->deinterlace = (deint != 0) ? 1 : 0;
3735         else
3736                 job->deinterlace = 0;
3737     job->grayscale   = ghb_settings_get_boolean(js, "VideoGrayScale");
3738
3739         job->anamorphic.mode = ghb_settings_combo_int(js, "PicturePAR");
3740         job->anamorphic.modulus = ghb_settings_combo_int(js, "PictureModulus");
3741
3742         /* Add selected filters */
3743         job->filters = hb_list_init();
3744         gint detel = ghb_settings_combo_int(js, "PictureDetelecine");
3745         if ( detel )
3746         {
3747                 if (detel != 1)
3748                 {
3749                         if (detel_opts.map[detel].svalue != NULL)
3750                                 detel_str = g_strdup(detel_opts.map[detel].svalue);
3751                 }
3752                 else
3753                         detel_str = ghb_settings_get_string(js, "PictureDetelecineCustom");
3754                 hb_filter_detelecine.settings = detel_str;
3755                 hb_list_add( job->filters, &hb_filter_detelecine );
3756         }
3757         if ( decomb )
3758         {
3759                 if (decomb != 1)
3760                 {
3761                         if (decomb_opts.map[decomb].svalue != NULL)
3762                                 decomb_str = g_strdup(decomb_opts.map[decomb].svalue);
3763                 }
3764                 else
3765                         decomb_str = ghb_settings_get_string(js, "PictureDecombCustom");
3766                 hb_filter_decomb.settings = decomb_str;
3767                 hb_list_add( job->filters, &hb_filter_decomb );
3768         }
3769         if( job->deinterlace )
3770         {
3771                 if (deint != 1)
3772                 {
3773                         if (deint_opts.map[deint].svalue != NULL)
3774                                 deint_str = g_strdup(deint_opts.map[deint].svalue);
3775                 }
3776                 else
3777                         deint_str = ghb_settings_get_string(js, "PictureDeinterlaceCustom");
3778                 hb_filter_deinterlace.settings = deint_str;
3779                 hb_list_add( job->filters, &hb_filter_deinterlace );
3780         }
3781         gint deblock = ghb_settings_get_int(js, "PictureDeblock");
3782         if( deblock >= 5 )
3783         {
3784                 deblock_str = g_strdup_printf("%d", deblock);
3785                 hb_filter_deblock.settings = deblock_str;
3786                 hb_list_add( job->filters, &hb_filter_deblock );
3787         }
3788         gint denoise = ghb_settings_combo_int(js, "PictureDenoise");
3789         if( denoise )
3790         {
3791                 if (denoise != 1)
3792                 {
3793                         if (denoise_opts.map[denoise].svalue != NULL)
3794                                 denoise_str = g_strdup(denoise_opts.map[denoise].svalue);
3795                 }
3796                 else
3797                         denoise_str = ghb_settings_get_string(js, "PictureDenoiseCustom");
3798                 hb_filter_denoise.settings = denoise_str;
3799                 hb_list_add( job->filters, &hb_filter_denoise );
3800         }
3801         job->width = ghb_settings_get_int(js, "scale_width");
3802         job->height = ghb_settings_get_int(js, "scale_height");
3803
3804         job->vcodec = ghb_settings_combo_int(js, "VideoEncoder");
3805         if ((job->mux == HB_MUX_MP4 || job->mux == HB_MUX_AVI) && 
3806                 (job->vcodec == HB_VCODEC_THEORA))
3807         {
3808                 // mp4|avi/theora combination is not supported.
3809                 job->vcodec = HB_VCODEC_FFMPEG;
3810         }
3811         if ((job->vcodec == HB_VCODEC_X264) && (job->mux == HB_MUX_MP4))
3812         {
3813                 job->ipod_atom = ghb_settings_get_boolean(js, "Mp4iPodCompatible");
3814         }
3815         if (ghb_settings_get_boolean(js, "vquality_type_constant"))
3816         {
3817                 gdouble vquality;
3818                 vquality = ghb_settings_get_double(js, "VideoQualitySlider");
3819                 job->vquality =  vquality;
3820                 job->vbitrate = 0;
3821         }
3822         else if (ghb_settings_get_boolean(js, "vquality_type_bitrate"))
3823         {
3824                 job->vquality = -1.0;
3825                 job->vbitrate = ghb_settings_get_int(js, "VideoAvgBitrate");
3826         }
3827
3828         gint vrate = ghb_settings_combo_int(js, "VideoFramerate");
3829         if( vrate == 0 )
3830         {
3831                 job->vrate = title->rate;
3832                 job->vrate_base = title->rate_base;
3833                 job->cfr = 0;
3834         }
3835         else
3836         {
3837                 job->vrate = 27000000;
3838                 job->vrate_base = vrate;
3839                 job->cfr = 1;
3840         }
3841
3842         // AVI container does not support variable frame rate.
3843         // OGM supports variable frame rate, but bases all timing on
3844         // DTS, which breaks when b-frames are used since it is
3845         // impossible to reconstruct PTS from DTS when the framerate
3846         // is variable.  
3847         if (job->mux == HB_MUX_AVI || job->mux == HB_MUX_OGM)
3848         {
3849                 job->cfr = 1;
3850         }
3851
3852         const GValue *audio_list;
3853         gint count, ii;
3854         gint tcount = 0;
3855         
3856         audio_list = ghb_settings_get_value(js, "audio_list");
3857         count = ghb_array_len(audio_list);
3858         for (ii = 0; ii < count; ii++)
3859         {
3860                 GValue *asettings;
3861             hb_audio_config_t audio;
3862             hb_audio_config_t *taudio;
3863
3864                 hb_audio_config_init(&audio);
3865                 asettings = ghb_array_get_nth(audio_list, ii);
3866                 audio.in.track = ghb_settings_get_int(asettings, "AudioTrack");
3867                 audio.out.track = tcount;
3868                 audio.out.codec = ghb_settings_combo_int(asettings, "AudioEncoder");
3869         taudio = (hb_audio_config_t *) hb_list_audio_config_item(
3870                                                                         title->list_audio, audio.in.track );
3871                 if (audio.out.codec & (HB_ACODEC_AC3 | HB_ACODEC_DCA))
3872                 {
3873                         if (!(taudio->in.codec & audio.out.codec))
3874                         {
3875                                 // Not supported.  AC3 is passthrough only, so input must be AC3
3876                                 if (job->mux == HB_MUX_AVI)
3877                                 {
3878                                         audio.out.codec = HB_ACODEC_LAME;
3879                                 }
3880                                 else
3881                                 {
3882                                         audio.out.codec = HB_ACODEC_FAAC;
3883                                 }
3884                         }
3885                         else
3886                         {
3887                                 audio.out.codec &= taudio->in.codec;
3888                         }
3889                 }
3890                 if ((job->mux == HB_MUX_MP4) && 
3891                         ((audio.out.codec == HB_ACODEC_LAME) ||
3892                         (audio.out.codec == HB_ACODEC_VORBIS)))
3893                 {
3894                         // mp4/mp3|vorbis combination is not supported.
3895                         audio.out.codec = HB_ACODEC_FAAC;
3896                 }
3897                 if ((job->mux == HB_MUX_AVI) && 
3898                         ((audio.out.codec == HB_ACODEC_FAAC) ||
3899                         (audio.out.codec == HB_ACODEC_VORBIS)))
3900                 {
3901                         // avi/faac|vorbis combination is not supported.
3902                         audio.out.codec = HB_ACODEC_LAME;
3903                 }
3904                 if ((job->mux == HB_MUX_OGM) && 
3905                         ((audio.out.codec == HB_ACODEC_FAAC) ||
3906                         (audio.out.codec == HB_ACODEC_AC3) ||
3907                         (audio.out.codec == HB_ACODEC_DCA)))
3908                 {
3909                         // ogm/faac|ac3 combination is not supported.
3910                         audio.out.codec = HB_ACODEC_VORBIS;
3911                 }
3912         audio.out.dynamic_range_compression = 
3913                         ghb_settings_get_double(asettings, "AudioTrackDRCSlider");
3914                 // It would be better if this were done in libhb for us, but its not yet.
3915                 if (audio.out.codec == HB_ACODEC_AC3 || audio.out.codec == HB_ACODEC_DCA)
3916                 {
3917                         audio.out.mixdown = 0;
3918                 }
3919                 else
3920                 {
3921                         audio.out.mixdown = ghb_settings_combo_int(asettings, "AudioMixdown");
3922                         // Make sure the mixdown is valid and pick a new one if not.
3923                         audio.out.mixdown = ghb_get_best_mix(titleindex, 
3924                                 audio.in.track, audio.out.codec, audio.out.mixdown);
3925                         audio.out.bitrate = 
3926                                 ghb_settings_combo_int(asettings, "AudioBitrate");
3927                         gint srate = ghb_settings_combo_int(asettings, "AudioSamplerate");
3928                         if (srate == 0) // 0 is same as source
3929                                 audio.out.samplerate = taudio->in.samplerate;
3930                         else
3931                                 audio.out.samplerate = srate;
3932                 }
3933
3934                 // Add it to the jobs audio list
3935         hb_audio_add( job, &audio );
3936                 tcount++;
3937         }
3938         // I was tempted to move this up with the reset of the video quality
3939         // settings, but I suspect the settings above need to be made
3940         // first in order for hb_calc_bitrate to be accurate.
3941         if (ghb_settings_get_boolean(js, "vquality_type_target"))
3942         {
3943                 gint size;
3944                 
3945                 size = ghb_settings_get_int(js, "VideoTargetSize");
3946         job->vbitrate = hb_calc_bitrate( job, size );
3947                 job->vquality = -1.0;
3948         }
3949
3950         dest_str = ghb_settings_get_string(js, "destination");
3951         job->file = dest_str;
3952         job->crf = ghb_settings_get_boolean(js, "constant_rate_factor");
3953         // TODO: libhb holds onto a reference to the x264opts and is not
3954         // finished with it until encoding the job is done.  But I can't
3955         // find a way to get at the job before it is removed in order to
3956         // free up the memory I am allocating here.
3957         // The short story is THIS LEAKS.
3958         x264opts = ghb_build_x264opts_string(js);
3959         
3960         if( x264opts != NULL && *x264opts != '\0' )
3961         {
3962                 job->x264opts = x264opts;
3963         }
3964         else /*avoids a bus error crash when options aren't specified*/
3965         {
3966                 job->x264opts =  NULL;
3967         }
3968
3969         const GValue *subtitle_list;
3970         gint subtitle;
3971         gboolean force, burned, def, one_burned = FALSE;
3972         
3973         job->select_subtitle = NULL;
3974         if (ghb_settings_get_boolean(js, "SubtitleForeignSearch"))
3975         {
3976                 force = ghb_settings_get_boolean(js, "SubtitleForeignForced");
3977                 burned = ghb_settings_get_boolean(js, "SubtitleForeignBurned");
3978                 def = ghb_settings_get_boolean(js, "SubtitleForeignDefaultTrack");
3979
3980                 if (burned || job->mux != HB_MUX_MP4)
3981                 {
3982                         if (!burned && job->mux == HB_MUX_MKV)
3983                         {
3984                                 job->select_subtitle_config.dest = PASSTHRUSUB;
3985                         }
3986                         if (burned)
3987                                 one_burned = TRUE;
3988                         job->select_subtitle_config.force = force;
3989                         job->select_subtitle_config.default_track = def;
3990                         job->indepth_scan = 1;
3991                         job->select_subtitle = malloc(sizeof(hb_subtitle_t*));
3992                         *job->select_subtitle = NULL;
3993                 }
3994         }
3995         subtitle_list = ghb_settings_get_value(js, "subtitle_list");
3996         count = ghb_array_len(subtitle_list);
3997         for (ii = 0; ii < count; ii++)
3998         {
3999                 GValue *ssettings;
4000
4001                 ssettings = ghb_array_get_nth(subtitle_list, ii);
4002
4003                 subtitle = ghb_settings_get_int(ssettings, "SubtitleTrack");
4004                 force = ghb_settings_get_boolean(ssettings, "SubtitleForced");
4005                 burned = ghb_settings_get_boolean(ssettings, "SubtitleBurned");
4006                 def = ghb_settings_get_boolean(ssettings, "SubtitleDefaultTrack");
4007
4008                 if (subtitle >= 0)
4009                 {
4010                 hb_subtitle_t * subt;
4011                 hb_subtitle_config_t sub_config;
4012
4013                 subt = (hb_subtitle_t *)hb_list_item(title->list_subtitle, subtitle);
4014                         sub_config = subt->config;
4015                         if (subt != NULL)
4016                         {
4017                                 if (!burned && job->mux == HB_MUX_MKV && 
4018                                         subt->format == PICTURESUB)
4019                                 {
4020                                         sub_config.dest = PASSTHRUSUB;
4021                                 }
4022                                 else if (!burned && job->mux == HB_MUX_MP4 && 
4023                                         subt->format == PICTURESUB)
4024                                 {
4025                                         // Skip any non-burned vobsubs when output is mp4
4026                                         continue;
4027                                 }
4028                                 else if ( burned && subt->format == PICTURESUB )
4029                                 {
4030                                         // Only allow one subtitle to be burned into the video
4031                                         if (one_burned)
4032                                                 continue;
4033                                         one_burned = TRUE;
4034                                 }
4035                                 sub_config.force = force;
4036                                 sub_config.default_track = def;
4037                         hb_subtitle_add( job, &sub_config, subtitle );
4038                         }
4039                 }
4040         }
4041
4042         if (job->indepth_scan == 1)
4043         {
4044                 // Subtitle scan. Look for subtitle matching audio language
4045                 char *x264opts_tmp;
4046
4047                 /*
4048                  * When subtitle scan is enabled do a fast pre-scan job
4049                  * which will determine which subtitles to enable, if any.
4050                  */
4051                 job->pass = -1;
4052                 job->indepth_scan = 1;
4053
4054                 x264opts_tmp = job->x264opts;
4055                 job->x264opts = NULL;
4056
4057
4058                 /*
4059                  * Add the pre-scan job
4060                  */
4061                 job->sequence_id = (unique_id & 0xFFFFFF) | (sub_id++ << 24);
4062                 hb_add( h, job );
4063                 //if (job->x264opts != NULL)
4064                 //      g_free(job->x264opts);
4065
4066                 job->x264opts = x264opts_tmp;
4067         }
4068
4069         if( ghb_settings_get_boolean(js, "VideoTwoPass") &&
4070                 !ghb_settings_get_boolean(js, "vquality_type_constant"))
4071         {
4072                 /*
4073                  * If subtitle_scan is enabled then only turn it on
4074                  * for the second pass and then off again for the
4075                  * second.
4076                  */
4077                 hb_subtitle_t **subtitle_tmp = job->select_subtitle;
4078                 job->select_subtitle = NULL;
4079                 job->pass = 1;
4080                 job->indepth_scan = 0;
4081                 gchar *x264opts2 = NULL;
4082                 if (x264opts)
4083                 {
4084                         x264opts2 = g_strdup(x264opts);
4085                 }
4086                 /*
4087                  * If turbo options have been selected then append them
4088                  * to the x264opts now (size includes one ':' and the '\0')
4089                  */
4090                 if( ghb_settings_get_boolean(js, "VideoTurboTwoPass") )
4091                 {
4092                         char *tmp_x264opts;
4093
4094                         if ( x264opts )
4095                         {
4096                                 tmp_x264opts = g_strdup_printf("%s:%s", x264opts, turbo_opts);
4097                                 g_free(x264opts);
4098                         } 
4099                         else 
4100                         {
4101                                 /*
4102                                  * No x264opts to modify, but apply the turbo options
4103                                  * anyway as they may be modifying defaults
4104                                  */
4105                                 tmp_x264opts = g_strdup_printf("%s", turbo_opts);
4106                         }
4107                         x264opts = tmp_x264opts;
4108
4109                         job->x264opts = x264opts;
4110                 }
4111                 job->sequence_id = (unique_id & 0xFFFFFF) | (sub_id++ << 24);
4112                 hb_add( h, job );
4113                 //if (job->x264opts != NULL)
4114                 //      g_free(job->x264opts);
4115
4116                 job->select_subtitle = subtitle_tmp;
4117                 job->pass = 2;
4118                 /*
4119                  * On the second pass we turn off subtitle scan so that we
4120                  * can actually encode using any subtitles that were auto
4121                  * selected in the first pass (using the whacky select-subtitle
4122                  * attribute of the job).
4123                  */
4124                 job->indepth_scan = 0;
4125                 job->x264opts = x264opts2;
4126                 job->sequence_id = (unique_id & 0xFFFFFF) | (sub_id++ << 24);
4127                 hb_add( h, job );
4128                 //if (job->x264opts != NULL)
4129                 //      g_free(job->x264opts);
4130         }
4131         else
4132         {
4133                 job->indepth_scan = 0;
4134                 job->pass = 0;
4135                 job->sequence_id = (unique_id & 0xFFFFFF) | (sub_id++ << 24);
4136                 hb_add( h, job );
4137                 //if (job->x264opts != NULL)
4138                 //      g_free(job->x264opts);
4139         }
4140
4141         // clean up audio list
4142         gint num_audio_tracks = hb_list_count(job->list_audio);
4143         for(ii = 0; ii < num_audio_tracks; ii++)
4144         {
4145                 hb_audio_t *audio = (hb_audio_t*)hb_list_item(job->list_audio, 0);
4146                 hb_list_rem(job->list_audio, audio);
4147                 free(audio);
4148         }
4149
4150         // clean up subtitle list
4151         gint num_subtitle_tracks = hb_list_count(job->list_subtitle);
4152         for(ii = 0; ii < num_subtitle_tracks; ii++)
4153         {
4154                 hb_subtitle_t *subtitle = hb_list_item(job->list_subtitle, 0);
4155                 hb_list_rem(job->list_subtitle, subtitle);
4156                 free(subtitle);
4157         }
4158
4159         if (detel_str) g_free(detel_str);
4160         if (decomb_str) g_free(decomb_str);
4161         if (deint_str) g_free(deint_str);
4162         if (deblock_str) g_free(deblock_str);
4163         if (denoise_str) g_free(denoise_str);
4164         if (dest_str) g_free(dest_str);
4165 }
4166
4167 void
4168 ghb_add_job(GValue *js, gint unique_id)
4169 {
4170         // Since I'm doing a scan of the single title I want just prior 
4171         // to adding the job, there is only the one title to choose from.
4172         add_job(h_queue, js, unique_id, 0);
4173 }
4174
4175 void
4176 ghb_add_live_job(GValue *js, gint unique_id)
4177 {
4178         // Since I'm doing a scan of the single title I want just prior 
4179         // to adding the job, there is only the one title to choose from.
4180         gint titleindex = ghb_settings_combo_int(js, "title");
4181         add_job(h_scan, js, unique_id, titleindex);
4182 }
4183
4184 void
4185 ghb_remove_job(gint unique_id)
4186 {
4187     hb_job_t * job;
4188     gint ii;
4189         
4190         // Multiples passes all get the same id
4191         // remove them all.
4192         // Go backwards through list, so reordering doesn't screw me.
4193         ii = hb_count(h_queue) - 1;
4194     while ((job = hb_job(h_queue, ii--)) != NULL)
4195     {
4196         if ((job->sequence_id & 0xFFFFFF) == unique_id)
4197                         hb_rem(h_queue, job);
4198     }
4199 }
4200
4201 void
4202 ghb_start_queue()
4203 {
4204         hb_start( h_queue );
4205 }
4206
4207 void
4208 ghb_stop_queue()
4209 {
4210         hb_stop( h_queue );
4211 }
4212
4213 void
4214 ghb_start_live_encode()
4215 {
4216         hb_start( h_scan );
4217 }
4218
4219 void
4220 ghb_stop_live_encode()
4221 {
4222         hb_stop( h_scan );
4223 }
4224
4225 void
4226 ghb_pause_queue()
4227 {
4228     hb_state_t s;
4229     hb_get_state2( h_queue, &s );
4230
4231     if( s.state == HB_STATE_PAUSED )
4232     {
4233         hb_resume( h_queue );
4234     }
4235     else
4236     {
4237         hb_pause( h_queue );
4238     }
4239 }
4240
4241 static void
4242 vert_line(
4243         GdkPixbuf * pb, 
4244         guint8 r, 
4245         guint8 g, 
4246         guint8 b, 
4247         gint x, 
4248         gint y, 
4249         gint len, 
4250         gint width)
4251 {
4252         guint8 *pixels = gdk_pixbuf_get_pixels (pb);
4253         guint8 *dst;
4254         gint ii, jj;
4255         gint channels = gdk_pixbuf_get_n_channels (pb);
4256         gint stride = gdk_pixbuf_get_rowstride (pb);
4257
4258         for (jj = 0; jj < width; jj++)
4259         {
4260                 dst = pixels + y * stride + (x+jj) * channels;
4261                 for (ii = 0; ii < len; ii++)
4262                 {
4263                         dst[0] = r;
4264                         dst[1] = g;
4265                         dst[2] = b;
4266                         dst += stride;
4267                 }
4268         }
4269 }
4270
4271 static void
4272 horz_line(
4273         GdkPixbuf * pb, 
4274         guint8 r, 
4275         guint8 g, 
4276         guint8 b, 
4277         gint x, 
4278         gint y, 
4279         gint len,
4280         gint width)
4281 {
4282         guint8 *pixels = gdk_pixbuf_get_pixels (pb);
4283         guint8 *dst;
4284         gint ii, jj;
4285         gint channels = gdk_pixbuf_get_n_channels (pb);
4286         gint stride = gdk_pixbuf_get_rowstride (pb);
4287
4288         for (jj = 0; jj < width; jj++)
4289         {
4290                 dst = pixels + (y+jj) * stride + x * channels;
4291                 for (ii = 0; ii < len; ii++)
4292                 {
4293                         dst[0] = r;
4294                         dst[1] = g;
4295                         dst[2] = b;
4296                         dst += channels;
4297                 }
4298         }
4299 }
4300
4301 static void
4302 hash_pixbuf(
4303         GdkPixbuf * pb,
4304         gint        x,
4305         gint        y,
4306         gint        w,
4307         gint        h,
4308         gint        step,
4309         gint            orientation)
4310 {
4311         gint ii, jj;
4312         gint line_width = 8;
4313         struct
4314         {
4315                 guint8 r;
4316                 guint8 g;
4317                 guint8 b;
4318         } c[4] = 
4319         {{0x80, 0x80, 0x80},{0xC0, 0x80, 0x70},{0x80, 0xA0, 0x80},{0x70, 0x80, 0xA0}};
4320
4321         if (!orientation)
4322         {
4323                 // vertical lines
4324                 for (ii = x, jj = 0; ii+line_width < x+w; ii += step, jj++)
4325                 {
4326                         vert_line(pb, c[jj&3].r, c[jj&3].g, c[jj&3].b, ii, y, h, line_width);
4327                 }
4328         }
4329         else
4330         {
4331                 // horizontal lines
4332                 for (ii = y, jj = 0; ii+line_width < y+h; ii += step, jj++)
4333                 {
4334                         horz_line(pb, c[jj&3].r, c[jj&3].g, c[jj&3].b, x, ii, w, line_width);
4335                 }
4336         }
4337 }
4338
4339 GdkPixbuf*
4340 ghb_get_preview_image(
4341         gint titleindex, 
4342         gint index, 
4343         signal_user_data_t *ud,
4344         gint *out_width,
4345         gint *out_height)
4346 {
4347         GValue *settings;
4348         hb_title_t *title;
4349         hb_list_t  *list;
4350         
4351         settings = ud->settings;
4352         list = hb_get_titles( h_scan );
4353         if( !hb_list_count( list ) )
4354         {
4355                 /* No valid title, stop right there */
4356                 return NULL;
4357         }
4358     title = hb_list_item( list, titleindex );
4359         if (title == NULL) return NULL;
4360         if (title->job == NULL) return NULL;
4361         set_preview_job_settings(title->job, settings);
4362
4363         // hb_get_preview doesn't compensate for anamorphic, so lets
4364         // calculate scale factors
4365         gint width, height, par_width = 1, par_height = 1;
4366         gint pic_par = ghb_settings_combo_int(settings, "PicturePAR");
4367         if (pic_par)
4368         {
4369                 hb_set_anamorphic_size( title->job, &width, &height, 
4370                                                                 &par_width, &par_height );
4371         }
4372
4373         // Make sure we have a big enough buffer to receive the image from libhb
4374         gint dstWidth = title->job->width;
4375         gint dstHeight= title->job->height;
4376
4377         static guint8 *buffer = NULL;
4378         static gint bufferSize = 0;
4379         gint newSize;
4380
4381         newSize = dstWidth * dstHeight * 4;
4382         if( bufferSize < newSize )
4383         {
4384                 bufferSize = newSize;
4385                 buffer     = (guint8*) g_realloc( buffer, bufferSize );
4386         }
4387         hb_get_preview( h_scan, title, index, buffer );
4388
4389         // Create an GdkPixbuf and copy the libhb image into it, converting it from
4390         // libhb's format something suitable.
4391         
4392         // The image data returned by hb_get_preview is 4 bytes per pixel, 
4393         // BGRA format. Alpha is ignored.
4394
4395         GdkPixbuf *preview = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, dstWidth, dstHeight);
4396         guint8 *pixels = gdk_pixbuf_get_pixels (preview);
4397         
4398         guint32 *src = (guint32*)buffer;
4399         guint8 *dst = pixels;
4400
4401         gint ii, jj;
4402         gint channels = gdk_pixbuf_get_n_channels (preview);
4403         gint stride = gdk_pixbuf_get_rowstride (preview);
4404         guint8 *tmp;
4405
4406         for (ii = 0; ii < dstHeight; ii++)
4407         {
4408                 tmp = dst;
4409                 for (jj = 0; jj < dstWidth; jj++)
4410                 {
4411                         tmp[0] = src[0] >> 16;
4412                         tmp[1] = src[0] >> 8;
4413                         tmp[2] = src[0] >> 0;
4414                         tmp += channels;
4415                         src++;
4416                 }
4417                 dst += stride;
4418         }
4419         gint w = ghb_settings_get_int(settings, "scale_width");
4420         gint h = ghb_settings_get_int(settings, "scale_height");
4421         ghb_par_scale(ud, &w, &h, par_width, par_height);
4422
4423         gint c0, c1, c2, c3;
4424         c0 = ghb_settings_get_int(settings, "PictureTopCrop");
4425         c1 = ghb_settings_get_int(settings, "PictureBottomCrop");
4426         c2 = ghb_settings_get_int(settings, "PictureLeftCrop");
4427         c3 = ghb_settings_get_int(settings, "PictureRightCrop");
4428
4429         gdouble xscale = (gdouble)w / (gdouble)(title->width - c2 - c3);
4430         gdouble yscale = (gdouble)h / (gdouble)(title->height - c0 - c1);
4431         
4432         ghb_par_scale(ud, &dstWidth, &dstHeight, par_width, par_height);
4433         *out_width = w;
4434         *out_height = h;
4435         if (ghb_settings_get_boolean(settings, "reduce_hd_preview"))
4436         {
4437                 GdkScreen *ss;
4438                 gint s_w, s_h;
4439                 gint orig_w, orig_h;
4440                 gint factor = 80;
4441
4442                 if (ghb_settings_get_boolean(settings, "preview_fullscreen"))
4443                 {
4444                         factor = 100;
4445                 }
4446                 ss = gdk_screen_get_default();
4447                 s_w = gdk_screen_get_width(ss);
4448                 s_h = gdk_screen_get_height(ss);
4449                 orig_w = dstWidth;
4450                 orig_h = dstHeight;
4451
4452                 if (dstWidth > s_w * factor / 100)
4453                 {
4454                         dstWidth = s_w * factor / 100;
4455                         dstHeight = dstHeight * dstWidth / orig_w;
4456                 }
4457                 if (dstHeight > s_h * factor / 100)
4458                 {
4459                         dstHeight = s_h * factor / 100;
4460                         dstWidth = dstWidth * dstHeight / orig_h;
4461                 }
4462                 xscale *= (gdouble)dstWidth / orig_w;
4463                 yscale *= (gdouble)dstHeight / orig_h;
4464                 w *= (gdouble)dstWidth / orig_w;
4465                 h *= (gdouble)dstHeight / orig_h;
4466         }
4467         GdkPixbuf *scaled_preview;
4468         scaled_preview = gdk_pixbuf_scale_simple(preview, dstWidth, dstHeight, GDK_INTERP_HYPER);
4469         if (ghb_settings_get_boolean(settings, "show_crop"))
4470         {
4471                 c0 *= yscale;
4472                 c1 *= yscale;
4473                 c2 *= xscale;
4474                 c3 *= xscale;
4475                 // Top
4476                 hash_pixbuf(scaled_preview, c2, 0, w, c0, 32, 0);
4477                 // Bottom
4478                 hash_pixbuf(scaled_preview, c2, dstHeight-c1, w, c1, 32, 0);
4479                 // Left
4480                 hash_pixbuf(scaled_preview, 0, c0, c2, h, 32, 1);
4481                 // Right
4482                 hash_pixbuf(scaled_preview, dstWidth-c3, c0, c3, h, 32, 1);
4483         }
4484         g_object_unref (preview);
4485         return scaled_preview;
4486 }
4487
4488 static void
4489 sanitize_volname(gchar *name)
4490 {
4491         gchar *a, *b;
4492
4493         a = b = name;
4494         while (*b)
4495         {
4496                 switch(*b)
4497                 {
4498                 case '<':
4499                         b++;
4500                         break;
4501                 case '>':
4502                         b++;
4503                         break;
4504                 default:
4505                         *a = *b;
4506                         a++; b++;
4507                         break;
4508                 }
4509         }
4510         *a = 0;
4511 }
4512
4513 gchar*
4514 ghb_dvd_volname(const gchar *device)
4515 {
4516         gchar *name;
4517         name = hb_dvd_name((gchar*)device);
4518         if (name != NULL && name[0] != 0)
4519         {
4520                 name = g_strdup(name);
4521                 sanitize_volname(name);
4522                 return name;
4523         }
4524         return NULL;
4525 }