| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 */ |
| 11 | 11 |
| 12 #if !defined(RTC_DISABLE_VP9) | 12 #if !defined(RTC_DISABLE_VP9) |
| 13 #error | 13 #error |
| 14 #endif // !defined(RTC_DISABLE_VP9) | 14 #endif // !defined(RTC_DISABLE_VP9) |
| 15 | 15 |
| 16 #include "webrtc/base/checks.h" | |
| 17 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 16 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
| 17 #include "webrtc/rtc_base/checks.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 | 20 |
| 21 bool VP9Encoder::IsSupported() { | 21 bool VP9Encoder::IsSupported() { |
| 22 return false; | 22 return false; |
| 23 } | 23 } |
| 24 | 24 |
| 25 VP9Encoder* VP9Encoder::Create() { | 25 VP9Encoder* VP9Encoder::Create() { |
| 26 RTC_NOTREACHED(); | 26 RTC_NOTREACHED(); |
| 27 return nullptr; | 27 return nullptr; |
| 28 } | 28 } |
| 29 | 29 |
| 30 bool VP9Decoder::IsSupported() { | 30 bool VP9Decoder::IsSupported() { |
| 31 return false; | 31 return false; |
| 32 } | 32 } |
| 33 | 33 |
| 34 VP9Decoder* VP9Decoder::Create() { | 34 VP9Decoder* VP9Decoder::Create() { |
| 35 RTC_NOTREACHED(); | 35 RTC_NOTREACHED(); |
| 36 return nullptr; | 36 return nullptr; |
| 37 } | 37 } |
| 38 | 38 |
| 39 } // namespace webrtc | 39 } // namespace webrtc |
| OLD | NEW |