summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-10-12 18:25:04 +0000
committersr55 <[email protected]>2011-10-12 18:25:04 +0000
commitd41d9e0d88a689a11fe0978d4e415b89e72c2e62 (patch)
tree8943a1419d297d6d29686c629380cb597d961106 /win
parent52aa39060e3f5df1768afe5353690d1dcb87743e (diff)
WinGui: Fix for ffmpeg AC3 encoder data converter. Patch by Lutz S
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4280 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Functions/Converters.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
index 5557d2488..c47e7c5ef 100644
--- a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
+++ b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
@@ -141,7 +141,7 @@ namespace HandBrake.ApplicationServices.Functions
return "MP3 (lame)";
case "vorbis":
return "Vorbis (vorbis)";
- case "ac3":
+ case "ffac3":
return "AC3 (ffmpeg)";
case "copy:ac3":
return "AC3 Passthru";
@@ -179,7 +179,7 @@ namespace HandBrake.ApplicationServices.Functions
return AudioEncoder.Lame;
case "vorbis":
return AudioEncoder.Vorbis;
- case "ac3":
+ case "ffac3":
return AudioEncoder.Ac3;
case "ffflac":
return AudioEncoder.ffflac;
@@ -264,7 +264,7 @@ namespace HandBrake.ApplicationServices.Functions
case AudioEncoder.DtsHDPassthrough:
return "copy:dtshd";
case AudioEncoder.Ac3:
- return "ac3";
+ return "ffac3";
case AudioEncoder.AacPassthru:
return "copy:aac";
case AudioEncoder.Mp3Passthru: