/*
* Copyright ( c ) 2020 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_FRAME_TRANSFORMER_H_
#define API_TEST_MOCK_FRAME_TRANSFORMER_H_
#include <cstdint>
#include <memory>
#include "api/frame_transformer_interface.h"
#include "api/scoped_refptr.h"
#include "test/gmock.h"
namespace webrtc {
class MockFrameTransformer : public FrameTransformerInterface {
public :
MOCK_METHOD(void ,
Transform,
(std::unique_ptr<TransformableFrameInterface>),
(override));
MOCK_METHOD(void ,
RegisterTransformedFrameCallback,
(scoped_refptr<TransformedFrameCallback>),
(override));
MOCK_METHOD(void ,
RegisterTransformedFrameSinkCallback,
(scoped_refptr<TransformedFrameCallback>, uint32_t),
(override));
MOCK_METHOD(void , UnregisterTransformedFrameCallback, (), (override));
MOCK_METHOD(void ,
UnregisterTransformedFrameSinkCallback,
(uint32_t),
(override));
};
} // namespace webrtc
#endif // API_TEST_MOCK_FRAME_TRANSFORMER_H_
Messung V0.5 in Prozent C=87 H=100 G=93
¤ Dauer der Verarbeitung: 0.3 Sekunden
¤
*© Formatika GbR, Deutschland