Add "session rate" as a possible sample rate for export formats

git-svn-id: svn://localhost/ardour2/branches/3.0@8294 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen 2010-12-18 17:56:41 +00:00
parent 850b7d24a9
commit ffadfff650
8 changed files with 55 additions and 5 deletions

View file

@ -230,6 +230,8 @@ ExportFormatSpecification::ExportFormatSpecification (ExportFormatSpecification
set_silence_beginning (other.silence_beginning_time());
set_silence_end (other.silence_end_time());
set_extension(other.extension());
}
ExportFormatSpecification::~ExportFormatSpecification ()
@ -556,6 +558,9 @@ ExportFormatSpecification::description ()
case SR_192:
desc += "192 kHz";
break;
case SR_Session:
desc += _("Session rate");
break;
case SR_None:
break;
}