mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

This is part of the following reland cl: https://webrtc-review.googlesource.com/c/src/+/105600 Adding just the new location of MockVideoEncoder first and updating downstream projects before relanding the rest of that change. Bug: webrtc:9722 Change-Id: I44ba65a72cde1eea62ee4520d8e84472f4e41c0f Reviewed-on: https://webrtc-review.googlesource.com/c/105620 Reviewed-by: Per Kjellander <perkj@webrtc.org> Commit-Queue: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25144}
20 lines
726 B
C++
20 lines
726 B
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.
|
|
*/
|
|
|
|
#include "api/test/mock_video_encoder.h"
|
|
|
|
namespace webrtc {
|
|
|
|
MockEncodedImageCallback::MockEncodedImageCallback() = default;
|
|
MockEncodedImageCallback::~MockEncodedImageCallback() = default;
|
|
MockVideoEncoder::MockVideoEncoder() = default;
|
|
MockVideoEncoder::~MockVideoEncoder() = default;
|
|
|
|
} // namespace webrtc
|