summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/api/video_codecs/test/builtin_video_encoder_factory_unittest.cc
blob: 84fd594b4cd9da12184f122757e195a5701068bb (plain)
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
/*
 *  Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "api/video_codecs/builtin_video_encoder_factory.h"

#include <memory>
#include <string>
#include <vector>

#include "api/video_codecs/sdp_video_format.h"
#include "test/gtest.h"

namespace webrtc {

TEST(BuiltinVideoEncoderFactoryTest, AnnouncesVp9AccordingToBuildFlags) {
  std::unique_ptr<VideoEncoderFactory> factory =
      CreateBuiltinVideoEncoderFactory();
  bool claims_vp9_support = false;
  for (const SdpVideoFormat& format : factory->GetSupportedFormats()) {
    if (format.name == "VP9") {
      claims_vp9_support = true;
      break;
    }
  }
#if defined(RTC_ENABLE_VP9)
  EXPECT_TRUE(claims_vp9_support);
#else
  EXPECT_FALSE(claims_vp9_support);
#endif  // defined(RTC_ENABLE_VP9)
}

}  // namespace webrtc