OSDN Git Service

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