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

Move MockVideoDecoder from modules/video_coding/include/mock/mock_video_codec_interface.h to api/test/mock_video_decoder.h The mock encoder has already moved: https://webrtc-review.googlesource.com/c/src/+/105620 Keeping the old header until downstream projects have been updated. Bug: webrtc:9722 Change-Id: I4bc849173a04813064212f17761876695ca3fed4 Reviewed-on: https://webrtc-review.googlesource.com/c/105900 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Per Kjellander <perkj@webrtc.org> Commit-Queue: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25170}
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_decoder.h"
|
|
|
|
namespace webrtc {
|
|
|
|
MockDecodedImageCallback::MockDecodedImageCallback() = default;
|
|
MockDecodedImageCallback::~MockDecodedImageCallback() = default;
|
|
MockVideoDecoder::MockVideoDecoder() = default;
|
|
MockVideoDecoder::~MockVideoDecoder() = default;
|
|
|
|
} // namespace webrtc
|