test_pcm_format.cxx 3.03 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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.
 */

#include "config.h"
#include "test_pcm_all.hxx"
#include "test_pcm_util.hxx"
Max Kellermann's avatar
Max Kellermann committed
23 24 25
#include "pcm/PcmFormat.hxx"
#include "pcm/PcmDither.hxx"
#include "pcm/PcmUtils.hxx"
26
#include "pcm/PcmBuffer.hxx"
27
#include "pcm/SampleFormat.hxx"
28 29

void
30
PcmFormatTest::TestFormat8to16()
31
{
32
	constexpr size_t N = 509;
33 34
	const auto src = TestDataBuffer<int8_t, N>();

35
	PcmBuffer buffer;
36 37

	PcmDither dither;
38 39
	auto d = pcm_convert_to_16(buffer, dither, SampleFormat::S8, src);
	CPPUNIT_ASSERT_EQUAL(N, d.size);
40 41

	for (size_t i = 0; i < N; ++i)
42
		CPPUNIT_ASSERT_EQUAL(int(src[i]), d[i] >> 8);
43 44 45
}

void
46
PcmFormatTest::TestFormat16to24()
47
{
48
	constexpr size_t N = 509;
49 50
	const auto src = TestDataBuffer<int16_t, N>();

51
	PcmBuffer buffer;
52

53 54
	auto d = pcm_convert_to_24(buffer, SampleFormat::S16, src);
	CPPUNIT_ASSERT_EQUAL(N, d.size);
55 56

	for (size_t i = 0; i < N; ++i)
57
		CPPUNIT_ASSERT_EQUAL(int(src[i]), d[i] >> 8);
58 59 60
}

void
61
PcmFormatTest::TestFormat16to32()
62
{
63
	constexpr size_t N = 509;
64 65
	const auto src = TestDataBuffer<int16_t, N>();

66
	PcmBuffer buffer;
67

68 69
	auto d = pcm_convert_to_32(buffer, SampleFormat::S16, src);
	CPPUNIT_ASSERT_EQUAL(N, d.size);
70 71

	for (size_t i = 0; i < N; ++i)
72
		CPPUNIT_ASSERT_EQUAL(int(src[i]), d[i] >> 16);
73 74 75
}

void
76
PcmFormatTest::TestFormatFloat()
77
{
78
	constexpr size_t N = 509;
79 80
	const auto src = TestDataBuffer<int16_t, N>();

81
	PcmBuffer buffer1, buffer2;
82

83 84
	auto f = pcm_convert_to_float(buffer1, SampleFormat::S16, src);
	CPPUNIT_ASSERT_EQUAL(N, f.size);
85

86
	for (size_t i = 0; i != f.size; ++i) {
87 88
		CPPUNIT_ASSERT(f[i] >= -1.);
		CPPUNIT_ASSERT(f[i] <= 1.);
89 90 91 92
	}

	PcmDither dither;

93
	auto d = pcm_convert_to_16(buffer2, dither,
94
				   SampleFormat::FLOAT,
95 96
				   f.ToVoid());
	CPPUNIT_ASSERT_EQUAL(N, d.size);
97 98

	for (size_t i = 0; i < N; ++i)
99
		CPPUNIT_ASSERT_EQUAL(src[i], d[i]);
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

	/* check if clamping works */
	float *writable = const_cast<float *>(f.data);
	*writable++ = 1.01;
	*writable++ = 10;
	*writable++ = -1.01;
	*writable++ = -10;

	d = pcm_convert_to_16(buffer2, dither,
			      SampleFormat::FLOAT,
			      f.ToVoid());
	CPPUNIT_ASSERT_EQUAL(N, d.size);

	CPPUNIT_ASSERT_EQUAL(32767, int(d[0]));
	CPPUNIT_ASSERT_EQUAL(32767, int(d[1]));
	CPPUNIT_ASSERT_EQUAL(-32768, int(d[2]));
	CPPUNIT_ASSERT_EQUAL(-32768, int(d[3]));

	for (size_t i = 4; i < N; ++i)
		CPPUNIT_ASSERT_EQUAL(src[i], d[i]);
120
}