1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
media / audio / flac_audio_handler_unittest.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/audio/flac_audio_handler.h"
#include <cstddef>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "media/audio/test_data.h"
#include "media/base/audio_bus.h"
#include "media/base/test_data_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
namespace {
constexpr int kDefaultFrameCount = 1024;
}
// Tests if the decoder can decode flac audio to the same content for the first
// bus after calling `Reset`.
TEST(FlacAudioHandlerTest, SampleDataTest) {
std::string bitstream;
const base::FilePath file_path = GetTestDataFilePath("bear.flac");
EXPECT_TRUE(base::ReadFileToString(file_path, &bitstream));
FlacAudioHandler handler(bitstream);
ASSERT_TRUE(handler.Initialize());
auto bus1 = AudioBus::Create(handler.GetNumChannels(), kDefaultFrameCount);
size_t frames_written1 = 0u;
ASSERT_TRUE(handler.CopyTo(bus1.get(), &frames_written1));
// Reset the decoder and re-decode the file from its head again.
handler.Reset();
auto bus2 = AudioBus::Create(handler.GetNumChannels(), kDefaultFrameCount);
size_t frames_written2 = 0u;
ASSERT_TRUE(handler.CopyTo(bus2.get(), &frames_written2));
ASSERT_EQ(frames_written1, frames_written2);
// Compare the content in two buses.
for (int ch = 0; ch < bus1->channels(); ++ch) {
float* channel_data1 = bus1->channel(ch);
float* channel_data2 = bus2->channel(ch);
for (int s = 0; s < bus1->frames(); ++s, ++channel_data1, ++channel_data2) {
ASSERT_FLOAT_EQ(*channel_data1, *channel_data2);
}
}
}
// Tests if the input is non-flac audio.
TEST(FlacAudioHandlerTest, BadSampleDataTest) {
// Set the wav audio data.
const std::string data(kTestAudioData, kTestAudioDataSize);
FlacAudioHandler handler(data);
ASSERT_FALSE(handler.Initialize());
}
} // namespace media