mpd/src/PcmUtils.hxx

96 lines
2.4 KiB
C++
Raw Normal View History

/*
2011-01-29 10:13:54 +01:00
* Copyright (C) 2003-2011 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_PCM_UTILS_H
#define MPD_PCM_UTILS_H
2013-01-30 22:53:12 +01:00
#include "gcc.h"
#include <stdint.h>
/**
* Add a byte count to the specified pointer. This is a utility
* function to convert a source pointer and a byte count to an "end"
* pointer for use in loops.
*/
2013-01-31 20:33:26 +01:00
template<typename T>
static inline const T *
pcm_end_pointer(const T *p, size_t size)
{
2013-01-31 20:33:26 +01:00
return (const T *)((const uint8_t *)p + size);
}
/**
* Check if the value is within the range of the provided bit size,
* and caps it if necessary.
*/
static inline int32_t
pcm_range(int32_t sample, unsigned bits)
{
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(sample < (-1 << (bits - 1))))
return -1 << (bits - 1);
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(sample >= (1 << (bits - 1))))
return (1 << (bits - 1)) - 1;
return sample;
}
/**
* Check if the value is within the range of the provided bit size,
* and caps it if necessary.
*/
static inline int64_t
pcm_range_64(int64_t sample, unsigned bits)
{
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(sample < ((int64_t)-1 << (bits - 1))))
return (int64_t)-1 << (bits - 1);
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(sample >= ((int64_t)1 << (bits - 1))))
return ((int64_t)1 << (bits - 1)) - 1;
return sample;
}
2013-01-30 22:53:12 +01:00
gcc_const
static inline int16_t
pcm_clamp_16(int x)
{
2013-01-30 22:53:12 +01:00
static const int32_t MIN_VALUE = -(1 << 15);
static const int32_t MAX_VALUE = (1 << 15) - 1;
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(x < MIN_VALUE))
return MIN_VALUE;
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(x > MAX_VALUE))
return MAX_VALUE;
return x;
}
2013-01-30 22:53:12 +01:00
gcc_const
static inline int32_t
pcm_clamp_24(int x)
{
static const int32_t MIN_VALUE = -(1 << 23);
static const int32_t MAX_VALUE = (1 << 23) - 1;
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(x < MIN_VALUE))
return MIN_VALUE;
2013-01-30 22:53:12 +01:00
if (gcc_unlikely(x > MAX_VALUE))
return MAX_VALUE;
return x;
}
#endif