The SetChannelParameters function was used when WebRTC supported decoding with errors, which we no longer do. This cleanup CL is related to the work tracked by 9946. Bug: webrtc:9946 Change-Id: Id2d5ed23031388f890c42651bfbe5f79eda701e5 Reviewed-on: https://webrtc-review.googlesource.com/c/108861 Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25505}
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
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;
|
|
|
|
/**
|
|
* Wraps a native webrtc::VideoEncoder.
|
|
*/
|
|
abstract class WrappedNativeVideoEncoder implements VideoEncoder {
|
|
@Override public abstract long createNativeVideoEncoder();
|
|
@Override public abstract boolean isHardwareEncoder();
|
|
|
|
@Override
|
|
public VideoCodecStatus initEncode(Settings settings, Callback encodeCallback) {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override
|
|
public VideoCodecStatus release() {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override
|
|
public VideoCodecStatus encode(VideoFrame frame, EncodeInfo info) {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override
|
|
public VideoCodecStatus setRateAllocation(BitrateAllocation allocation, int framerate) {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override
|
|
public ScalingSettings getScalingSettings() {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override
|
|
public String getImplementationName() {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
}
|