In the SoftwareVideoCodecFactories, don't try to create VP9 encoder or decoder if WebRTC was built without support for it. Bug: None Change-Id: I09b87fdcf798c763310af4998dbea8011843010d Reviewed-on: https://webrtc-review.googlesource.com/22924 Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Commit-Queue: Anders Carlsson <andersc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20672}
22 lines
638 B
Java
22 lines
638 B
Java
/*
|
|
* Copyright (c) 2017 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.
|
|
*/
|
|
|
|
package org.webrtc;
|
|
|
|
class VP9Encoder extends WrappedNativeVideoEncoder {
|
|
VP9Encoder() {
|
|
super(createNativeEncoder());
|
|
}
|
|
|
|
static native boolean isSupported();
|
|
|
|
private static native long createNativeEncoder();
|
|
}
|