diff options
author | jstebbins <[email protected]> | 2009-04-28 21:49:18 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-04-28 21:49:18 +0000 |
commit | 062bdda5677651a1e844dadb2eb3fb9761e40541 (patch) | |
tree | aefcd436c9c871dd04dfbfaf061ef10ae17cf4c1 /gtk/src/widgetdeps.c | |
parent | bea518d6b661d28e5df979ce8e27311fd76ccb2a (diff) |
LinGui: add "auto" passthru audio option
This selects the "best" ac3 *or* dts track for passthru
i got tired of my encodes ending up with stereo ac3 instead of 6ch dts
because I forgot to verify the audio before starting an encode
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2358 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/widgetdeps.c')
-rw-r--r-- | gtk/src/widgetdeps.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/widgetdeps.c b/gtk/src/widgetdeps.c index 6a6945f1e..af8049f58 100644 --- a/gtk/src/widgetdeps.c +++ b/gtk/src/widgetdeps.c @@ -53,10 +53,10 @@ static dependency_t dep_map[] = {"VideoEncoder", "x264_tab", "x264", FALSE, FALSE}, {"VideoEncoder", "x264_tab_label", "x264", FALSE, FALSE}, {"VideoEncoder", "Mp4iPodCompatible", "x264", FALSE, FALSE}, - {"AudioEncoder", "AudioBitrate", "ac3|dts", TRUE, FALSE}, - {"AudioEncoder", "AudioSamplerate", "ac3|dts", TRUE, FALSE}, - {"AudioEncoder", "AudioMixdown", "ac3|dts", TRUE, FALSE}, - {"AudioEncoder", "AudioTrackDRCSlider", "ac3|dts", TRUE, FALSE}, + {"AudioEncoder", "AudioBitrate", "ac3|dts|auto", TRUE, FALSE}, + {"AudioEncoder", "AudioSamplerate", "ac3|dts|auto", TRUE, FALSE}, + {"AudioEncoder", "AudioMixdown", "ac3|dts|auto", TRUE, FALSE}, + {"AudioEncoder", "AudioTrackDRCSlider", "ac3|dts|auto", TRUE, FALSE}, {"x264_bframes", "x264_weighted_bframes", "0", TRUE, FALSE}, {"x264_bframes", "x264_bpyramid", "<2", TRUE, FALSE}, {"x264_bframes", "x264_direct", "0", TRUE, FALSE}, |