File: audio_data_test.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (894 lines) | stat: -rw-r--r-- 34,422 bytes parent folder | download | duplicates (6)
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
// Copyright 2021 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/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "third_party/blink/renderer/modules/webcodecs/audio_data.h"

#include <optional>

#include "base/containers/span.h"
#include "media/base/audio_sample_types.h"
#include "media/base/test_helpers.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_audio_data_copy_to_options.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_audio_data_init.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_audio_sample_format.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_array_buffer.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_data_view.h"
#include "third_party/blink/renderer/modules/webaudio/audio_buffer.h"
#include "third_party/blink/renderer/modules/webcodecs/array_buffer_util.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"

namespace blink {

namespace {
// Default test values
constexpr int64_t kTimestampInMicroSeconds = 1234;
constexpr int kChannels = 2;
constexpr int kFrames = 20;
constexpr int kSampleRate = 8000;
constexpr int kPartialFrameCount = 5;
constexpr int kOffset = 5;

constexpr int kMicrosecondPerSecond = 1E6;
constexpr uint64_t kExpectedDuration =
    static_cast<int64_t>(kFrames * kMicrosecondPerSecond / kSampleRate);

constexpr float kIncrement = 1.0f / 1000;
constexpr float kEpsilon = kIncrement / 100;
}  // namespace

class AudioDataTest : public testing::Test {
 protected:
  void VerifyPlanarData(float* data, float start_value, int count) {
    for (int i = 0; i < count; ++i)
      ASSERT_NEAR(data[i], start_value + i * kIncrement, kEpsilon) << "i=" << i;
  }

  AllowSharedBufferSource* CreateDefaultData() {
    return CreateCustomData(kChannels, kFrames);
  }

  AllowSharedBufferSource* CreateCustomData(int channels, int frames) {
    auto* buffer = DOMArrayBuffer::Create(channels * frames, sizeof(float));
    for (int ch = 0; ch < channels; ++ch) {
      float* plane_start =
          reinterpret_cast<float*>(buffer->Data()) + ch * frames;
      for (int i = 0; i < frames; ++i) {
        plane_start[i] = static_cast<float>((i + ch * frames) * kIncrement);
      }
    }
    return MakeGarbageCollected<AllowSharedBufferSource>(buffer);
  }

  AudioDataInit* CreateDefaultAudioDataInit(AllowSharedBufferSource* data) {
    auto* audio_data_init = AudioDataInit::Create();
    audio_data_init->setData(data);
    audio_data_init->setTimestamp(kTimestampInMicroSeconds);
    audio_data_init->setNumberOfChannels(kChannels);
    audio_data_init->setNumberOfFrames(kFrames);
    audio_data_init->setSampleRate(kSampleRate);
    audio_data_init->setFormat("f32-planar");
    return audio_data_init;
  }

  AudioData* CreateDefaultAudioData(ScriptState* script_state,
                                    ExceptionState& exception_state) {
    auto* data = CreateDefaultData();
    auto* audio_data_init = CreateDefaultAudioDataInit(data);
    return MakeGarbageCollected<AudioData>(script_state, audio_data_init,
                                           exception_state);
  }

  AudioDataCopyToOptions* CreateCopyToOptions(int index,
                                              std::optional<uint32_t> offset,
                                              std::optional<uint32_t> count) {
    auto* copy_to_options = AudioDataCopyToOptions::Create();
    copy_to_options->setPlaneIndex(index);

    if (offset.has_value())
      copy_to_options->setFrameOffset(offset.value());

    if (count.has_value())
      copy_to_options->setFrameCount(count.value());

    return copy_to_options;
  }

  void VerifyAllocationSize(int plane_index,
                            std::optional<uint32_t> frame_offset,
                            std::optional<uint32_t> frame_count,
                            bool should_throw,
                            int expected_size,
                            std::string description) {
    V8TestingScope scope;
    auto* frame = CreateDefaultAudioData(scope.GetScriptState(),
                                         scope.GetExceptionState());

    auto* options = CreateCopyToOptions(plane_index, frame_offset, frame_count);
    {
      SCOPED_TRACE(description);
      int allocations_size =
          frame->allocationSize(options, scope.GetExceptionState());

      EXPECT_EQ(should_throw, scope.GetExceptionState().HadException());
      EXPECT_EQ(allocations_size, expected_size);
    }
  }
  test::TaskEnvironment task_environment_;
};

TEST_F(AudioDataTest, ConstructFromMediaBuffer) {
  const media::ChannelLayout channel_layout =
      media::ChannelLayout::CHANNEL_LAYOUT_STEREO;
  const int channels = ChannelLayoutToChannelCount(channel_layout);
  constexpr base::TimeDelta timestamp =
      base::Microseconds(kTimestampInMicroSeconds);
  constexpr int kValueStart = 1;
  constexpr int kValueIncrement = 1;
  scoped_refptr<media::AudioBuffer> media_buffer =
      media::MakeAudioBuffer<int16_t>(
          media::SampleFormat::kSampleFormatS16, channel_layout, channels,
          kSampleRate, kValueStart, kValueIncrement, kFrames, timestamp);

  auto* frame = MakeGarbageCollected<AudioData>(media_buffer);

  EXPECT_EQ(frame->format(), "s16");
  EXPECT_EQ(frame->sampleRate(), static_cast<uint32_t>(kSampleRate));
  EXPECT_EQ(frame->numberOfFrames(), static_cast<uint32_t>(kFrames));
  EXPECT_EQ(frame->numberOfChannels(), static_cast<uint32_t>(kChannels));
  EXPECT_EQ(frame->duration(), kExpectedDuration);
  EXPECT_EQ(frame->timestamp(), kTimestampInMicroSeconds);

  // The media::AudioBuffer we receive should match the original |media_buffer|.
  EXPECT_EQ(frame->data(), media_buffer);

  frame->close();
  EXPECT_EQ(frame->data(), nullptr);
  EXPECT_EQ(frame->format(), std::nullopt);
  EXPECT_EQ(frame->sampleRate(), 0u);
  EXPECT_EQ(frame->numberOfFrames(), 0u);
  EXPECT_EQ(frame->numberOfChannels(), 0u);
  EXPECT_EQ(frame->duration(), 0u);

  // Timestamp is preserved even after closing.
  EXPECT_EQ(frame->timestamp(), kTimestampInMicroSeconds);
}

TEST_F(AudioDataTest, ConstructFromAudioDataInit) {
  V8TestingScope scope;
  auto* buffer_source = CreateDefaultData();

  auto* audio_data_init = CreateDefaultAudioDataInit(buffer_source);

  auto* frame = MakeGarbageCollected<AudioData>(
      scope.GetScriptState(), audio_data_init, scope.GetExceptionState());

  EXPECT_EQ(frame->format(), "f32-planar");
  EXPECT_EQ(frame->sampleRate(), static_cast<uint32_t>(kSampleRate));
  EXPECT_EQ(frame->numberOfFrames(), static_cast<uint32_t>(kFrames));
  EXPECT_EQ(frame->numberOfChannels(), static_cast<uint32_t>(kChannels));
  EXPECT_EQ(frame->duration(), kExpectedDuration);
  EXPECT_EQ(frame->timestamp(), kTimestampInMicroSeconds);
}

TEST_F(AudioDataTest, ConstructFromAudioDataInit_HighChannelCount) {
  V8TestingScope scope;
  constexpr int kHighChannelCount = 25;
  auto* buffer_source = CreateCustomData(kHighChannelCount, kFrames);

  auto* audio_data_init = CreateDefaultAudioDataInit(buffer_source);
  audio_data_init->setNumberOfChannels(kHighChannelCount);

  auto* frame = MakeGarbageCollected<AudioData>(
      scope.GetScriptState(), audio_data_init, scope.GetExceptionState());

  EXPECT_EQ(frame->format(), "f32-planar");
  EXPECT_EQ(frame->sampleRate(), static_cast<uint32_t>(kSampleRate));
  EXPECT_EQ(frame->numberOfFrames(), static_cast<uint32_t>(kFrames));
  EXPECT_EQ(frame->numberOfChannels(),
            static_cast<uint32_t>(kHighChannelCount));
  EXPECT_EQ(frame->duration(), kExpectedDuration);
  EXPECT_EQ(frame->timestamp(), kTimestampInMicroSeconds);
}

TEST_F(AudioDataTest, AllocationSize) {
  // We only support the "FLTP" format for now.
  constexpr int kTotalSizeInBytes = kFrames * sizeof(float);

  // Basic cases.
  VerifyAllocationSize(0, std::nullopt, std::nullopt, false, kTotalSizeInBytes,
                       "Default");
  VerifyAllocationSize(1, std::nullopt, std::nullopt, false, kTotalSizeInBytes,
                       "Valid index.");
  VerifyAllocationSize(0, 0, kFrames, false, kTotalSizeInBytes,
                       "Specifying defaults");

  // Cases where we cover a subset of samples.
  VerifyAllocationSize(0, kFrames / 2, std::nullopt, false,
                       kTotalSizeInBytes / 2, "Valid offset, no count");
  VerifyAllocationSize(0, kFrames / 2, kFrames / 4, false,
                       kTotalSizeInBytes / 4, "Valid offset and count");
  VerifyAllocationSize(0, std::nullopt, kFrames / 2, false,
                       kTotalSizeInBytes / 2, "No offset, valid count");

  // Copying 0 frames is technically valid.
  VerifyAllocationSize(0, std::nullopt, 0, false, 0, "Frame count is 0");

  // Failures
  VerifyAllocationSize(2, std::nullopt, std::nullopt, true, 0,
                       "Invalid index.");
  VerifyAllocationSize(0, kFrames, std::nullopt, true, 0, "Offset too big");
  VerifyAllocationSize(0, std::nullopt, kFrames + 1, true, 0, "Count too big");
  VerifyAllocationSize(0, 1, kFrames, true, 0, "Count too big, with offset");
}

TEST_F(AudioDataTest, CopyTo_DestinationTooSmall) {
  V8TestingScope scope;
  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options = CreateCopyToOptions(/*index=*/0, /*offset=*/std::nullopt,
                                      /*count=*/std::nullopt);

  AllowSharedBufferSource* small_dest =
      MakeGarbageCollected<AllowSharedBufferSource>(
          DOMArrayBuffer::Create(kFrames - 1, sizeof(float)));

  frame->copyTo(small_dest, options, scope.GetExceptionState());

  EXPECT_TRUE(scope.GetExceptionState().HadException());
}

TEST_F(AudioDataTest, CopyTo_FullFrames) {
  V8TestingScope scope;
  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options = CreateCopyToOptions(/*index=*/0, /*offset=*/std::nullopt,
                                      /*count=*/std::nullopt);

  DOMArrayBuffer* data_copy = DOMArrayBuffer::Create(kFrames, sizeof(float));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  VerifyPlanarData(static_cast<float*>(data_copy->Data()), /*start_value=*/0,
                   /*count=*/kFrames);
}

TEST_F(AudioDataTest, CopyTo_PlaneIndex) {
  V8TestingScope scope;
  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options = CreateCopyToOptions(/*index=*/1, /*offset=*/std::nullopt,
                                      /*count=*/std::nullopt);

  DOMArrayBuffer* data_copy = DOMArrayBuffer::Create(kFrames, sizeof(float));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  // The channel 1's start value is kFrames*in.
  VerifyPlanarData(static_cast<float*>(data_copy->Data()),
                   /*start_value=*/kFrames * kIncrement,
                   /*count=*/kFrames);
}

// Check that sample-aligned ArrayBuffers can be transferred to AudioData
TEST_F(AudioDataTest, TransferBuffer) {
  V8TestingScope scope;
  std::string data = "audio data";
  auto* buffer = DOMArrayBuffer::Create(base::as_byte_span(data));
  auto* buffer_source = MakeGarbageCollected<AllowSharedBufferSource>(buffer);
  const void* buffer_data_ptr = buffer->Data();

  auto* audio_data_init = AudioDataInit::Create();
  audio_data_init->setData(buffer_source);
  audio_data_init->setTimestamp(0);
  audio_data_init->setNumberOfChannels(1);
  audio_data_init->setNumberOfFrames(static_cast<uint32_t>(data.size()));
  audio_data_init->setSampleRate(kSampleRate);
  audio_data_init->setFormat("u8");
  HeapVector<Member<DOMArrayBuffer>> transfer;
  transfer.push_back(Member<DOMArrayBuffer>(buffer));
  audio_data_init->setTransfer(std::move(transfer));

  auto* audio_data = MakeGarbageCollected<AudioData>(
      scope.GetScriptState(), audio_data_init, scope.GetExceptionState());

  EXPECT_EQ(audio_data->format(), "u8");
  EXPECT_EQ(audio_data->numberOfFrames(), data.size());
  EXPECT_EQ(audio_data->numberOfChannels(), 1u);

  EXPECT_EQ(audio_data->data()->channel_data()[0], buffer_data_ptr);
  auto* options = CreateCopyToOptions(0, 0, {});
  uint32_t allocations_size =
      audio_data->allocationSize(options, scope.GetExceptionState());

  EXPECT_TRUE(buffer->IsDetached());
  EXPECT_EQ(allocations_size, data.size());
}

// Check that not-sample-aligned ArrayBuffers are copied AudioData
TEST_F(AudioDataTest, FailToTransferUnAlignedBuffer) {
  V8TestingScope scope;
  const uint32_t frames = 3;
  std::vector<int32_t> data{0, 1, 2, 3, 4};
  auto* buffer = DOMArrayBuffer::Create(base::as_byte_span(data));
  auto* view = DOMDataView::Create(
      buffer, 1 /* offset one byte to ensure misalignment */,
      frames * sizeof(int32_t));
  auto* buffer_source = MakeGarbageCollected<AllowSharedBufferSource>(
      MaybeShared<DOMArrayBufferView>(view));

  MakeGarbageCollected<AllowSharedBufferSource>(buffer);
  const void* buffer_data_ptr = buffer->Data();

  auto* audio_data_init = AudioDataInit::Create();
  audio_data_init->setData(buffer_source);
  audio_data_init->setTimestamp(0);
  audio_data_init->setNumberOfChannels(1);
  audio_data_init->setNumberOfFrames(frames);
  audio_data_init->setSampleRate(kSampleRate);
  audio_data_init->setFormat("s32");
  HeapVector<Member<DOMArrayBuffer>> transfer;
  transfer.push_back(Member<DOMArrayBuffer>(buffer));
  audio_data_init->setTransfer(std::move(transfer));

  auto* audio_data = MakeGarbageCollected<AudioData>(
      scope.GetScriptState(), audio_data_init, scope.GetExceptionState());

  // Making sure that the data was copied, not just aliased.
  EXPECT_NE(audio_data->data()->channel_data()[0], buffer_data_ptr);
  EXPECT_EQ(audio_data->numberOfFrames(), frames);
  auto* options = CreateCopyToOptions(0, 0, {});
  uint32_t allocations_size =
      audio_data->allocationSize(options, scope.GetExceptionState());

  // Even though we copied the data, the buffer still needs to be aligned.
  EXPECT_TRUE(buffer->IsDetached());
  EXPECT_EQ(allocations_size, frames * sizeof(int32_t));
}

TEST_F(AudioDataTest, CopyTo_Offset) {
  V8TestingScope scope;

  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options =
      CreateCopyToOptions(/*index=*/0, kOffset, /*count=*/std::nullopt);

  // |data_copy| is bigger than what we need, and that's ok.
  DOMArrayBuffer* data_copy = DOMArrayBuffer::Create(kFrames, sizeof(float));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  VerifyPlanarData(static_cast<float*>(data_copy->Data()),
                   /*start_value=*/kOffset * kIncrement,
                   /*count=*/kFrames - kOffset);
}

TEST_F(AudioDataTest, CopyTo_PartialFrames) {
  V8TestingScope scope;

  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options = CreateCopyToOptions(/*index=*/0, /*offset=*/std::nullopt,
                                      kPartialFrameCount);

  DOMArrayBuffer* data_copy =
      DOMArrayBuffer::Create(kPartialFrameCount, sizeof(float));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  VerifyPlanarData(static_cast<float*>(data_copy->Data()),
                   /*start_value=*/0, kPartialFrameCount);
}

TEST_F(AudioDataTest, CopyTo_PartialFramesAndOffset) {
  V8TestingScope scope;

  auto* frame =
      CreateDefaultAudioData(scope.GetScriptState(), scope.GetExceptionState());
  auto* options = CreateCopyToOptions(/*index=*/0, kOffset, kPartialFrameCount);

  DOMArrayBuffer* data_copy =
      DOMArrayBuffer::Create(kPartialFrameCount, sizeof(float));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  VerifyPlanarData(static_cast<float*>(data_copy->Data()),
                   /*start_value=*/kOffset * kIncrement, kPartialFrameCount);
}

TEST_F(AudioDataTest, Interleaved) {
  V8TestingScope scope;

  // Do not use a power of 2, to make it easier to verify the allocationSize()
  // results.
  constexpr int kInterleavedChannels = 3;

  std::vector<int16_t> samples(kFrames * kInterleavedChannels);

  // Populate samples.
  for (int i = 0; i < kFrames; ++i) {
    int block_index = i * kInterleavedChannels;

    samples[block_index] = i;                    // channel 0
    samples[block_index + 1] = i + kFrames;      // channel 1
    samples[block_index + 2] = i + 2 * kFrames;  // channel 2
  }

  const uint8_t* data[] = {reinterpret_cast<const uint8_t*>(samples.data())};

  auto media_buffer = media::AudioBuffer::CopyFrom(
      media::SampleFormat::kSampleFormatS16,
      media::GuessChannelLayout(kInterleavedChannels), kInterleavedChannels,
      kSampleRate, kFrames, data, base::TimeDelta());

  auto* frame = MakeGarbageCollected<AudioData>(media_buffer);

  EXPECT_EQ("s16", frame->format());

  auto* options = CreateCopyToOptions(/*index=*/1, kOffset, kPartialFrameCount);

  // Verify that plane indexes > 1 throw, for interleaved formats.
  {
    DummyExceptionStateForTesting exception_state;
    frame->allocationSize(options, exception_state);
    EXPECT_TRUE(exception_state.HadException());
  }

  // Verify that copy conversion to a planar format supports indexes > 1,
  // even if the source is interleaved.
  options->setFormat(V8AudioSampleFormat::Enum::kF32Planar);
  int allocations_size =
      frame->allocationSize(options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  // Verify we get the expected allocation size, for valid formats.
  options = CreateCopyToOptions(/*index=*/0, kOffset, kPartialFrameCount);
  allocations_size = frame->allocationSize(options, scope.GetExceptionState());

  EXPECT_FALSE(scope.GetExceptionState().HadException());

  // Interleaved formats take into account the number of channels.
  EXPECT_EQ(static_cast<unsigned int>(allocations_size),
            kPartialFrameCount * kInterleavedChannels * sizeof(uint16_t));

  DOMArrayBuffer* data_copy = DOMArrayBuffer::Create(
      kPartialFrameCount * kInterleavedChannels, sizeof(uint16_t));
  AllowSharedBufferSource* dest =
      MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

  // All frames should have been copied.
  frame->copyTo(dest, options, scope.GetExceptionState());
  EXPECT_FALSE(scope.GetExceptionState().HadException());

  // Verify we retrieved the right samples.
  int16_t* copy = static_cast<int16_t*>(data_copy->Data());
  for (int i = 0; i < kPartialFrameCount; ++i) {
    int block_index = i * kInterleavedChannels;
    int16_t base_value = kOffset + i;

    EXPECT_EQ(copy[block_index], base_value);                    // channel 0
    EXPECT_EQ(copy[block_index + 1], base_value + kFrames);      // channel 1
    EXPECT_EQ(copy[block_index + 2], base_value + 2 * kFrames);  // channel 2
  }
}

struct U8Traits {
  static constexpr std::string Format = "u8";
  static constexpr std::string PlanarFormat = "u8-planar";
  using Traits = media::UnsignedInt8SampleTypeTraits;
};

struct S16Traits {
  static constexpr std::string Format = "s16";
  static constexpr std::string PlanarFormat = "s16-planar";
  using Traits = media::SignedInt16SampleTypeTraits;
};

struct S32Traits {
  static constexpr std::string Format = "s32";
  static constexpr std::string PlanarFormat = "s32-planar";
  using Traits = media::SignedInt32SampleTypeTraits;
};

struct F32Traits {
  static constexpr std::string Format = "f32";
  static constexpr std::string PlanarFormat = "f32-planar";
  using Traits = media::Float32SampleTypeTraits;
};

template <typename SourceTraits, typename TargetTraits>
struct ConversionConfig {
  using From = SourceTraits;
  using To = TargetTraits;
  static std::string config_name() {
    return From::Format + "_to_" + To::Format;
  }
};

template <typename TestConfig>
class AudioDataConversionTest : public testing::Test {
 protected:
  AudioDataInit* CreateAudioDataInit(AllowSharedBufferSource* data,
                                     std::string format) {
    auto* audio_data_init = AudioDataInit::Create();
    audio_data_init->setData(data);
    audio_data_init->setTimestamp(kTimestampInMicroSeconds);
    audio_data_init->setNumberOfChannels(kChannels);
    audio_data_init->setNumberOfFrames(kFrames);
    audio_data_init->setSampleRate(kSampleRate);
    audio_data_init->setFormat(String(format));
    return audio_data_init;
  }

  // Creates test AudioData with kMinValue in channel 0 and kMaxValue in
  // channel 1. If `use_offset`, the first sample of every channel will be
  // kZeroPointValue; if `use_frame_count`, the last sample of every channel
  // will be kZeroPointValue. This allows us to verify that we respect bounds
  // when copying.
  AudioData* CreateAudioData(std::string format,
                             bool planar,
                             bool use_offset,
                             bool use_frame_count,
                             ScriptState* script_state,
                             ExceptionState& exception_state) {
    auto* data = planar ? CreatePlanarData(use_offset, use_frame_count)
                        : CreateInterleavedData(use_offset, use_frame_count);
    auto* audio_data_init = CreateAudioDataInit(data, format);
    return MakeGarbageCollected<AudioData>(script_state, audio_data_init,
                                           exception_state);
  }

  // Creates CopyToOptions. If `use_offset` is true, we exclude the first
  // sample. If `use_frame_count`, we exclude the last sample.
  AudioDataCopyToOptions* CreateCopyToOptions(int plane_index,
                                              std::string format,
                                              bool use_offset,
                                              bool use_frame_count) {
    auto* copy_to_options = AudioDataCopyToOptions::Create();
    copy_to_options->setPlaneIndex(plane_index);
    copy_to_options->setFormat(String(format));
    int total_frames = kFrames;

    if (use_offset) {
      copy_to_options->setFrameOffset(1);
      --total_frames;
    }

    if (use_frame_count) {
      copy_to_options->setFrameCount(total_frames - 1);
    }

    return copy_to_options;
  }

  // Returns planar data with the source sample type's min value in
  // channel 0, and its max value in channel 1.
  // If `use_offset` is true, the first sample of every channel will be 0.
  // If `use_frame_count` is true, the last sample of every channel will be 0.
  AllowSharedBufferSource* CreatePlanarData(bool use_offset,
                                            bool use_frame_count) {
    static_assert(kChannels == 2, "CreatePlanarData() assumes 2 channels");
    using SourceTraits = TestConfig::From::Traits;
    using ValueType = SourceTraits::ValueType;
    auto* buffer =
        DOMArrayBuffer::Create(kChannels * kFrames, sizeof(ValueType));

    ValueType* plane_start = reinterpret_cast<ValueType*>(buffer->Data());
    for (int i = 0; i < kFrames; ++i) {
      plane_start[i] = SourceTraits::kMinValue;
    }

    if (use_offset) {
      plane_start[0] = SourceTraits::kZeroPointValue;
    }
    if (use_frame_count) {
      plane_start[kFrames - 1] = SourceTraits::kZeroPointValue;
    }

    plane_start += kFrames;

    for (int i = 0; i < kFrames; ++i) {
      plane_start[i] = SourceTraits::kMaxValue;
    }

    if (use_offset) {
      plane_start[0] = SourceTraits::kZeroPointValue;
    }
    if (use_frame_count) {
      plane_start[kFrames - 1] = SourceTraits::kZeroPointValue;
    }

    return MakeGarbageCollected<AllowSharedBufferSource>(buffer);
  }

  // Returns interleaved data the source sample type's min value in channel 0,
  // and its max value in channel 1.
  // If `use_offset` is true, the first sample of every channel will be 0.
  // If `use_frame_count` is true, the last sample of every channel will be 0.
  AllowSharedBufferSource* CreateInterleavedData(bool use_offset,
                                                 bool use_frame_count) {
    static_assert(kChannels == 2,
                  "CreateInterleavedData() assumes 2 channels.");
    using SourceTraits = TestConfig::From::Traits;
    using ValueType = SourceTraits::ValueType;
    constexpr int kTotalSamples = kChannels * kFrames;
    auto* buffer = DOMArrayBuffer::Create(kTotalSamples, sizeof(ValueType));

    ValueType* plane_start = reinterpret_cast<ValueType*>(buffer->Data());
    for (int i = 0; i < kTotalSamples; i += 2) {
      plane_start[i] = SourceTraits::kMinValue;
      plane_start[i + 1] = SourceTraits::kMaxValue;
    }

    if (use_offset) {
      plane_start[0] = SourceTraits::kZeroPointValue;
      plane_start[1] = SourceTraits::kZeroPointValue;
    }

    if (use_frame_count) {
      plane_start[kTotalSamples - 2] = SourceTraits::kZeroPointValue;
      plane_start[kTotalSamples - 1] = SourceTraits::kZeroPointValue;
    }

    return MakeGarbageCollected<AllowSharedBufferSource>(buffer);
  }

  int GetFramesToCopy(bool use_offset, bool use_frame_count) {
    int frames_to_copy = kFrames;
    if (use_offset) {
      --frames_to_copy;
    }
    if (use_frame_count) {
      --frames_to_copy;
    }
    return frames_to_copy;
  }

  void TestConversionToPlanar(bool source_is_planar,
                              bool use_offset,
                              bool use_frame_count) {
    using Config = TestConfig;
    using TargetType = Config::To::Traits::ValueType;
    constexpr int kChannelToCopy = 1;

    std::string source_format =
        source_is_planar ? Config::From::PlanarFormat : Config::From::Format;

    // Create original data. The first and last frame will be zero'ed, if
    // `use_offset` or `use_frame_count` are set, respectively.
    V8TestingScope scope;
    auto* audio_data = CreateAudioData(
        source_format, source_is_planar, use_offset, use_frame_count,
        scope.GetScriptState(), scope.GetExceptionState());
    ASSERT_FALSE(scope.GetExceptionState().HadException())
        << scope.GetExceptionState().Message();

    // Prepare to copy.
    auto* copy_to_options = CreateCopyToOptions(
        kChannelToCopy, Config::To::PlanarFormat, use_offset, use_frame_count);

    const int frames_to_copy = GetFramesToCopy(use_offset, use_frame_count);
    DOMArrayBuffer* data_copy =
        DOMArrayBuffer::Create(frames_to_copy, sizeof(TargetType));
    AllowSharedBufferSource* dest =
        MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

    // Copy frames, potentially excluding the first and last frame if
    // `use_offset` or `use_frame_count` are set, respectively.
    audio_data->copyTo(dest, copy_to_options, scope.GetExceptionState());
    EXPECT_FALSE(scope.GetExceptionState().HadException())
        << scope.GetExceptionState().Message();

    TargetType* copied_data = static_cast<TargetType*>(data_copy->Data());

    // `kChannelToCopy` should only contain kMaxValue
    for (int i = 0; i < frames_to_copy; ++i) {
      ASSERT_EQ(copied_data[i], Config::To::Traits::kMaxValue);
    }
  }

  void TestConversionToInterleaved(bool source_is_planar,
                                   bool use_offset,
                                   bool use_frame_count) {
    using Config = TestConfig;
    using TargetType = Config::To::Traits::ValueType;

    std::string source_format =
        source_is_planar ? Config::From::PlanarFormat : Config::From::Format;

    // Create original data. The first and last frame will be zero'ed, if
    // `use_offset` or `use_frame_count` are set, respectively.
    V8TestingScope scope;
    auto* audio_data = CreateAudioData(
        source_format, source_is_planar, use_offset, use_frame_count,
        scope.GetScriptState(), scope.GetExceptionState());
    ASSERT_FALSE(scope.GetExceptionState().HadException())
        << scope.GetExceptionState().Message();

    // Prepare to copy.
    auto* copy_to_options =
        CreateCopyToOptions(0, Config::To::Format, use_offset, use_frame_count);

    const int total_frames =
        GetFramesToCopy(use_offset, use_frame_count) * kChannels;
    DOMArrayBuffer* data_copy =
        DOMArrayBuffer::Create(total_frames, sizeof(TargetType));
    AllowSharedBufferSource* dest =
        MakeGarbageCollected<AllowSharedBufferSource>(data_copy);

    // Copy frames, potentially excluding the first and last frame if
    // `use_offset` or `use_frame_count` are set, respectively.
    audio_data->copyTo(dest, copy_to_options, scope.GetExceptionState());
    EXPECT_FALSE(scope.GetExceptionState().HadException())
        << scope.GetExceptionState().Message();

    TargetType* copied_data = static_cast<TargetType*>(data_copy->Data());

    // The interleaved data should have kMinValue in
    // channel 0 and kMaxValue in channel 1.
    for (int i = 0; i < total_frames; i += 2) {
      ASSERT_EQ(copied_data[i], Config::To::Traits::kMinValue);
      ASSERT_EQ(copied_data[i + 1], Config::To::Traits::kMaxValue);
    }
  }

  test::TaskEnvironment task_environment_;
};

TYPED_TEST_SUITE_P(AudioDataConversionTest);

TYPED_TEST_P(AudioDataConversionTest, PlanarToPlanar) {
  const bool source_is_planar = true;

  {
    SCOPED_TRACE(TypeParam::config_name() + "_all_frames");
    this->TestConversionToPlanar(source_is_planar, false, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset");
    this->TestConversionToPlanar(source_is_planar, true, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_frame_count");
    this->TestConversionToPlanar(source_is_planar, false, true);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset_and_frame_count");
    this->TestConversionToPlanar(source_is_planar, true, true);
  }
}

TYPED_TEST_P(AudioDataConversionTest, InterleavedToPlanar) {
  const bool source_is_planar = false;

  {
    SCOPED_TRACE(TypeParam::config_name() + "_all_frames");
    this->TestConversionToPlanar(source_is_planar, false, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset");
    this->TestConversionToPlanar(source_is_planar, true, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_frame_count");
    this->TestConversionToPlanar(source_is_planar, false, true);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset_and_frame_count");
    this->TestConversionToPlanar(source_is_planar, true, true);
  }
}

TYPED_TEST_P(AudioDataConversionTest, PlanarToInterleaved) {
  const bool source_is_planar = true;

  {
    SCOPED_TRACE(TypeParam::config_name() + "_all_frames");
    this->TestConversionToInterleaved(source_is_planar, false, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset");
    this->TestConversionToInterleaved(source_is_planar, true, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_frame_count");
    this->TestConversionToInterleaved(source_is_planar, false, true);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset_and_frame_count");
    this->TestConversionToInterleaved(source_is_planar, true, true);
  }
}

TYPED_TEST_P(AudioDataConversionTest, InterleavedToInterleaved) {
  const bool source_is_planar = false;

  {
    SCOPED_TRACE(TypeParam::config_name() + "_all_frames");
    this->TestConversionToInterleaved(source_is_planar, false, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset");
    this->TestConversionToInterleaved(source_is_planar, true, false);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_frame_count");
    this->TestConversionToInterleaved(source_is_planar, false, true);
  }

  {
    SCOPED_TRACE(TypeParam::config_name() + "_with_offset_and_frame_count");
    this->TestConversionToInterleaved(source_is_planar, true, true);
  }
}

REGISTER_TYPED_TEST_SUITE_P(AudioDataConversionTest,
                            PlanarToPlanar,
                            InterleavedToPlanar,
                            PlanarToInterleaved,
                            InterleavedToInterleaved);

typedef ::testing::Types<ConversionConfig<U8Traits, U8Traits>,
                         ConversionConfig<U8Traits, S16Traits>,
                         ConversionConfig<U8Traits, S32Traits>,
                         ConversionConfig<U8Traits, F32Traits>,
                         ConversionConfig<S16Traits, U8Traits>,
                         ConversionConfig<S16Traits, S16Traits>,
                         ConversionConfig<S16Traits, S32Traits>,
                         ConversionConfig<S16Traits, F32Traits>,
                         ConversionConfig<S32Traits, U8Traits>,
                         ConversionConfig<S32Traits, S16Traits>,
                         ConversionConfig<S32Traits, S32Traits>,
                         ConversionConfig<S32Traits, F32Traits>,
                         ConversionConfig<F32Traits, U8Traits>,
                         ConversionConfig<F32Traits, S16Traits>,
                         ConversionConfig<F32Traits, S32Traits>,
                         ConversionConfig<F32Traits, F32Traits>>
    TestConfigs;

INSTANTIATE_TYPED_TEST_SUITE_P(CommonTypes,
                               AudioDataConversionTest,
                               TestConfigs);

}  // namespace blink