blob: 6969b75eaf4964efff58aab86d5cfe0c5d98017b [file]
/*
* 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;
import org.jni_zero.NativeMethods;
public class LibvpxVp8Decoder extends WrappedNativeVideoDecoder {
@Override
public long createNative(long webrtcEnvRef) {
return LibvpxVp8DecoderJni.get().createDecoder(webrtcEnvRef);
}
@NativeMethods
interface Natives {
long createDecoder(long webrtcEnvRef);
}
}