Allow encoders of different formats to share the same name; Rename "libALAC", "libFlake" and "builtin wav" encoders to "cuetools"

This commit is contained in:
Grigory Chudov
2013-03-31 01:11:00 -04:00
parent f3dfb02b60
commit 1b7e9bf123
9 changed files with 38 additions and 57 deletions

View File

@@ -4,7 +4,7 @@ using System.IO;
namespace CUETools.Codecs
{
[AudioEncoderClass("builtin wav", "wav", true, "", "", 10, typeof(object))]
[AudioEncoderClass("cuetools", "wav", true, "", "", 10, typeof(object))]
public class WAVWriter : IAudioDest
{
private Stream _IO;