OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 uint32_t frameRate)); | 50 uint32_t frameRate)); |
51 MOCK_METHOD1(SetPeriodicKeyFrames, int32_t(bool enable)); | 51 MOCK_METHOD1(SetPeriodicKeyFrames, int32_t(bool enable)); |
52 }; | 52 }; |
53 | 53 |
54 class MockDecodedImageCallback : public DecodedImageCallback { | 54 class MockDecodedImageCallback : public DecodedImageCallback { |
55 public: | 55 public: |
56 MOCK_METHOD1(Decoded, int32_t(VideoFrame& decodedImage)); // NOLINT | 56 MOCK_METHOD1(Decoded, int32_t(VideoFrame& decodedImage)); // NOLINT |
57 MOCK_METHOD2(Decoded, | 57 MOCK_METHOD2(Decoded, |
58 int32_t(VideoFrame& decodedImage, // NOLINT | 58 int32_t(VideoFrame& decodedImage, // NOLINT |
59 int64_t decode_time_ms)); | 59 int64_t decode_time_ms)); |
60 MOCK_METHOD3(Decoded, | |
61 void(VideoFrame& decodedImage, // NOLINT | |
62 rtc::Optional<int32_t> decode_time_ms, | |
63 rtc::Optional<uint8_t> qp)); | |
64 MOCK_METHOD1(ReceivedDecodedReferenceFrame, | 60 MOCK_METHOD1(ReceivedDecodedReferenceFrame, |
65 int32_t(const uint64_t pictureId)); | 61 int32_t(const uint64_t pictureId)); |
66 MOCK_METHOD1(ReceivedDecodedFrame, int32_t(const uint64_t pictureId)); | 62 MOCK_METHOD1(ReceivedDecodedFrame, int32_t(const uint64_t pictureId)); |
67 }; | 63 }; |
68 | 64 |
69 class MockVideoDecoder : public VideoDecoder { | 65 class MockVideoDecoder : public VideoDecoder { |
70 public: | 66 public: |
71 MOCK_METHOD2(InitDecode, | 67 MOCK_METHOD2(InitDecode, |
72 int32_t(const VideoCodec* codecSettings, int32_t numberOfCores)); | 68 int32_t(const VideoCodec* codecSettings, int32_t numberOfCores)); |
73 MOCK_METHOD5(Decode, | 69 MOCK_METHOD5(Decode, |
74 int32_t(const EncodedImage& inputImage, | 70 int32_t(const EncodedImage& inputImage, |
75 bool missingFrames, | 71 bool missingFrames, |
76 const RTPFragmentationHeader* fragmentation, | 72 const RTPFragmentationHeader* fragmentation, |
77 const CodecSpecificInfo* codecSpecificInfo, | 73 const CodecSpecificInfo* codecSpecificInfo, |
78 int64_t renderTimeMs)); | 74 int64_t renderTimeMs)); |
79 MOCK_METHOD1(RegisterDecodeCompleteCallback, | 75 MOCK_METHOD1(RegisterDecodeCompleteCallback, |
80 int32_t(DecodedImageCallback* callback)); | 76 int32_t(DecodedImageCallback* callback)); |
81 MOCK_METHOD0(Release, int32_t()); | 77 MOCK_METHOD0(Release, int32_t()); |
82 MOCK_METHOD0(Copy, VideoDecoder*()); | 78 MOCK_METHOD0(Copy, VideoDecoder*()); |
83 }; | 79 }; |
84 | 80 |
85 } // namespace webrtc | 81 } // namespace webrtc |
86 | 82 |
87 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_MOCK_MOCK_VIDEO_CODEC_INTERFACE_H
_ | 83 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_MOCK_MOCK_VIDEO_CODEC_INTERFACE_H
_ |
OLD | NEW |