diff options
author | sr55 <[email protected]> | 2013-06-01 13:00:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-06-01 13:00:11 +0000 |
commit | 665b3364b361897b572bfafb80e36a993668a943 (patch) | |
tree | 0ee878235aa202b9493dc38ef1ca45763c1fa159 /win/CS/HandBrake.Interop | |
parent | dc0c09c0def611964fd22951ce50e6b0cbc7f48f (diff) |
WinGui: Add support for the 24bit flac encoder.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5537 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs index c8877e6d6..8fb242ac6 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs @@ -49,7 +49,10 @@ namespace HandBrake.Interop.Model.Encoding [Display(Name = "Vorbis (vorbis)")]
Vorbis,
- [Display(Name = "Flac (ffmpeg)")]
+ [Display(Name = "FLAC (ffmpeg)")]
ffflac,
+
+ [Display(Name = "FLAC (24-bit)")]
+ ffflac24,
}
}
|