mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 16:48:44 +02:00
... A non-narrowing conversion out to long long is a necessity, but the conversions to float and double are simply conveniences. Conversion from floating is explicit, to avoid unintended consequences with arithmetic operators, when later sampleCount ceases to be an alias for an integral type. Some conversions are not made explicit, where I expect to change the type of the variable later to have mere size_t width.
451 lines
13 KiB
C++
451 lines
13 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Types.h
|
|
|
|
Leland Lucius
|
|
|
|
Copyright (c) 2014, Audacity Team
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the copyright holder nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TYPES_H__
|
|
#define __AUDACITY_TYPES_H__
|
|
|
|
#include <algorithm>
|
|
#include <wx/string.h>
|
|
#include <wx/arrstr.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// TODO: I'd imagine this header may be replaced by other public headers. But,
|
|
// to try and minimize more changes to the base code, we can use this
|
|
// until proper public headers are created for the stuff in here.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// A native 64-bit integer...used when referring to any number of samples
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class sampleCount
|
|
{
|
|
public:
|
|
using type = long long;
|
|
static_assert(sizeof(type) == 8, "Wrong width of sampleCount");
|
|
|
|
sampleCount () : value { 0 } {}
|
|
sampleCount ( type v ) : value { v } {}
|
|
sampleCount ( const sampleCount& ) = default;
|
|
sampleCount &operator= ( const sampleCount& ) = default;
|
|
|
|
operator type () const { return value; }
|
|
|
|
float as_float() const { return value; }
|
|
double as_double() const { return value; }
|
|
|
|
long long as_long_long() const { return value; }
|
|
|
|
sampleCount &operator += (sampleCount b) { value += b.value; return *this; }
|
|
sampleCount &operator -= (sampleCount b) { value -= b.value; return *this; }
|
|
sampleCount &operator *= (sampleCount b) { value *= b.value; return *this; }
|
|
sampleCount &operator /= (sampleCount b) { value /= b.value; return *this; }
|
|
sampleCount &operator %= (sampleCount b) { value %= b.value; return *this; }
|
|
|
|
sampleCount &operator ++ () { ++value; return *this; }
|
|
sampleCount operator ++ (int)
|
|
{ sampleCount result{ *this }; ++value; return result; }
|
|
|
|
sampleCount &operator -- () { --value; return *this; }
|
|
sampleCount operator -- (int)
|
|
{ sampleCount result{ *this }; --value; return result; }
|
|
|
|
private:
|
|
type value;
|
|
};
|
|
|
|
namespace std
|
|
{
|
|
inline sampleCount min (sampleCount a, sampleCount b)
|
|
{
|
|
return a < b ? a : b;
|
|
}
|
|
|
|
inline sampleCount max (sampleCount a, sampleCount b)
|
|
{
|
|
return a > b ? a : b;
|
|
}
|
|
}
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, sampleCount b)
|
|
{ return (long long)a + (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, size_t b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
sampleCount operator + (size_t a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, int b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
sampleCount operator + (int a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, long b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
sampleCount operator + (long a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, long long b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
sampleCount operator + (long long a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator + (sampleCount a, unsigned b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
sampleCount operator + (unsigned a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
|
|
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, sampleCount b)
|
|
{ return (long long)a - (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, size_t b)
|
|
{ return (long long)a - b; }
|
|
|
|
inline
|
|
sampleCount operator - (size_t a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, int b)
|
|
{ return(long long) a - b; }
|
|
|
|
inline
|
|
sampleCount operator - (int a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, long b)
|
|
{ return (long long)a - b; }
|
|
|
|
inline
|
|
sampleCount operator - (long a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, long long b)
|
|
{ return (long long)a - b; }
|
|
|
|
inline
|
|
sampleCount operator - (long long a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator - (sampleCount a, unsigned b)
|
|
{ return (long long)a - b; }
|
|
|
|
inline
|
|
sampleCount operator - (unsigned a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, sampleCount b)
|
|
{ return (long long)a * (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, int b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
sampleCount operator * (int a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, unsigned b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
sampleCount operator * (unsigned a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, long b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
sampleCount operator * (long a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, unsigned long b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
sampleCount operator * (unsigned long a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator * (sampleCount a, long long b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
sampleCount operator * (long long a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
|
|
|
|
inline
|
|
sampleCount operator / (sampleCount a, sampleCount b)
|
|
{ return (long long)a / (long long)b; }
|
|
|
|
inline
|
|
sampleCount operator / (sampleCount a, int b)
|
|
{ return (long long)a / b; }
|
|
|
|
inline
|
|
sampleCount operator / (sampleCount a, size_t b)
|
|
{ return (long long)a / b; }
|
|
|
|
inline
|
|
double operator / (sampleCount a, double b)
|
|
{ return (long long)a / b; }
|
|
|
|
inline
|
|
float operator / (float a, sampleCount b)
|
|
{ return a / (long long)b; }
|
|
|
|
inline
|
|
double operator / (double a, sampleCount b)
|
|
{ return a / (long long)b; }
|
|
|
|
|
|
|
|
inline
|
|
double operator + (sampleCount a, double b)
|
|
{ return (long long)a + b; }
|
|
|
|
inline
|
|
double operator + (double a, sampleCount b)
|
|
{ return a + (long long)b; }
|
|
|
|
inline
|
|
double operator - (sampleCount a, double b)
|
|
{ return (long long)a - b; }
|
|
|
|
inline
|
|
double operator - (double a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
double operator * (sampleCount a, double b)
|
|
{ return (long long)a * b; }
|
|
|
|
inline
|
|
double operator * (double a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
|
|
inline
|
|
float operator - (float a, sampleCount b)
|
|
{ return a - (long long)b; }
|
|
|
|
inline
|
|
float operator * (float a, sampleCount b)
|
|
{ return a * (long long)b; }
|
|
|
|
inline
|
|
float operator * (sampleCount a, float b)
|
|
{ return (long long)a * b; }
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Function returning the minimum of a sampleCount and a size_t,
|
|
// hiding the casts
|
|
// ----------------------------------------------------------------------------
|
|
|
|
inline size_t limitSampleBufferSize( size_t bufferSize, sampleCount limit )
|
|
{
|
|
return static_cast<size_t> (
|
|
std::min( sampleCount( bufferSize ), std::max( sampleCount(0), limit ) )
|
|
);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Supported sample formats
|
|
// ----------------------------------------------------------------------------
|
|
typedef enum
|
|
{
|
|
int16Sample = 0x00020001,
|
|
int24Sample = 0x00040001,
|
|
floatSample = 0x0004000F
|
|
} sampleFormat;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Provide the number of bytes a specific sample will take
|
|
// ----------------------------------------------------------------------------
|
|
#define SAMPLE_SIZE(SampleFormat) (SampleFormat >> 16)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Generic pointer to sample data
|
|
// ----------------------------------------------------------------------------
|
|
typedef char *samplePtr;
|
|
typedef const char *constSamplePtr;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// The type for plugin IDs
|
|
// ----------------------------------------------------------------------------
|
|
typedef wxString PluginID;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Supported channel assignments
|
|
// ----------------------------------------------------------------------------
|
|
|
|
typedef enum
|
|
{
|
|
// Use to mark end of list
|
|
ChannelNameEOL = -1,
|
|
// The default channel assignment
|
|
ChannelNameMono,
|
|
// From this point, the channels follow the 22.2 surround sound format
|
|
ChannelNameFrontLeft,
|
|
ChannelNameFrontRight,
|
|
ChannelNameFrontCenter,
|
|
ChannelNameLowFrequency1,
|
|
ChannelNameBackLeft,
|
|
ChannelNameBackRight,
|
|
ChannelNameFrontLeftCenter,
|
|
ChannelNameFrontRightCenter,
|
|
ChannelNameBackCenter,
|
|
ChannelNameLowFrequency2,
|
|
ChannelNameSideLeft,
|
|
ChannelNameSideRight,
|
|
ChannelNameTopFrontLeft,
|
|
ChannelNameTopFrontRight,
|
|
ChannelNameTopFrontCenter,
|
|
ChannelNameTopCenter,
|
|
ChannelNameTopBackLeft,
|
|
ChannelNameTopBackRight,
|
|
ChannelNameTopSideLeft,
|
|
ChannelNameTopSideRight,
|
|
ChannelNameTopBackCenter,
|
|
ChannelNameBottomFrontCenter,
|
|
ChannelNameBottomFrontLeft,
|
|
ChannelNameBottomFrontRight,
|
|
} ChannelName, *ChannelNames;
|
|
|
|
// LLL FIXME: Until a complete API is devised, we have to use
|
|
// AUDACITY_DLL_API when defining API classes. This
|
|
// it ugly, but a part of the game. Remove it when
|
|
// the API is complete.
|
|
|
|
#if !defined(AUDACITY_DLL_API)
|
|
// This was copied from "Audacity.h" so these headers wouldn't have
|
|
// to include it.
|
|
|
|
/* Magic for dynamic library import and export. This is unfortunately
|
|
* compiler-specific because there isn't a standard way to do it. Currently it
|
|
* works with the Visual Studio compiler for windows, and for GCC 4+. Anything
|
|
* else gets all symbols made public, which gets messy */
|
|
/* The Visual Studio implementation */
|
|
#ifdef _MSC_VER
|
|
#ifndef AUDACITY_DLL_API
|
|
#ifdef BUILDING_AUDACITY
|
|
#define AUDACITY_DLL_API _declspec(dllexport)
|
|
#else
|
|
#ifdef _DLL
|
|
#define AUDACITY_DLL_API _declspec(dllimport)
|
|
#else
|
|
#define AUDACITY_DLL_API
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif //_MSC_VER
|
|
|
|
#ifdef __GNUC__
|
|
#include "configunix.h"
|
|
#endif
|
|
|
|
/* The GCC-elf implementation */
|
|
#ifdef HAVE_VISIBILITY // this is provided by the configure script, is only
|
|
// enabled for suitable GCC versions
|
|
/* The incantation is a bit weird here because it uses ELF symbol stuff. If we
|
|
* make a symbol "default" it makes it visible (for import or export). Making it
|
|
* "hidden" means it is invisible outside the shared object. */
|
|
#ifndef AUDACITY_DLL_API
|
|
#ifdef BUILDING_AUDACITY
|
|
#define AUDACITY_DLL_API __attribute__((visibility("default")))
|
|
#else
|
|
#define AUDACITY_DLL_API __attribute__((visibility("default")))
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
/* The GCC-win32 implementation */
|
|
// bizzarely, GCC-for-win32 supports Visual Studio style symbol visibility, so
|
|
// we use that if building on Cygwin
|
|
#if defined __CYGWIN__ && defined __GNUC__
|
|
#ifndef AUDACITY_DLL_API
|
|
#ifdef BUILDING_AUDACITY
|
|
#define AUDACITY_DLL_API _declspec(dllexport)
|
|
#else
|
|
#ifdef _DLL
|
|
#define AUDACITY_DLL_API _declspec(dllimport)
|
|
#else
|
|
#define AUDACITY_DLL_API
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#endif // __AUDACITY_TYPES_H__
|