2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 18:06:14 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 18:06:14 +01:00
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_PCM_UTILS_H
|
|
|
|
#define MPD_PCM_UTILS_H
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-07 18:03:53 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-09-29 15:53:53 +02:00
|
|
|
#include <stdint.h>
|
2007-05-24 23:15:37 +02:00
|
|
|
|
2011-10-19 22:11:50 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static inline const void *
|
|
|
|
pcm_end_pointer(const void *p, size_t size)
|
|
|
|
{
|
|
|
|
return (const char *)p + size;
|
|
|
|
}
|
|
|
|
|
2009-01-07 18:03:53 +01:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
if (G_UNLIKELY(sample < (-1 << (bits - 1))))
|
|
|
|
return -1 << (bits - 1);
|
|
|
|
if (G_UNLIKELY(sample >= (1 << (bits - 1))))
|
|
|
|
return (1 << (bits - 1)) - 1;
|
|
|
|
return sample;
|
|
|
|
}
|
|
|
|
|
2009-11-19 21:00:50 +01:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
if (G_UNLIKELY(sample < ((int64_t)-1 << (bits - 1))))
|
|
|
|
return (int64_t)-1 << (bits - 1);
|
|
|
|
if (G_UNLIKELY(sample >= ((int64_t)1 << (bits - 1))))
|
|
|
|
return ((int64_t)1 << (bits - 1)) - 1;
|
|
|
|
return sample;
|
|
|
|
}
|
|
|
|
|
2011-10-08 10:25:06 +02:00
|
|
|
G_GNUC_CONST
|
|
|
|
static inline int16_t
|
|
|
|
pcm_clamp_16(int x)
|
|
|
|
{
|
|
|
|
static const int32_t MIN_VALUE = G_MININT16;
|
|
|
|
static const int32_t MAX_VALUE = G_MAXINT16;
|
|
|
|
|
|
|
|
if (G_UNLIKELY(x < MIN_VALUE))
|
|
|
|
return MIN_VALUE;
|
|
|
|
if (G_UNLIKELY(x > MAX_VALUE))
|
|
|
|
return MAX_VALUE;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_GNUC_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;
|
|
|
|
|
|
|
|
if (G_UNLIKELY(x < MIN_VALUE))
|
|
|
|
return MIN_VALUE;
|
|
|
|
if (G_UNLIKELY(x > MAX_VALUE))
|
|
|
|
return MAX_VALUE;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|