Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default archive audio format to FLAC 24bit #871

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gtk2_ardour/session_archive_dialog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ SessionArchiveDialog::SessionArchiveDialog ()
encode_selector.append (_("None"));
encode_selector.append (_("FLAC 16bit"));
encode_selector.append (_("FLAC 24bit"));
encode_selector.set_active_text (_("FLAC 16bit")); // TODO remember
encode_selector.set_active_text (_("FLAC 24bit")); // TODO remember

compression_selector.append (_("None"));
compression_selector.append (_("Fast"));
Expand Down
2 changes: 1 addition & 1 deletion libs/ardour/ardour/session.h
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
};

int archive_session (const std::string&, const std::string&,
ArchiveEncode compress_audio = FLAC_16BIT,
ArchiveEncode compress_audio = FLAC_24BIT,
PBD::FileArchive::CompressionLevel compression_level = PBD::FileArchive::CompressGood,
bool only_used_sources = false,
PBD::Progress* p = 0);
Expand Down