blob: baa04862c3c43f50e9cb11ec5821f0301603ef65 [file] [log] [blame]
Peter Boström12996152016-05-14 02:03:18 +02001/*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 *
10 */
11
12#if !defined(RTC_DISABLE_VP9)
13#error
14#endif // !defined(RTC_DISABLE_VP9)
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "modules/video_coding/codecs/vp9/include/vp9.h"
17#include "rtc_base/checks.h"
Peter Boström12996152016-05-14 02:03:18 +020018
19namespace webrtc {
20
21bool VP9Encoder::IsSupported() {
22 return false;
23}
24
Magnus Jedvert46a27652017-11-13 14:10:02 +010025std::unique_ptr<VP9Encoder> VP9Encoder::Create() {
Peter Boström12996152016-05-14 02:03:18 +020026 RTC_NOTREACHED();
27 return nullptr;
28}
29
30bool VP9Decoder::IsSupported() {
31 return false;
32}
33
Magnus Jedvert46a27652017-11-13 14:10:02 +010034std::unique_ptr<VP9Decoder> VP9Decoder::Create() {
Peter Boström12996152016-05-14 02:03:18 +020035 RTC_NOTREACHED();
36 return nullptr;
37}
38
39} // namespace webrtc