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
media / filters / decoder_selector_unittest.cc [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <tuple>
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/memory/scoped_refptr.h"
#include "base/notreached.h"
#include "base/test/gmock_callback_support.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "build/build_config.h"
#include "media/base/demuxer_stream.h"
#include "media/base/media_switches.h"
#include "media/base/media_util.h"
#include "media/base/mock_filters.h"
#include "media/base/test_helpers.h"
#include "media/filters/decoder_selector.h"
#include "media/filters/decrypting_demuxer_stream.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#if !BUILDFLAG(IS_ANDROID)
#include "media/filters/decrypting_audio_decoder.h"
#include "media/filters/decrypting_video_decoder.h"
#endif // !BUILDFLAG(IS_ANDROID)
using ::base::test::RunCallback;
using ::base::test::RunOnceCallback;
using ::base::test::RunOnceCallbackRepeatedly;
using ::testing::_;
using ::testing::AnyNumber;
using ::testing::IsNull;
using ::testing::NiceMock;
using ::testing::NotNull;
using ::testing::Return;
using ::testing::StrictMock;
namespace media {
namespace {
enum DecryptorCapability {
kNoDecryptor,
kDecryptOnly,
kDecryptAndDecode,
};
enum DecoderCapability {
kAlwaysFail,
kClearOnly,
kEncryptedOnly,
kAlwaysSucceed,
};
bool DecoderCapabilitySupportsDecryption(DecoderCapability capability) {
switch (capability) {
case kAlwaysFail:
return false;
case kClearOnly:
return false;
case kEncryptedOnly:
return true;
case kAlwaysSucceed:
return true;
}
}
DecoderStatus IsConfigSupported(DecoderCapability capability,
bool is_encrypted) {
switch (capability) {
case kAlwaysFail:
return DecoderStatus::Codes::kFailed;
case kClearOnly:
return is_encrypted ? DecoderStatus::Codes::kUnsupportedEncryptionMode
: DecoderStatus::Codes::kOk;
case kEncryptedOnly:
return is_encrypted ? DecoderStatus::Codes::kOk
: DecoderStatus::Codes::kUnsupportedEncryptionMode;
case kAlwaysSucceed:
return DecoderStatus::Codes::kOk;
}
}
const int kDecoder1 = 0xabc;
const int kDecoder2 = 0xdef;
const int kDecoder3 = 0x123;
const int kDecoder4 = 0x456;
// Specializations for the AUDIO version of the test.
class AudioDecoderSelectorTestParam {
public:
static constexpr DemuxerStream::Type kStreamType = DemuxerStream::AUDIO;
using StreamTraits = DecoderStreamTraits<DemuxerStream::AUDIO>;
using MockDecoder = MockAudioDecoder;
using Output = AudioBuffer;
using DecoderType = AudioDecoderType;
#if !BUILDFLAG(IS_ANDROID)
using DecryptingDecoder = DecryptingAudioDecoder;
#endif // !BUILDFLAG(IS_ANDROID)
// StreamTraits() takes different parameters depending on the type.
static std::unique_ptr<StreamTraits> CreateStreamTraits(MediaLog* media_log) {
return std::make_unique<StreamTraits>(media_log, CHANNEL_LAYOUT_STEREO,
kSampleFormatPlanarF32);
}
static void UseNormalClearDecoderConfig(
StrictMock<MockDemuxerStream>& stream) {
stream.set_audio_decoder_config(TestAudioConfig::Normal());
}
static void UseNormalEncryptedDecoderConfig(
StrictMock<MockDemuxerStream>& stream) {
stream.set_audio_decoder_config(TestAudioConfig::NormalEncrypted());
}
// Decoder::Initialize() takes different parameters depending on the type.
static void ExpectInitialize(MockDecoder* decoder,
DecoderCapability capability) {
EXPECT_CALL(*decoder, Initialize_(_, _, _, _, _))
.WillRepeatedly([capability](const AudioDecoderConfig& config,
CdmContext*, AudioDecoder::InitCB& init_cb,
const AudioDecoder::OutputCB&,
const WaitingCB&) {
std::move(init_cb).Run(
IsConfigSupported(capability, config.is_encrypted()));
});
}
static void ExpectNotInitialize(MockDecoder* decoder) {
EXPECT_CALL(*decoder, Initialize_(_, _, _, _, _)).Times(0);
}
};
// Allocate storage for the member variables.
constexpr DemuxerStream::Type AudioDecoderSelectorTestParam::kStreamType;
// Specializations for the VIDEO version of the test.
class VideoDecoderSelectorTestParam {
public:
static constexpr DemuxerStream::Type kStreamType = DemuxerStream::VIDEO;
using StreamTraits = DecoderStreamTraits<DemuxerStream::VIDEO>;
using MockDecoder = MockVideoDecoder;
using Output = VideoFrame;
using DecoderType = VideoDecoderType;
#if !BUILDFLAG(IS_ANDROID)
using DecryptingDecoder = DecryptingVideoDecoder;
#endif // !BUILDFLAG(IS_ANDROID)
static std::unique_ptr<StreamTraits> CreateStreamTraits(MediaLog* media_log) {
return std::make_unique<StreamTraits>(media_log);
}
static void UseNormalClearDecoderConfig(
StrictMock<MockDemuxerStream>& stream) {
stream.set_video_decoder_config(TestVideoConfig::Normal());
}
static void UseNormalEncryptedDecoderConfig(
StrictMock<MockDemuxerStream>& stream) {
stream.set_video_decoder_config(TestVideoConfig::NormalEncrypted());
}
static void ExpectInitialize(MockDecoder* decoder,
DecoderCapability capability) {
EXPECT_CALL(*decoder, Initialize_(_, _, _, _, _, _))
.WillRepeatedly(
[capability](const VideoDecoderConfig& config, bool low_delay,
CdmContext*, VideoDecoder::InitCB& init_cb,
const VideoDecoder::OutputCB&, const WaitingCB&) {
std::move(init_cb).Run(
IsConfigSupported(capability, config.is_encrypted()));
});
}
static void ExpectNotInitialize(MockDecoder* decoder) {
EXPECT_CALL(*decoder, Initialize_(_, _, _, _, _, _)).Times(0);
}
};
// Allocate storate for the member variables.
constexpr DemuxerStream::Type VideoDecoderSelectorTestParam::kStreamType;
} // namespace
// Note: The parameter is called TypeParam in the test cases regardless of what
// we call it here. It's been named the same for convenience.
// Note: The test fixtures inherit from this class. Inside the test cases the
// test fixture class is called TestFixture.
template <typename TypeParam>
class DecoderSelectorTest : public ::testing::Test {
public:
// Convenience aliases.
using Self = DecoderSelectorTest<TypeParam>;
using StreamTraits = typename TypeParam::StreamTraits;
using Decoder = typename StreamTraits::DecoderType;
using MockDecoder = typename TypeParam::MockDecoder;
using Output = typename TypeParam::Output;
using DecoderType = typename TypeParam::DecoderType;
using Selector = DecoderSelector<TypeParam::kStreamType>;
struct MockDecoderArgs {
static MockDecoderArgs Create(int decoder_id,
DecoderCapability capability) {
MockDecoderArgs result;
result.decoder_id = decoder_id;
result.capability = capability;
result.supports_decryption =
DecoderCapabilitySupportsDecryption(capability);
result.is_platform_decoder = false;
result.expect_not_initialized = false;
return result;
}
int decoder_id;
DecoderCapability capability;
bool supports_decryption;
bool is_platform_decoder;
bool expect_not_initialized;
};
DecoderSelectorTest()
: traits_(TypeParam::CreateStreamTraits(&media_log_)),
demuxer_stream_(TypeParam::kStreamType) {}
DecoderSelectorTest(const DecoderSelectorTest&) = delete;
DecoderSelectorTest& operator=(const DecoderSelectorTest&) = delete;
void OnWaiting(WaitingReason reason) { NOTREACHED(); }
void OnOutput(scoped_refptr<Output> output) { NOTREACHED(); }
MOCK_METHOD0_T(NoDecoderSelected, void());
MOCK_METHOD1_T(OnDecoderSelected, void(int));
MOCK_METHOD1_T(OnDecoderSelected, void(DecoderType));
MOCK_METHOD1_T(OnDemuxerStreamSelected,
void(std::unique_ptr<DecryptingDemuxerStream>));
void OnDecoderSelectedThunk(
typename Selector::DecoderOrError decoder,
std::unique_ptr<DecryptingDemuxerStream> decrypting_demuxer_stream) {
// Report only the type or id of the decoder, since that's what the tests
// care about. The decoder will be destructed immediately.
if (decoder.has_value() &&
decoder->GetDecoderType() == DecoderType::kTesting) {
OnDecoderSelected(
static_cast<MockDecoder*>(std::move(decoder).value().get())
->GetDecoderId());
} else if (decoder.has_value()) {
OnDecoderSelected(decoder->GetDecoderType());
} else {
NoDecoderSelected();
}
if (decrypting_demuxer_stream)
OnDemuxerStreamSelected(std::move(decrypting_demuxer_stream));
}
void AddDecryptingDecoder() {
// Require the DecryptingDecoder to be first, because that's easier to
// implement.
DCHECK(mock_decoders_to_create_.empty());
DCHECK(!use_decrypting_decoder_);
use_decrypting_decoder_ = true;
}
void AddMockDecoder(int decoder_id, DecoderCapability capability) {
auto args = MockDecoderArgs::Create(decoder_id, capability);
AddMockDecoder(std::move(args));
}
void AddMockPlatformDecoder(int decoder_id, DecoderCapability capability) {
auto args = MockDecoderArgs::Create(std::move(decoder_id), capability);
args.is_platform_decoder = true;
AddMockDecoder(std::move(args));
}
void AddMockDecoder(MockDecoderArgs args) {
// Actual decoders are created in CreateDecoders(), which may be called
// multiple times by the DecoderSelector.
mock_decoders_to_create_.push_back(std::move(args));
}
std::vector<std::unique_ptr<Decoder>> CreateDecoders() {
std::vector<std::unique_ptr<Decoder>> decoders;
#if !BUILDFLAG(IS_ANDROID)
if (use_decrypting_decoder_) {
decoders.push_back(
std::make_unique<typename TypeParam::DecryptingDecoder>(
task_environment_.GetMainThreadTaskRunner(), &media_log_));
}
#endif // !BUILDFLAG(IS_ANDROID)
for (const auto& args : mock_decoders_to_create_) {
std::unique_ptr<StrictMock<MockDecoder>> decoder =
std::make_unique<StrictMock<MockDecoder>>(args.is_platform_decoder,
args.supports_decryption,
args.decoder_id);
if (args.expect_not_initialized) {
TypeParam::ExpectNotInitialize(decoder.get());
} else {
TypeParam::ExpectInitialize(decoder.get(), args.capability);
}
decoders.push_back(std::move(decoder));
}
return decoders;
}
void CreateCdmContext(DecryptorCapability capability) {
DCHECK(!decoder_selector_);
cdm_context_ = std::make_unique<StrictMock<MockCdmContext>>();
EXPECT_CALL(*cdm_context_, RegisterEventCB(_)).Times(AnyNumber());
if (capability == kNoDecryptor) {
EXPECT_CALL(*cdm_context_, GetDecryptor())
.WillRepeatedly(Return(nullptr));
return;
}
decryptor_ = std::make_unique<NiceMock<MockDecryptor>>();
EXPECT_CALL(*cdm_context_, GetDecryptor())
.WillRepeatedly(Return(decryptor_.get()));
switch (TypeParam::kStreamType) {
case DemuxerStream::AUDIO:
EXPECT_CALL(*decryptor_, InitializeAudioDecoder(_, _))
.WillRepeatedly(
RunOnceCallbackRepeatedly<1>(capability == kDecryptAndDecode));
break;
case DemuxerStream::VIDEO:
EXPECT_CALL(*decryptor_, InitializeVideoDecoder(_, _))
.WillRepeatedly(
RunOnceCallbackRepeatedly<1>(capability == kDecryptAndDecode));
break;
default:
NOTREACHED();
}
}
void CreateDecoderSelector() {
decoder_selector_ = std::make_unique<Selector>(
task_environment_.GetMainThreadTaskRunner(),
base::BindRepeating(&Self::CreateDecoders, base::Unretained(this)),
&media_log_, /*enable_priority_based_selection=*/true);
decoder_selector_->Initialize(
traits_.get(), &demuxer_stream_, cdm_context_.get(),
base::BindRepeating(&Self::OnWaiting, base::Unretained(this)));
}
void UseClearDecoderConfig() {
TypeParam::UseNormalClearDecoderConfig(demuxer_stream_);
}
void UseEncryptedDecoderConfig() {
TypeParam::UseNormalEncryptedDecoderConfig(demuxer_stream_);
}
void SelectNextDecoder() {
if (is_selecting_) {
decoder_selector_->ResumeDecoderSelection(
base::BindOnce(&Self::OnDecoderSelectedThunk, base::Unretained(this)),
base::BindRepeating(&Self::OnOutput, base::Unretained(this)),
DecoderStatus::Codes::kFailed);
} else {
decoder_selector_->BeginDecoderSelection(
base::BindOnce(&Self::OnDecoderSelectedThunk, base::Unretained(this)),
base::BindRepeating(&Self::OnOutput, base::Unretained(this)));
}
is_selecting_ = true;
RunUntilIdle();
}
void FinalizeDecoderSelection() {
decoder_selector_->FinalizeDecoderSelection();
is_selecting_ = false;
}
void RunUntilIdle() { task_environment_.RunUntilIdle(); }
base::test::TaskEnvironment task_environment_;
NullMediaLog media_log_;
std::unique_ptr<StreamTraits> traits_;
StrictMock<MockDemuxerStream> demuxer_stream_;
std::unique_ptr<StrictMock<MockCdmContext>> cdm_context_;
std::unique_ptr<NiceMock<MockDecryptor>> decryptor_;
std::unique_ptr<Selector> decoder_selector_;
bool use_decrypting_decoder_ = false;
bool is_selecting_ = false;
std::vector<MockDecoderArgs> mock_decoders_to_create_;
};
using VideoDecoderSelectorTest =
DecoderSelectorTest<VideoDecoderSelectorTestParam>;
using DecoderSelectorTestParams =
::testing::Types<AudioDecoderSelectorTestParam,
VideoDecoderSelectorTestParam>;
TYPED_TEST_SUITE(DecoderSelectorTest, DecoderSelectorTestParams);
// Tests for clear streams. CDM will not be used for clear streams so
// DecryptorCapability doesn't really matter.
TYPED_TEST(DecoderSelectorTest, ClearStream_NoDecoders) {
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearStream_NoClearDecoder) {
this->AddDecryptingDecoder();
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearStream_OneClearDecoder) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearStream_InternalFallback) {
this->AddMockDecoder(kDecoder1, kAlwaysFail);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearStream_ExternalFallback) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearStream_FinalizeDecoderSelection) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
this->FinalizeDecoderSelection();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
}
// Tests the production predicate for `DecoderSelector<DemuxerStream::VIDEO>`
TEST_F(VideoDecoderSelectorTest, ClearStream_PrioritizeSoftwareDecoders) {
this->AddMockPlatformDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->AddMockPlatformDecoder(kDecoder3, kAlwaysSucceed);
this->AddMockDecoder(kDecoder4, kAlwaysSucceed);
// Create a clear config that will cause software decoders to be
// prioritized on any platform.
this->demuxer_stream_.set_video_decoder_config(
TestVideoConfig::Custom(gfx::Size(64, 64)));
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder4));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder3));
this->SelectNextDecoder();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
// Tests the production predicate for `DecoderSelector<DemuxerStream::VIDEO>`
TEST_F(VideoDecoderSelectorTest, ClearStream_PrioritizePlatformDecoders) {
this->AddMockPlatformDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->AddMockPlatformDecoder(kDecoder3, kAlwaysSucceed);
this->AddMockDecoder(kDecoder4, kAlwaysSucceed);
// Create a clear config that will cause hardware decoders to be prioritized
// on any platform.
this->demuxer_stream_.set_video_decoder_config(
TestVideoConfig::Custom(gfx::Size(4096, 4096)));
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder3));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder4));
this->SelectNextDecoder();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
// Tests for encrypted streams.
// Tests that non-decrypting decoders are filtered out by DecoderSelector
// before being initialized.
TYPED_TEST(DecoderSelectorTest,
EncryptedStream_NoDecryptor_DecodersNotInitialized) {
using MockDecoderArgs =
typename DecoderSelectorTest<TypeParam>::MockDecoderArgs;
auto args = MockDecoderArgs::Create(kDecoder1, kClearOnly);
args.expect_not_initialized = true;
this->AddMockDecoder(std::move(args));
args = MockDecoderArgs::Create(kDecoder2, kClearOnly);
args.expect_not_initialized = true;
this->AddMockDecoder(std::move(args));
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_NoDecryptor_OneClearDecoder) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->CreateCdmContext(kNoDecryptor);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_NoDecryptor_InternalFallback) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kEncryptedOnly);
this->CreateCdmContext(kNoDecryptor);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_NoDecryptor_ExternalFallback) {
this->AddMockDecoder(kDecoder1, kEncryptedOnly);
this->AddMockDecoder(kDecoder2, kEncryptedOnly);
this->CreateCdmContext(kNoDecryptor);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest,
EncryptedStream_NoDecryptor_FinalizeDecoderSelection) {
this->AddMockDecoder(kDecoder1, kEncryptedOnly);
this->AddMockDecoder(kDecoder2, kEncryptedOnly);
this->CreateCdmContext(kNoDecryptor);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
this->FinalizeDecoderSelection();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_DecryptOnly_NoDecoder) {
this->CreateCdmContext(kDecryptOnly);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_DecryptOnly_OneClearDecoder) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->CreateCdmContext(kDecryptOnly);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_DecryptOnly_InternalFallback) {
this->AddMockDecoder(kDecoder1, kAlwaysFail);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->CreateCdmContext(kDecryptOnly);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest,
EncryptedStream_DecryptOnly_FinalizeDecoderSelection) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->CreateCdmContext(kDecryptOnly);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
std::unique_ptr<DecryptingDemuxerStream> saved_dds;
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()))
.WillOnce([&](std::unique_ptr<DecryptingDemuxerStream> dds) {
saved_dds = std::move(dds);
});
this->SelectNextDecoder();
this->FinalizeDecoderSelection();
// DDS is reused.
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, EncryptedStream_DecryptAndDecode) {
this->AddDecryptingDecoder();
this->AddMockDecoder(kDecoder1, kClearOnly);
this->CreateCdmContext(kDecryptAndDecode);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
#if !BUILDFLAG(IS_ANDROID)
// A DecryptingVideoDecoder will be created and selected. The clear decoder
// should not be touched at all. No DecryptingDemuxerStream should be
// created.
EXPECT_CALL(*this, OnDecoderSelected(TestFixture::DecoderType::kDecrypting));
#else
// A DecryptingDemuxerStream will be created. The clear decoder will be
// initialized and returned.
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()));
#endif // !BUILDFLAG(IS_ANDROID)
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest,
EncryptedStream_DecryptAndDecode_ExternalFallback) {
this->AddDecryptingDecoder();
this->AddMockDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->CreateCdmContext(kDecryptAndDecode);
this->UseEncryptedDecoderConfig();
this->CreateDecoderSelector();
#if !BUILDFLAG(IS_ANDROID)
// DecryptingDecoder is selected immediately.
EXPECT_CALL(*this, OnDecoderSelected(TestFixture::DecoderType::kDecrypting));
this->SelectNextDecoder();
#endif // !BUILDFLAG(IS_ANDROID)
// On fallback, a DecryptingDemuxerStream will be created.
std::unique_ptr<DecryptingDemuxerStream> saved_dds;
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()))
.WillOnce([&](std::unique_ptr<DecryptingDemuxerStream> dds) {
saved_dds = std::move(dds);
});
this->SelectNextDecoder();
// The DecryptingDemuxerStream should be reused.
EXPECT_CALL(*this, OnDecoderSelected(kDecoder2));
this->SelectNextDecoder();
}
TYPED_TEST(DecoderSelectorTest, ClearToEncryptedStream_DecryptOnly) {
this->AddMockDecoder(kDecoder1, kClearOnly);
this->CreateCdmContext(kDecryptOnly);
this->UseClearDecoderConfig();
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
this->SelectNextDecoder();
this->FinalizeDecoderSelection();
this->UseEncryptedDecoderConfig();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder1));
EXPECT_CALL(*this, OnDemuxerStreamSelected(NotNull()));
this->SelectNextDecoder();
}
// Tests the production predicate for `DecoderSelector<DemuxerStream::VIDEO>`
TEST_F(VideoDecoderSelectorTest, EncryptedStream_PrioritizeSoftwareDecoders) {
this->AddMockPlatformDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->AddMockPlatformDecoder(kDecoder3, kAlwaysSucceed);
this->AddMockDecoder(kDecoder4, kAlwaysSucceed);
// Create an encrypted config that will cause software decoders to be
// prioritized on any platform.
this->demuxer_stream_.set_video_decoder_config(
TestVideoConfig::CustomEncrypted(gfx::Size(64, 64)));
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder4));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder3));
this->SelectNextDecoder();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
// Tests the production predicate for `DecoderSelector<DemuxerStream::VIDEO>`
TEST_F(VideoDecoderSelectorTest, EncryptedStream_PrioritizePlatformDecoders) {
this->AddMockPlatformDecoder(kDecoder1, kClearOnly);
this->AddMockDecoder(kDecoder2, kClearOnly);
this->AddMockPlatformDecoder(kDecoder3, kAlwaysSucceed);
this->AddMockDecoder(kDecoder4, kAlwaysSucceed);
// Create an encrypted config that will cause hardware decoders to be
// prioritized on any platform.
this->demuxer_stream_.set_video_decoder_config(
TestVideoConfig::CustomEncrypted(gfx::Size(4096, 4096)));
this->CreateDecoderSelector();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder3));
this->SelectNextDecoder();
EXPECT_CALL(*this, OnDecoderSelected(kDecoder4));
this->SelectNextDecoder();
EXPECT_CALL(*this, NoDecoderSelected());
this->SelectNextDecoder();
}
} // namespace media