Peter Boström | 1299615 | 2016-05-14 02:03:18 +0200 | [diff] [blame] | 1 | /* |
| 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 Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 16 | #include "modules/video_coding/codecs/vp9/include/vp9.h" |
| 17 | #include "rtc_base/checks.h" |
Peter Boström | 1299615 | 2016-05-14 02:03:18 +0200 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
| 20 | |
| 21 | bool VP9Encoder::IsSupported() { |
| 22 | return false; |
| 23 | } |
| 24 | |
Magnus Jedvert | 46a2765 | 2017-11-13 14:10:02 +0100 | [diff] [blame] | 25 | std::unique_ptr<VP9Encoder> VP9Encoder::Create() { |
Peter Boström | 1299615 | 2016-05-14 02:03:18 +0200 | [diff] [blame] | 26 | RTC_NOTREACHED(); |
| 27 | return nullptr; |
| 28 | } |
| 29 | |
| 30 | bool VP9Decoder::IsSupported() { |
| 31 | return false; |
| 32 | } |
| 33 | |
Magnus Jedvert | 46a2765 | 2017-11-13 14:10:02 +0100 | [diff] [blame] | 34 | std::unique_ptr<VP9Decoder> VP9Decoder::Create() { |
Peter Boström | 1299615 | 2016-05-14 02:03:18 +0200 | [diff] [blame] | 35 | RTC_NOTREACHED(); |
| 36 | return nullptr; |
| 37 | } |
| 38 | |
| 39 | } // namespace webrtc |