diff options
author | jstebbins <[email protected]> | 2009-01-24 19:26:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-01-24 19:26:05 +0000 |
commit | 5c379b6636abf8626e0bf2c323a5d77fd42f7fe5 (patch) | |
tree | 4e95f28b91d2b09c4de89f97fe7d050e444f7d26 /gtk/src/makedeps.c | |
parent | e98a23579ed5e4ca68d9c82af3ac50dfd833e86e (diff) |
LinGui: fix how an audio is chosen after a source is scanned or the preset
selection changes. It wasn't honoring the preferred language or matching
the codec when passthru is selected.
Also checking in the ui changes needed for dts pasthru. The option is
disabled until we get libhb support.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2094 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/makedeps.c')
-rw-r--r-- | gtk/src/makedeps.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/makedeps.c b/gtk/src/makedeps.c index dc6d66714..d3711645e 100644 --- a/gtk/src/makedeps.c +++ b/gtk/src/makedeps.c @@ -52,10 +52,10 @@ static dependency_t dep_map[] = {"VideoEncoder", "x264_tab_label", "x264", FALSE}, {"VideoEncoder", "Mp4iPodCompatible", "x264", FALSE}, {"VideoEncoder", "directqp", "x264|ffmpeg", FALSE}, - {"AudioEncoder", "AudioBitrate", "ac3", TRUE}, - {"AudioEncoder", "AudioSamplerate", "ac3", TRUE}, - {"AudioEncoder", "AudioMixdown", "ac3", TRUE}, - {"AudioEncoder", "AudioTrackDRCSlider", "ac3", TRUE}, + {"AudioEncoder", "AudioBitrate", "ac3|dts", TRUE}, + {"AudioEncoder", "AudioSamplerate", "ac3|dts", TRUE}, + {"AudioEncoder", "AudioMixdown", "ac3|dts", TRUE}, + {"AudioEncoder", "AudioTrackDRCSlider", "ac3|dts", TRUE}, {"x264_bframes", "x264_weighted_bframes", "0", TRUE}, {"x264_bframes", "x264_bpyramid", "<2", TRUE}, {"x264_bframes", "x264_direct", "0", TRUE}, |