indentation and formatting cleanup
This commit is contained in:
parent
f837b66c20
commit
f9aeb659ee
@ -115,32 +115,28 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
|
||||
|
||||
Type type () const { return _type; }
|
||||
|
||||
FormatId format_id () const
|
||||
{
|
||||
FormatId format_id () const {
|
||||
if (!format_ids.empty() )
|
||||
return *format_ids.begin();
|
||||
else
|
||||
return FormatId(0);
|
||||
}
|
||||
|
||||
Endianness endianness () const
|
||||
{
|
||||
Endianness endianness () const {
|
||||
if (!endiannesses.empty() )
|
||||
return *endiannesses.begin();
|
||||
else
|
||||
return Endianness(0);
|
||||
}
|
||||
|
||||
SampleFormat sample_format () const
|
||||
{
|
||||
SampleFormat sample_format () const {
|
||||
if (!sample_formats.empty() )
|
||||
return *sample_formats.begin();
|
||||
else
|
||||
return SampleFormat(0);
|
||||
}
|
||||
|
||||
SampleRate sample_rate () const
|
||||
{
|
||||
SampleRate sample_rate () const {
|
||||
if (!sample_rates.empty() )
|
||||
return *sample_rates.begin();
|
||||
else
|
||||
@ -148,8 +144,7 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
|
||||
|
||||
}
|
||||
|
||||
Quality quality () const
|
||||
{
|
||||
Quality quality () const {
|
||||
if (!qualities.empty() )
|
||||
return *qualities.begin();
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user