summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/QueryParser.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-05-07 15:09:33 +0000
committersr55 <[email protected]>2009-05-07 15:09:33 +0000
commit928eba343a9da729368ffb6f161d0d69f637d465 (patch)
tree5f36a6d84311c9dfc22b96d0f224c6c2328e848d /win/C#/Functions/QueryParser.cs
parent3625994b759959600fca0cc4cd0c209d74b84de5 (diff)
# New
- DTS support on the audio tab - Angle support added to the source options # Changed - Chapter Markers are not selectable when only 1 chapter is selected or available - Last Encode and scan logs now stored in application data folder. This will make them more persistent. - Option to open the HandBrake log folder from the Activity window right click menu git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2398 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryParser.cs')
-rw-r--r--win/C#/Functions/QueryParser.cs12
1 files changed, 7 insertions, 5 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs
index 5557b51be..bbdb77b7e 100644
--- a/win/C#/Functions/QueryParser.cs
+++ b/win/C#/Functions/QueryParser.cs
@@ -425,15 +425,17 @@ namespace Handbrake.Functions
switch (audioEnc)
{
case "faac":
- return "AAC";
+ return "AAC (faac)";
case "lame":
- return "MP3";
+ return "MP3 (lame)";
case "vorbis":
- return "Vorbis";
+ return "Vorbis (vorbis)";
case "ac3":
- return "AC3";
+ return "AC3 Passthru";
+ case "dts":
+ return "DTS Passthru";
default:
- return "AAC";
+ return "AAC (faac)";
}
}
}