Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(929)

Side by Side Diff: webrtc/pc/mediasession_unittest.cc

Issue 1956343002: Initial asymmetric codec support in MediaSessionDescription (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added RtpTranscieverDirection; removed old set_audio_codecs. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« webrtc/pc/mediasession.cc ('K') | « webrtc/pc/mediasession.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 21 matching lines...) Expand all
32 #else 32 #else
33 #define ASSERT_CRYPTO(cd, s, cs) \ 33 #define ASSERT_CRYPTO(cd, s, cs) \
34 ASSERT_EQ(cricket::CT_NONE, cd->crypto_required()); \ 34 ASSERT_EQ(cricket::CT_NONE, cd->crypto_required()); \
35 ASSERT_EQ(0U, cd->cryptos().size()); 35 ASSERT_EQ(0U, cd->cryptos().size());
36 #endif 36 #endif
37 37
38 typedef std::vector<cricket::Candidate> Candidates; 38 typedef std::vector<cricket::Candidate> Candidates;
39 39
40 using cricket::MediaContentDescription; 40 using cricket::MediaContentDescription;
41 using cricket::MediaSessionDescriptionFactory; 41 using cricket::MediaSessionDescriptionFactory;
42 using cricket::MediaContentDirection;
42 using cricket::MediaSessionOptions; 43 using cricket::MediaSessionOptions;
43 using cricket::MediaType; 44 using cricket::MediaType;
44 using cricket::SessionDescription; 45 using cricket::SessionDescription;
45 using cricket::SsrcGroup; 46 using cricket::SsrcGroup;
46 using cricket::StreamParams; 47 using cricket::StreamParams;
47 using cricket::StreamParamsVec; 48 using cricket::StreamParamsVec;
48 using cricket::TransportDescription; 49 using cricket::TransportDescription;
49 using cricket::TransportDescriptionFactory; 50 using cricket::TransportDescriptionFactory;
50 using cricket::TransportInfo; 51 using cricket::TransportInfo;
51 using cricket::ContentInfo; 52 using cricket::ContentInfo;
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 codec_names.push_back(codec.name); 205 codec_names.push_back(codec.name);
205 } 206 }
206 return codec_names; 207 return codec_names;
207 } 208 }
208 209
209 class MediaSessionDescriptionFactoryTest : public testing::Test { 210 class MediaSessionDescriptionFactoryTest : public testing::Test {
210 public: 211 public:
211 MediaSessionDescriptionFactoryTest() 212 MediaSessionDescriptionFactoryTest()
212 : f1_(&tdf1_), 213 : f1_(&tdf1_),
213 f2_(&tdf2_) { 214 f2_(&tdf2_) {
214 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1)); 215 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1),
216 MAKE_VECTOR(kAudioCodecs1));
215 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); 217 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1));
216 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); 218 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1));
217 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2)); 219 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2),
220 MAKE_VECTOR(kAudioCodecs2));
218 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); 221 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2));
219 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); 222 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2));
220 tdf1_.set_certificate(rtc::RTCCertificate::Create( 223 tdf1_.set_certificate(rtc::RTCCertificate::Create(
221 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); 224 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1"))));
222 tdf2_.set_certificate(rtc::RTCCertificate::Create( 225 tdf2_.set_certificate(rtc::RTCCertificate::Create(
223 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); 226 std::unique_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2"))));
224 } 227 }
225 228
226 // Create a video StreamParamsVec object with: 229 // Create a video StreamParamsVec object with:
227 // - one video stream with 3 simulcast streams and FEC, 230 // - one video stream with 3 simulcast streams and FEC,
(...skipping 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after
2388 ASSERT_TRUE(video_content != nullptr); 2391 ASSERT_TRUE(video_content != nullptr);
2389 ASSERT_TRUE(data_content != nullptr); 2392 ASSERT_TRUE(data_content != nullptr);
2390 EXPECT_EQ("audio_modified", audio_content->name); 2393 EXPECT_EQ("audio_modified", audio_content->name);
2391 EXPECT_EQ("video_modified", video_content->name); 2394 EXPECT_EQ("video_modified", video_content->name);
2392 EXPECT_EQ("data_modified", data_content->name); 2395 EXPECT_EQ("data_modified", data_content->name);
2393 } 2396 }
2394 2397
2395 class MediaProtocolTest : public ::testing::TestWithParam<const char*> { 2398 class MediaProtocolTest : public ::testing::TestWithParam<const char*> {
2396 public: 2399 public:
2397 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) { 2400 MediaProtocolTest() : f1_(&tdf1_), f2_(&tdf2_) {
2398 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1)); 2401 f1_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs1),
2402 MAKE_VECTOR(kAudioCodecs1));
2399 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1)); 2403 f1_.set_video_codecs(MAKE_VECTOR(kVideoCodecs1));
2400 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1)); 2404 f1_.set_data_codecs(MAKE_VECTOR(kDataCodecs1));
2401 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2)); 2405 f2_.set_audio_codecs(MAKE_VECTOR(kAudioCodecs2),
2406 MAKE_VECTOR(kAudioCodecs2));
2402 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2)); 2407 f2_.set_video_codecs(MAKE_VECTOR(kVideoCodecs2));
2403 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2)); 2408 f2_.set_data_codecs(MAKE_VECTOR(kDataCodecs2));
2404 f1_.set_secure(SEC_ENABLED); 2409 f1_.set_secure(SEC_ENABLED);
2405 f2_.set_secure(SEC_ENABLED); 2410 f2_.set_secure(SEC_ENABLED);
2406 tdf1_.set_certificate(rtc::RTCCertificate::Create( 2411 tdf1_.set_certificate(rtc::RTCCertificate::Create(
2407 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1")))); 2412 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id1"))));
2408 tdf2_.set_certificate(rtc::RTCCertificate::Create( 2413 tdf2_.set_certificate(rtc::RTCCertificate::Create(
2409 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2")))); 2414 rtc::scoped_ptr<rtc::SSLIdentity>(new rtc::FakeSSLIdentity("id2"))));
2410 tdf1_.set_secure(SEC_ENABLED); 2415 tdf1_.set_secure(SEC_ENABLED);
2411 tdf2_.set_secure(SEC_ENABLED); 2416 tdf2_.set_secure(SEC_ENABLED);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2443 EXPECT_EQ(GetParam(), acd->protocol()); 2448 EXPECT_EQ(GetParam(), acd->protocol());
2444 EXPECT_EQ(GetParam(), vcd->protocol()); 2449 EXPECT_EQ(GetParam(), vcd->protocol());
2445 } 2450 }
2446 2451
2447 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest, 2452 INSTANTIATE_TEST_CASE_P(MediaProtocolPatternTest,
2448 MediaProtocolTest, 2453 MediaProtocolTest,
2449 ::testing::ValuesIn(kMediaProtocols)); 2454 ::testing::ValuesIn(kMediaProtocols));
2450 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest, 2455 INSTANTIATE_TEST_CASE_P(MediaProtocolDtlsPatternTest,
2451 MediaProtocolTest, 2456 MediaProtocolTest,
2452 ::testing::ValuesIn(kMediaProtocolsDtls)); 2457 ::testing::ValuesIn(kMediaProtocolsDtls));
2458
2459 TEST_F(MediaSessionDescriptionFactoryTest, TestSetAudioCodecs) {
2460 TransportDescriptionFactory tdf;
2461 MediaSessionDescriptionFactory sf(&tdf);
2462 std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1);
2463 std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2);
2464
2465 // The merged list of codecs should contain any send codecs that are also
2466 // nominally in the recieve codecs list. Payload types should be picked from
2467 // the send codecs and a number-of-channels of 0 and 1 should be equivalent
2468 // (set to 1). This equals what happens when the send codecs are used in an
2469 // offer and the receive codecs are used in the following answer.
2470 const std::vector<AudioCodec> sendrecv_codecs =
2471 MAKE_VECTOR(kAudioCodecsAnswer);
2472 const std::vector<AudioCodec> no_codecs;
2473
2474 RTC_CHECK_EQ(send_codecs[1].name, "iLBC")
2475 << "Please don't change shared test data!";
2476 RTC_CHECK_EQ(recv_codecs[2].name, "iLBC")
2477 << "Please don't change shared test data!";
2478 // Alter iLBC send codec to have zero channels, to test that that is handled
2479 // properly.
2480 send_codecs[1].channels = 0;
2481
2482 // Alther iLBC receive codec to be lowercase, to test that case conversions
2483 // are handled properly.
2484 recv_codecs[2].name = "ilbc";
2485
2486 // Test proper merge
2487 sf.set_audio_codecs(send_codecs, recv_codecs);
2488 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs);
2489 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs);
2490 EXPECT_TRUE(sf.audio_codecs() == sendrecv_codecs);
2491
2492 // Test empty send codecs list
2493 sf.set_audio_codecs(no_codecs, recv_codecs);
2494 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs);
2495 EXPECT_TRUE(sf.audio_recv_codecs() == recv_codecs);
2496 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2497
2498 // Test empty recv codecs list
2499 sf.set_audio_codecs(send_codecs, no_codecs);
2500 EXPECT_TRUE(sf.audio_send_codecs() == send_codecs);
2501 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs);
2502 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2503
2504 // Test all empty codec lists
2505 sf.set_audio_codecs(no_codecs, no_codecs);
2506 EXPECT_TRUE(sf.audio_send_codecs() == no_codecs);
2507 EXPECT_TRUE(sf.audio_recv_codecs() == no_codecs);
2508 EXPECT_TRUE(sf.audio_codecs() == no_codecs);
2509 }
2510
2511 namespace {
2512 void TestAudioCodecsOffer(MediaContentDirection direction,
2513 bool add_legacy_stream) {
2514 TransportDescriptionFactory tdf;
2515 MediaSessionDescriptionFactory sf(&tdf);
2516 const std::vector<AudioCodec> send_codecs = MAKE_VECTOR(kAudioCodecs1);
2517 const std::vector<AudioCodec> recv_codecs = MAKE_VECTOR(kAudioCodecs2);
2518 const std::vector<AudioCodec> sendrecv_codecs =
2519 MAKE_VECTOR(kAudioCodecsAnswer);
2520 sf.set_audio_codecs(send_codecs, recv_codecs);
2521 sf.set_add_legacy_streams(add_legacy_stream);
2522
2523 MediaSessionOptions opts;
2524 opts.recv_audio = (direction == cricket::MD_RECVONLY ||
2525 direction == cricket::MD_SENDRECV);
2526 opts.recv_video = false;
2527 if (direction == cricket::MD_SENDONLY || direction == cricket::MD_SENDRECV)
2528 opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2529
2530 std::unique_ptr<SessionDescription> offer(sf.CreateOffer(opts, NULL));
2531 ASSERT_TRUE(offer.get() != NULL);
2532 const ContentInfo* ac = offer->GetContentByName("audio");
2533
2534 // If the factory didn't add any audio content to the offer, we cannot check
2535 // that the codecs put in are right. This happens when we neither want to send
2536 // nor receive audio. The checks are still in place if at some point we'd
2537 // instead create an inactive stream.
2538 if (ac) {
2539 AudioContentDescription* acd =
2540 static_cast<AudioContentDescription*>(ac->description);
2541 // sendrecv and inactive should both present lists as if the channel was to
2542 // be used for sending and receiving. Inactive essentially means it might
2543 // eventually be used anything, but we don't know more at this moment.
2544 if (acd->direction() == cricket::MD_SENDONLY) {
2545 EXPECT_TRUE(acd->codecs() == send_codecs);
2546 } else if (acd->direction() == cricket::MD_RECVONLY) {
2547 EXPECT_TRUE(acd->codecs() == recv_codecs);
2548 } else {
2549 EXPECT_TRUE(acd->codecs() == sendrecv_codecs);
2550 }
2551 }
2552 }
2553
2554 static const AudioCodec kOfferAnswerCodecs[] = {
2555 AudioCodec(0, "codec0", 16000, -1, 1),
2556 AudioCodec(1, "codec1", 8000, 13300, 1),
2557 AudioCodec(2, "codec2", 8000, 64000, 1),
2558 AudioCodec(3, "codec3", 8000, 64000, 1),
2559 AudioCodec(4, "codec4", 8000, 0, 2),
2560 AudioCodec(5, "codec5", 32000, 0, 1),
2561 AudioCodec(6, "codec6", 48000, 0, 1)
2562 };
2563
2564 // Codecs used by offerer in the AudioCodecsAnswerTest
2565 static const int kOfferSendCodecs[] = { 0, 1, 3, 5, 6 };
2566 static const int kOfferRecvCodecs[] = { 1, 2, 3, 4, 6 };
2567 // Codecs used in the answerer in the AudioCodecsAnswerTest. The order is
2568 // jumbled to catch the answer not following the order in the offer.
2569 static const int kAnswerSendCodecs[] = { 6, 5, 2, 3, 4 };
2570 static const int kAnswerRecvCodecs[] = { 6, 5, 4, 1, 0 };
2571 // The resulting sets of codecs in the answer in the AudioCodecsAnswerTest
2572 static const int kResultSend_RecvCodecs[] = { 0, 1, 5, 6 };
2573 static const int kResultSend_SendrecvCodecs[] = { 5, 6 };
2574 static const int kResultRecv_SendCodecs[] = { 2, 3, 4, 6 };
2575 static const int kResultRecv_SendrecvCodecs[] = { 4, 6 };
2576 static const int kResultSendrecv_SendCodecs[] = { 3, 6 };
2577 static const int kResultSendrecv_RecvCodecs[] = { 1, 6 };
2578 static const int kResultSendrecv_SendrecvCodecs[] = { 6 };
2579
2580 template <typename T, int IDXS>
2581 std::vector<T> VectorFromIndices(const T* array, const int (&indices)[IDXS]) {
2582 std::vector<T> out;
2583 out.reserve(IDXS);
2584 for (int idx : indices)
2585 out.push_back(array[idx]);
2586
2587 return out;
2588 }
2589
2590 void TestAudioCodecsAnswer(MediaContentDirection offer_direction,
2591 MediaContentDirection answer_direction,
2592 bool add_legacy_stream) {
2593 TransportDescriptionFactory offer_tdf;
2594 TransportDescriptionFactory answer_tdf;
2595 MediaSessionDescriptionFactory offer_factory(&offer_tdf);
2596 MediaSessionDescriptionFactory answer_factory(&answer_tdf);
2597 offer_factory.set_audio_codecs(
2598 VectorFromIndices(kOfferAnswerCodecs, kOfferSendCodecs),
2599 VectorFromIndices(kOfferAnswerCodecs, kOfferRecvCodecs));
2600 answer_factory.set_audio_codecs(
2601 VectorFromIndices(kOfferAnswerCodecs, kAnswerSendCodecs),
2602 VectorFromIndices(kOfferAnswerCodecs, kAnswerRecvCodecs));
2603
2604 // Never add a legacy stream to offer - we want to control the offer
2605 // parameters exactly.
2606 offer_factory.set_add_legacy_streams(false);
2607 answer_factory.set_add_legacy_streams(add_legacy_stream);
2608 MediaSessionOptions offer_opts;
2609 offer_opts.recv_audio = (offer_direction == cricket::MD_RECVONLY ||
2610 offer_direction == cricket::MD_SENDRECV);
2611 offer_opts.recv_video = false;
2612 if (offer_direction == cricket::MD_SENDONLY ||
2613 offer_direction == cricket::MD_SENDRECV) {
2614 offer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2615 }
2616
2617 std::unique_ptr<SessionDescription> offer(
2618 offer_factory.CreateOffer(offer_opts, NULL));
2619 ASSERT_TRUE(offer.get() != NULL);
2620
2621 MediaSessionOptions answer_opts;
2622 answer_opts.recv_audio = (answer_direction == cricket::MD_RECVONLY ||
2623 answer_direction == cricket::MD_SENDRECV);
2624 answer_opts.recv_video = false;
2625 if (answer_direction == cricket::MD_SENDONLY ||
2626 answer_direction == cricket::MD_SENDRECV) {
2627 answer_opts.AddSendStream(MEDIA_TYPE_AUDIO, kAudioTrack1, kMediaStream1);
2628 }
2629 std::unique_ptr<SessionDescription> answer(
2630 answer_factory.CreateAnswer(offer.get(), answer_opts, NULL));
2631 const ContentInfo* ac = answer->GetContentByName("audio");
2632
2633 // If the factory didn't add any audio content to the answer, we cannot check
2634 // that the codecs put in are right. This happens when we neither want to send
2635 // nor receive audio. The checks are still in place if at some point we'd
2636 // instead create an inactive stream.
2637 if (ac) {
2638 const AudioContentDescription* acd =
2639 static_cast<const AudioContentDescription*>(ac->description);
2640 EXPECT_EQ(MEDIA_TYPE_AUDIO, acd->type());
2641
2642
2643 std::vector<AudioCodec> target_codecs;
2644 // For offers with sendrecv or inactive, we should never reply with more
2645 // codecs than offered, with these codec sets.
2646 switch (offer_direction) {
2647 case cricket::MD_INACTIVE:
2648 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2649 kResultSendrecv_SendrecvCodecs);
2650 break;
2651 case cricket::MD_SENDONLY:
2652 if (acd->direction() == cricket::MD_RECVONLY) {
2653 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2654 kResultSend_RecvCodecs);
2655 } else {
2656 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2657 kResultSend_SendrecvCodecs);
2658 }
2659 break;
2660 case cricket::MD_RECVONLY:
2661 if (acd->direction() == cricket::MD_SENDONLY) {
2662 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2663 kResultRecv_SendCodecs);
2664 } else {
2665 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2666 kResultRecv_SendrecvCodecs);
2667 }
2668 break;
2669 case cricket::MD_SENDRECV:
2670 if (acd->direction() == cricket::MD_SENDONLY) {
2671 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2672 kResultSendrecv_SendCodecs);
2673 } else if (acd->direction() == cricket::MD_RECVONLY) {
2674 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2675 kResultSendrecv_RecvCodecs);
2676 } else {
2677 target_codecs = VectorFromIndices(kOfferAnswerCodecs,
2678 kResultSendrecv_SendrecvCodecs);
2679 }
2680 break;
2681 }
2682
2683 auto format_codecs = [] (const std::vector<AudioCodec>& codecs) {
2684 std::stringstream os;
2685 bool first = true;
2686 os << "{";
2687 for (const auto& c : codecs) {
2688 os << (first ? " " : ", ") << c.id;
2689 first = false;
2690 }
2691 os << " }";
2692 return os.str();
2693 };
2694
2695 EXPECT_TRUE(acd->codecs() == target_codecs)
2696 << "Expected: " << format_codecs(target_codecs)
2697 << ", got: " << format_codecs(acd->codecs())
2698 << "; Offered: " << MediaContentDirectionToString(offer_direction)
2699 << ", answerer wants: "
2700 << MediaContentDirectionToString(answer_direction)
2701 << "; got: " << MediaContentDirectionToString(acd->direction());
2702 } else {
2703 EXPECT_EQ(offer_direction, cricket::MD_INACTIVE)
2704 << "Only inactive offers are allowed to not generate any audio content";
2705 }
2706 }
2707 }
2708
2709 class AudioCodecsOfferTest
2710 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection,
2711 bool>> {
2712 };
2713
2714 TEST_P(AudioCodecsOfferTest, TestCodecsInOffer) {
2715 TestAudioCodecsOffer(std::tr1::get<0>(GetParam()),
2716 std::tr1::get<1>(GetParam()));
2717 }
2718
2719 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest,
2720 AudioCodecsOfferTest,
2721 ::testing::Combine(
2722 ::testing::Values(cricket::MD_SENDONLY,
2723 cricket::MD_RECVONLY,
2724 cricket::MD_SENDRECV,
2725 cricket::MD_INACTIVE),
2726 ::testing::Bool()));
2727
2728 class AudioCodecsAnswerTest
2729 : public ::testing::TestWithParam<std::tr1::tuple<MediaContentDirection,
2730 MediaContentDirection,
2731 bool>> {
2732 };
2733
2734 TEST_P(AudioCodecsAnswerTest, TestCodecsInAnswer) {
2735 TestAudioCodecsAnswer(std::tr1::get<0>(GetParam()),
2736 std::tr1::get<1>(GetParam()),
2737 std::tr1::get<2>(GetParam()));
2738 }
2739
2740 INSTANTIATE_TEST_CASE_P(MediaSessionDescriptionFactoryTest,
2741 AudioCodecsAnswerTest,
2742 ::testing::Combine(
2743 ::testing::Values(cricket::MD_SENDONLY,
2744 cricket::MD_RECVONLY,
2745 cricket::MD_SENDRECV,
2746 cricket::MD_INACTIVE),
2747 ::testing::Values(cricket::MD_SENDONLY,
2748 cricket::MD_RECVONLY,
2749 cricket::MD_SENDRECV,
2750 cricket::MD_INACTIVE),
2751 ::testing::Bool()));
OLDNEW
« webrtc/pc/mediasession.cc ('K') | « webrtc/pc/mediasession.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698