diff options
author | jstebbins <[email protected]> | 2011-08-22 16:10:31 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-08-22 16:10:31 +0000 |
commit | 29bda628a50afb63d649afbe090888d0d9d10269 (patch) | |
tree | 2a771825881539e3fe7314593ec0fa3f9ec2148b /gtk | |
parent | 89b1f5e9b7fe81172664b6d406aac31dd8a68e59 (diff) |
LinGui: make values for preset key AudioEncoderFallback compatible with mac ui
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4191 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/presets.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gtk/src/presets.c b/gtk/src/presets.c index 241fa2b3a..2ee26fe6d 100644 --- a/gtk/src/presets.c +++ b/gtk/src/presets.c @@ -2002,8 +2002,8 @@ static value_map_t acodec_xlat[] = {"AAC (faac)", "faac"}, {"AAC (CoreAudio)", "faac"}, {"HE-AAC (CoreAudio)", "faac"}, - {"AC3", "ac3"}, // Backwards compatibility with mac ui {"AC3 (ffmpeg)", "ac3"}, + {"AC3", "ac3"}, // Backwards compatibility with mac ui {"MP3 Passthru", "mp3pass"}, {"AAC Passthru", "aacpass"}, {"AC3 Passthru", "ac3pass"}, @@ -2345,6 +2345,12 @@ export_value_xlat(GValue *dict) GValue *alist; GValue *adict; + key = "AudioEncoderFallback"; + lin_val = ghb_dict_lookup(dict, key); + gval = export_value_xlat2(acodec_xlat, lin_val, G_TYPE_STRING); + if (gval) + ghb_dict_insert(dict, g_strdup(key), gval); + alist = ghb_dict_lookup(dict, "AudioList"); count = ghb_array_len(alist); for (ii = 0; ii < count; ii++) @@ -2563,6 +2569,12 @@ import_value_xlat(GValue *dict) GValue *adefaults; GValue *adeflist; + key = "AudioEncoderFallback"; + mac_val = ghb_dict_lookup(dict, key); + gval = import_value_xlat2(adefaults, acodec_xlat, key, mac_val); + if (gval) + ghb_dict_insert(dict, g_strdup(key), gval); + adeflist = ghb_dict_lookup(defaults, "AudioList"); if (adeflist) { |