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 19 matching lines...) Expand all Loading... |
30 VideoRotation rotation; | 30 VideoRotation rotation; |
31 }; | 31 }; |
32 | 32 |
33 class VCMDecodedFrameCallback : public DecodedImageCallback { | 33 class VCMDecodedFrameCallback : public DecodedImageCallback { |
34 public: | 34 public: |
35 VCMDecodedFrameCallback(VCMTiming* timing, Clock* clock); | 35 VCMDecodedFrameCallback(VCMTiming* timing, Clock* clock); |
36 virtual ~VCMDecodedFrameCallback(); | 36 virtual ~VCMDecodedFrameCallback(); |
37 void SetUserReceiveCallback(VCMReceiveCallback* receiveCallback); | 37 void SetUserReceiveCallback(VCMReceiveCallback* receiveCallback); |
38 VCMReceiveCallback* UserReceiveCallback(); | 38 VCMReceiveCallback* UserReceiveCallback(); |
39 | 39 |
40 virtual int32_t Decoded(VideoFrame& decodedImage); // NOLINT | 40 int32_t Decoded(VideoFrame& decodedImage) override; |
41 virtual int32_t Decoded(VideoFrame& decodedImage, // NOLINT | 41 int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) override; |
42 int64_t decode_time_ms); | 42 void Decoded(VideoFrame& decodedImage, |
43 virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId); | 43 rtc::Optional<int32_t> decode_time_ms, |
44 virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId); | 44 rtc::Optional<uint8_t> qp) override; |
| 45 int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) override; |
| 46 int32_t ReceivedDecodedFrame(const uint64_t pictureId) override; |
45 | 47 |
46 uint64_t LastReceivedPictureID() const; | 48 uint64_t LastReceivedPictureID() const; |
47 void OnDecoderImplementationName(const char* implementation_name); | 49 void OnDecoderImplementationName(const char* implementation_name); |
48 | 50 |
49 void Map(uint32_t timestamp, VCMFrameInformation* frameInfo); | 51 void Map(uint32_t timestamp, VCMFrameInformation* frameInfo); |
50 int32_t Pop(uint32_t timestamp); | 52 int32_t Pop(uint32_t timestamp); |
51 | 53 |
52 private: | 54 private: |
53 // Protect |_receiveCallback| and |_timestampMap|. | 55 // Protect |_receiveCallback| and |_timestampMap|. |
54 CriticalSectionWrapper* _critSect; | 56 CriticalSectionWrapper* _critSect; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 uint32_t _nextFrameInfoIdx; | 99 uint32_t _nextFrameInfoIdx; |
98 VideoDecoder* const _decoder; | 100 VideoDecoder* const _decoder; |
99 VideoCodecType _codecType; | 101 VideoCodecType _codecType; |
100 bool _isExternal; | 102 bool _isExternal; |
101 bool _keyFrameDecoded; | 103 bool _keyFrameDecoded; |
102 }; | 104 }; |
103 | 105 |
104 } // namespace webrtc | 106 } // namespace webrtc |
105 | 107 |
106 #endif // WEBRTC_MODULES_VIDEO_CODING_GENERIC_DECODER_H_ | 108 #endif // WEBRTC_MODULES_VIDEO_CODING_GENERIC_DECODER_H_ |
OLD | NEW |