mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 18:07:42 +01:00
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:
parent
850b7d24a9
commit
ffadfff650
8 changed files with 55 additions and 5 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue