summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfileimportable.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-21 00:58:36 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-21 00:58:36 +0000
commit34d8df6a37ecf44311045db440dc3ebe9ef301e9 (patch)
treed7a64fefcd2d3ad936a57a59a251ad041dccbe2c /libs/ardour/sndfileimportable.cc
parent184d5167db8b21be0a0279068933ea3b72db6ec2 (diff)
Check for OGG format properly. Should fix #3723.
git-svn-id: svn://localhost/ardour2/branches/3.0@8559 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/sndfileimportable.cc')
-rw-r--r--libs/ardour/sndfileimportable.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc
index 75bfb9da57..c9f6c4014f 100644
--- a/libs/ardour/sndfileimportable.cc
+++ b/libs/ardour/sndfileimportable.cc
@@ -84,7 +84,8 @@ SndFileImportableSource::natural_position () const
bool
SndFileImportableSource::clamped_at_unity () const
{
+ int const type = sf_info.format & SF_FORMAT_TYPEMASK;
int const sub = sf_info.format & SF_FORMAT_SUBMASK;
/* XXX: this may not be the full list of formats that are unclamped */
- return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE && sub != SF_FORMAT_OGG);
+ return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE && type != SF_FORMAT_OGG);
}