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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Tests PPB_MediaStreamAudioTrack interface.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ppapi/tests/test_media_stream_audio_track.h"
// For MSVC.
#define _USE_MATH_DEFINES
#include <math.h>
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include "ppapi/c/private/ppb_testing_private.h"
#include "ppapi/cpp/audio_buffer.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/var.h"
#include "ppapi/tests/test_utils.h"
#include "ppapi/tests/testing_instance.h"
REGISTER_TEST_CASE(MediaStreamAudioTrack);
namespace {
// Real constants defined in
// content/renderer/pepper/pepper_media_stream_audio_track_host.cc.
const int32_t kMaxNumberOfBuffers = 1000;
const int32_t kMinDuration = 10;
const int32_t kMaxDuration = 10000;
const int32_t kTimes = 3;
const char kJSCode[] =
"function gotStream(stream) {"
" test_stream = stream;"
" var track = stream.getAudioTracks()[0];"
" var plugin = document.getElementById('plugin');"
" plugin.postMessage(track);"
"}"
"var constraints = {"
" audio: true,"
" video: false,"
"};"
"navigator.getUserMedia = "
" navigator.getUserMedia || navigator.webkitGetUserMedia;"
"navigator.getUserMedia(constraints,"
" gotStream, function() {});";
const char kSineJSCode[] =
// Create oscillators for the left and right channels. Use a sine wave,
// which is the easiest to calculate expected values. The oscillator output
// is low-pass filtered (as per spec) making comparison hard.
"var context = new AudioContext();"
"var l_osc = context.createOscillator();"
"l_osc.type = \"sine\";"
"l_osc.frequency.value = 25;"
"var r_osc = context.createOscillator();"
"r_osc.type = \"sine\";"
"r_osc.frequency.value = 100;"
// Combine the left and right channels.
"var merger = context.createChannelMerger(2);"
"merger.channelInterpretation = \"discrete\";"
"l_osc.connect(merger, 0, 0);"
"r_osc.connect(merger, 0, 1);"
"var dest_stream = context.createMediaStreamDestination();"
"merger.connect(dest_stream);"
// Dump the generated waveform to a MediaStream output.
"l_osc.start();"
"r_osc.start();"
"var track = dest_stream.stream.getAudioTracks()[0];"
"var plugin = document.getElementById('plugin');"
"plugin.postMessage(track);";
// Helper to check if the |sample_rate| is listed in PP_AudioBuffer_SampleRate
// enum.
bool IsSampleRateValid(PP_AudioBuffer_SampleRate sample_rate) {
switch (sample_rate) {
case PP_AUDIOBUFFER_SAMPLERATE_8000:
case PP_AUDIOBUFFER_SAMPLERATE_16000:
case PP_AUDIOBUFFER_SAMPLERATE_22050:
case PP_AUDIOBUFFER_SAMPLERATE_32000:
case PP_AUDIOBUFFER_SAMPLERATE_44100:
case PP_AUDIOBUFFER_SAMPLERATE_48000:
case PP_AUDIOBUFFER_SAMPLERATE_96000:
case PP_AUDIOBUFFER_SAMPLERATE_192000:
return true;
default:
return false;
}
}
} // namespace
TestMediaStreamAudioTrack::TestMediaStreamAudioTrack(TestingInstance* instance)
: TestCase(instance),
event_(instance_->pp_instance()) {
}
bool TestMediaStreamAudioTrack::Init() {
return true;
}
TestMediaStreamAudioTrack::~TestMediaStreamAudioTrack() {
}
void TestMediaStreamAudioTrack::RunTests(const std::string& filter) {
RUN_TEST(Create, filter);
RUN_TEST(GetBuffer, filter);
RUN_TEST(Configure, filter);
RUN_TEST(ConfigureClose, filter);
RUN_TEST(VerifyWaveform, filter);
}
void TestMediaStreamAudioTrack::HandleMessage(const pp::Var& message) {
if (message.is_resource()) {
audio_track_ = pp::MediaStreamAudioTrack(message.AsResource());
}
event_.Signal();
}
std::string TestMediaStreamAudioTrack::TestCreate() {
// Create a track.
instance_->EvalScript(kJSCode);
event_.Wait();
event_.Reset();
ASSERT_FALSE(audio_track_.is_null());
ASSERT_FALSE(audio_track_.HasEnded());
ASSERT_FALSE(audio_track_.GetId().empty());
// Close the track.
audio_track_.Close();
ASSERT_TRUE(audio_track_.HasEnded());
audio_track_ = pp::MediaStreamAudioTrack();
PASS();
}
std::string TestMediaStreamAudioTrack::TestGetBuffer() {
// Create a track.
instance_->EvalScript(kJSCode);
event_.Wait();
event_.Reset();
ASSERT_FALSE(audio_track_.is_null());
ASSERT_FALSE(audio_track_.HasEnded());
ASSERT_FALSE(audio_track_.GetId().empty());
PP_TimeDelta timestamp = 0.0;
// Get |kTimes| buffers.
for (int i = 0; i < kTimes; ++i) {
TestCompletionCallbackWithOutput<pp::AudioBuffer> cc(
instance_->pp_instance(), false);
cc.WaitForResult(audio_track_.GetBuffer(cc.GetCallback()));
ASSERT_EQ(PP_OK, cc.result());
pp::AudioBuffer buffer = cc.output();
ASSERT_FALSE(buffer.is_null());
ASSERT_TRUE(IsSampleRateValid(buffer.GetSampleRate()));
ASSERT_EQ(buffer.GetSampleSize(), PP_AUDIOBUFFER_SAMPLESIZE_16_BITS);
ASSERT_GE(buffer.GetTimestamp(), timestamp);
timestamp = buffer.GetTimestamp();
ASSERT_GT(buffer.GetDataBufferSize(), 0U);
ASSERT_TRUE(buffer.GetDataBuffer() != NULL);
audio_track_.RecycleBuffer(buffer);
// A recycled buffer should be invalidated.
ASSERT_EQ(buffer.GetSampleRate(), PP_AUDIOBUFFER_SAMPLERATE_UNKNOWN);
ASSERT_EQ(buffer.GetSampleSize(), PP_AUDIOBUFFER_SAMPLESIZE_UNKNOWN);
ASSERT_EQ(buffer.GetDataBufferSize(), 0U);
ASSERT_TRUE(buffer.GetDataBuffer() == NULL);
}
// Close the track.
audio_track_.Close();
ASSERT_TRUE(audio_track_.HasEnded());
audio_track_ = pp::MediaStreamAudioTrack();
PASS();
}
std::string TestMediaStreamAudioTrack::CheckConfigure(
int32_t attrib_list[], int32_t expected_result) {
TestCompletionCallback cc_configure(instance_->pp_instance(), false);
cc_configure.WaitForResult(
audio_track_.Configure(attrib_list, cc_configure.GetCallback()));
ASSERT_EQ(expected_result, cc_configure.result());
PASS();
}
std::string TestMediaStreamAudioTrack::CheckGetBuffer(
int times, int expected_duration) {
PP_TimeDelta timestamp = 0.0;
for (int j = 0; j < times; ++j) {
TestCompletionCallbackWithOutput<pp::AudioBuffer> cc_get_buffer(
instance_->pp_instance(), false);
cc_get_buffer.WaitForResult(
audio_track_.GetBuffer(cc_get_buffer.GetCallback()));
ASSERT_EQ(PP_OK, cc_get_buffer.result());
pp::AudioBuffer buffer = cc_get_buffer.output();
ASSERT_FALSE(buffer.is_null());
ASSERT_TRUE(IsSampleRateValid(buffer.GetSampleRate()));
ASSERT_EQ(buffer.GetSampleSize(), PP_AUDIOBUFFER_SAMPLESIZE_16_BITS);
ASSERT_GE(buffer.GetTimestamp(), timestamp);
timestamp = buffer.GetTimestamp();
ASSERT_TRUE(buffer.GetDataBuffer() != NULL);
if (expected_duration > 0) {
uint32_t buffer_size = buffer.GetDataBufferSize();
uint32_t channels = buffer.GetNumberOfChannels();
uint32_t sample_rate = buffer.GetSampleRate();
uint32_t bytes_per_frame = channels * 2;
int32_t duration = expected_duration;
ASSERT_EQ(buffer_size % bytes_per_frame, 0U);
ASSERT_EQ(buffer_size,
(duration * sample_rate * bytes_per_frame) / 1000);
} else {
ASSERT_GT(buffer.GetDataBufferSize(), 0U);
}
audio_track_.RecycleBuffer(buffer);
}
PASS();
}
std::string TestMediaStreamAudioTrack::TestConfigure() {
// Create a track.
instance_->EvalScript(kJSCode);
event_.Wait();
event_.Reset();
ASSERT_FALSE(audio_track_.is_null());
ASSERT_FALSE(audio_track_.HasEnded());
ASSERT_FALSE(audio_track_.GetId().empty());
// Perform a |Configure()| with no attributes. This ends up making an IPC
// call, but the host implementation has a fast-path when there are no changes
// to the configuration. This test is intended to hit that fast-path and make
// sure it works correctly.
{
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list, PP_OK));
}
// Configure number of buffers.
struct {
int32_t buffers;
int32_t expect_result;
} buffers[] = {
{ 8, PP_OK },
{ 100, PP_OK },
{ kMaxNumberOfBuffers, PP_OK },
{ -1, PP_ERROR_BADARGUMENT },
{ kMaxNumberOfBuffers + 1, PP_OK }, // Clipped to max value.
{ 0, PP_OK }, // Use default.
};
for (size_t i = 0; i < sizeof(buffers) / sizeof(buffers[0]); ++i) {
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_BUFFERS, buffers[i].buffers,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list,
buffers[i].expect_result));
// Get some buffers. This should also succeed when configure fails.
ASSERT_SUBTEST_SUCCESS(CheckGetBuffer(kTimes, -1));
}
// Configure buffer duration.
struct {
int32_t duration;
int32_t expect_result;
} durations[] = {
{ kMinDuration, PP_OK },
{ 123, PP_OK },
{ kMinDuration - 1, PP_ERROR_BADARGUMENT },
{ kMaxDuration + 1, PP_ERROR_BADARGUMENT },
};
for (size_t i = 0; i < sizeof(durations) / sizeof(durations[0]); ++i) {
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_DURATION, durations[i].duration,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list,
durations[i].expect_result));
// Get some buffers. This always works, but the buffer size will vary.
int duration =
durations[i].expect_result == PP_OK ? durations[i].duration : -1;
ASSERT_SUBTEST_SUCCESS(CheckGetBuffer(kTimes, duration));
}
// Test kMaxDuration separately since each GetBuffer will take 10 seconds.
{
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_DURATION, kMaxDuration,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list, PP_OK));
}
// Reset the duration to prevent the next part from taking 10 seconds.
{
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_DURATION, kMinDuration,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list, PP_OK));
}
// Configure should fail while plugin holds buffers.
{
TestCompletionCallbackWithOutput<pp::AudioBuffer> cc_get_buffer(
instance_->pp_instance(), false);
cc_get_buffer.WaitForResult(
audio_track_.GetBuffer(cc_get_buffer.GetCallback()));
ASSERT_EQ(PP_OK, cc_get_buffer.result());
pp::AudioBuffer buffer = cc_get_buffer.output();
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_BUFFERS, 0,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
TestCompletionCallback cc_configure(instance_->pp_instance(), false);
cc_configure.WaitForResult(
audio_track_.Configure(attrib_list, cc_configure.GetCallback()));
ASSERT_EQ(PP_ERROR_INPROGRESS, cc_configure.result());
audio_track_.RecycleBuffer(buffer);
}
// Close the track.
audio_track_.Close();
ASSERT_TRUE(audio_track_.HasEnded());
audio_track_ = pp::MediaStreamAudioTrack();
PASS();
}
std::string TestMediaStreamAudioTrack::TestConfigureClose() {
// Create a track.
instance_->EvalScript(kJSCode);
event_.Wait();
event_.Reset();
ASSERT_FALSE(audio_track_.is_null());
ASSERT_FALSE(audio_track_.HasEnded());
ASSERT_FALSE(audio_track_.GetId().empty());
// Configure the audio track and close it immediately. The Configure() call
// should complete.
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_BUFFERS, 10,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
TestCompletionCallback cc_configure(instance_->pp_instance(), false);
int32_t result = audio_track_.Configure(attrib_list,
cc_configure.GetCallback());
ASSERT_EQ(PP_OK_COMPLETIONPENDING, result);
audio_track_.Close();
cc_configure.WaitForResult(result);
result = cc_configure.result();
// Unfortunately, we can't control whether the configure succeeds or is
// aborted.
ASSERT_TRUE(result == PP_OK || result == PP_ERROR_ABORTED);
PASS();
}
uint32_t CalculateWaveStartingTime(int16_t sample, int16_t next_sample,
uint32_t period) {
int16_t slope = next_sample - sample;
double angle = asin(sample / (double)INT16_MAX);
if (slope < 0) {
angle = M_PI - angle;
}
if (angle < 0) {
angle += 2 * M_PI;
}
return round(angle * period / (2 * M_PI));
}
std::string TestMediaStreamAudioTrack::TestVerifyWaveform() {
// Create a track.
instance_->EvalScript(kSineJSCode);
event_.Wait();
event_.Reset();
ASSERT_FALSE(audio_track_.is_null());
ASSERT_FALSE(audio_track_.HasEnded());
ASSERT_FALSE(audio_track_.GetId().empty());
// Use a weird buffer length and number of buffers.
const int32_t kBufferSize = 13;
const int32_t kNumBuffers = 3;
const uint32_t kChannels = 2;
const uint32_t kFreqLeft = 25;
const uint32_t kFreqRight = 100;
int32_t attrib_list[] = {
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_DURATION, kBufferSize,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_BUFFERS, kNumBuffers,
PP_MEDIASTREAMAUDIOTRACK_ATTRIB_NONE,
};
ASSERT_SUBTEST_SUCCESS(CheckConfigure(attrib_list, PP_OK));
// Get kNumBuffers buffers and verify they conform to the expected waveform.
PP_TimeDelta timestamp = 0.0;
int sample_time = 0;
uint32_t left_start = 0;
uint32_t right_start = 0;
for (int j = 0; j < kNumBuffers; ++j) {
TestCompletionCallbackWithOutput<pp::AudioBuffer> cc_get_buffer(
instance_->pp_instance(), false);
cc_get_buffer.WaitForResult(
audio_track_.GetBuffer(cc_get_buffer.GetCallback()));
ASSERT_EQ(PP_OK, cc_get_buffer.result());
pp::AudioBuffer buffer = cc_get_buffer.output();
ASSERT_FALSE(buffer.is_null());
ASSERT_TRUE(IsSampleRateValid(buffer.GetSampleRate()));
ASSERT_EQ(buffer.GetSampleSize(), PP_AUDIOBUFFER_SAMPLESIZE_16_BITS);
ASSERT_EQ(buffer.GetNumberOfChannels(), kChannels);
ASSERT_GE(buffer.GetTimestamp(), timestamp);
timestamp = buffer.GetTimestamp();
uint32_t buffer_size = buffer.GetDataBufferSize();
uint32_t sample_rate = buffer.GetSampleRate();
uint32_t num_samples = buffer.GetNumberOfSamples();
uint32_t bytes_per_frame = kChannels * 2;
ASSERT_EQ(num_samples, (kChannels * kBufferSize * sample_rate) / 1000);
ASSERT_EQ(buffer_size % bytes_per_frame, 0U);
ASSERT_EQ(buffer_size, num_samples * 2);
// Period of sine wave, in samples.
uint32_t left_period = sample_rate / kFreqLeft;
uint32_t right_period = sample_rate / kFreqRight;
int16_t* data_buffer = static_cast<int16_t*>(buffer.GetDataBuffer());
ASSERT_TRUE(data_buffer != NULL);
if (j == 0) {
// The generated wave doesn't necessarily start at 0, so compensate for
// this.
left_start = CalculateWaveStartingTime(data_buffer[0], data_buffer[2],
left_period);
right_start = CalculateWaveStartingTime(data_buffer[1], data_buffer[3],
right_period);
}
for (uint32_t sample = 0; sample < num_samples;
sample += 2, sample_time++) {
int16_t left = data_buffer[sample];
int16_t right = data_buffer[sample + 1];
double angle = (2.0 * M_PI * ((sample_time + left_start) % left_period)) /
left_period;
int16_t expected = INT16_MAX * sin(angle);
// Account for off-by-one errors due to rounding.
ASSERT_GE(left, std::max<int16_t>(expected, INT16_MIN + 1) - 1);
ASSERT_LE(left, std::min<int16_t>(expected, INT16_MAX - 1) + 1);
angle = (2 * M_PI * ((sample_time + right_start) % right_period)) /
right_period;
expected = INT16_MAX * sin(angle);
ASSERT_GE(right, std::max<int16_t>(expected, INT16_MIN + 1) - 1);
ASSERT_LE(right, std::min<int16_t>(expected, INT16_MAX - 1) + 1);
}
audio_track_.RecycleBuffer(buffer);
}
PASS();
}
|