mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
offer up (when possible) MBWF, RF64 and RF64 (WAV) options
This commit is contained in:
parent
bbfb53e881
commit
54d216429c
2 changed files with 15 additions and 2 deletions
|
|
@ -179,10 +179,17 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
|
|||
sigc::mem_fun (*_session_config, &SessionConfiguration::set_native_file_header_format)
|
||||
);
|
||||
|
||||
hf->add (BWF, _("Broadcast WAVE"));
|
||||
hf->add (WAVE, _("WAVE"));
|
||||
hf->add (BWF, _("Broadcast WAVE (4GB size limit)"));
|
||||
#ifdef HAVE_RF64_RIFF
|
||||
hf->add (MBWF, _("Broadcast RF64"));
|
||||
#endif
|
||||
hf->add (WAVE, _("WAVE (4GB size limit)"));
|
||||
hf->add (WAVE64, _("WAVE-64"));
|
||||
hf->add (CAF, _("CAF"));
|
||||
hf->add (RF64, _("RF64"));
|
||||
#ifdef HAVE_RF64_RIFF
|
||||
hf->add (RF64_WAV, _("RF64 (WAV compatible)"));
|
||||
#endif
|
||||
|
||||
add_option (_("Media"), hf);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue