This reverts commit 11dfff0878c949f2e19d95a0ddc209cdad94b3b4. Reason for revert: Downstream import failure. Original change's description: > Inform VideoEncoder of negotiated capabilities > > After this CL lands, an announcement will be made to > discuss-webrtc about the deprecation of one version > of InitEncode(). > > Bug: webrtc:10720 > Change-Id: Ib992af0272bbb16ae16ef7e69491f365702d179e > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140884 > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> > Reviewed-by: Erik Språng <sprang@webrtc.org> > Commit-Queue: Elad Alon <eladalon@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#28224} TBR=sakal@webrtc.org,kwiberg@webrtc.org,eladalon@webrtc.org,kthelgason@webrtc.org,sprang@webrtc.org Change-Id: I7f833055c67f1f879b01dd8c156ba7b8840e8747 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:10720 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/141411 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28225}
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2018 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.
|
|
*/
|
|
|
|
#ifndef API_TEST_MOCK_VIDEO_ENCODER_H_
|
|
#define API_TEST_MOCK_VIDEO_ENCODER_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "api/video_codecs/video_encoder.h"
|
|
#include "test/gmock.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class MockEncodedImageCallback : public EncodedImageCallback {
|
|
public:
|
|
MockEncodedImageCallback();
|
|
~MockEncodedImageCallback();
|
|
MOCK_METHOD3(OnEncodedImage,
|
|
Result(const EncodedImage& encodedImage,
|
|
const CodecSpecificInfo* codecSpecificInfo,
|
|
const RTPFragmentationHeader* fragmentation));
|
|
};
|
|
|
|
class MockVideoEncoder : public VideoEncoder {
|
|
public:
|
|
MockVideoEncoder();
|
|
~MockVideoEncoder();
|
|
MOCK_CONST_METHOD2(Version, int32_t(int8_t* version, int32_t length));
|
|
MOCK_METHOD3(InitEncode,
|
|
int32_t(const VideoCodec* codecSettings,
|
|
int32_t numberOfCores,
|
|
size_t maxPayloadSize));
|
|
MOCK_METHOD2(Encode,
|
|
int32_t(const VideoFrame& inputImage,
|
|
const std::vector<VideoFrameType>* frame_types));
|
|
MOCK_METHOD1(RegisterEncodeCompleteCallback,
|
|
int32_t(EncodedImageCallback* callback));
|
|
MOCK_METHOD0(Release, int32_t());
|
|
MOCK_METHOD0(Reset, int32_t());
|
|
MOCK_METHOD1(SetRates, void(const RateControlParameters& parameters));
|
|
MOCK_CONST_METHOD0(GetEncoderInfo, EncoderInfo(void));
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_TEST_MOCK_VIDEO_ENCODER_H_
|