mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef VIDEO_VIDEO_STREAM_DECODER_H_ |
| 12 | #define VIDEO_VIDEO_STREAM_DECODER_H_ |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 13 | |
| 14 | #include <list> |
| 15 | #include <map> |
| 16 | #include <memory> |
| 17 | #include <vector> |
| 18 | |
Niels Möller | c6ce9c5 | 2018-05-11 11:15:30 +0200 | [diff] [blame] | 19 | #include "api/video/video_sink_interface.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 20 | #include "modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" |
| 21 | #include "modules/video_coding/include/video_coding_defines.h" |
| 22 | #include "rtc_base/criticalsection.h" |
| 23 | #include "rtc_base/platform_thread.h" |
| 24 | #include "rtc_base/scoped_ref_ptr.h" |
Mirko Bonadei | 7120742 | 2017-09-15 13:58:09 +0200 | [diff] [blame] | 25 | #include "typedefs.h" // NOLINT(build/include) |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 26 | |
| 27 | namespace webrtc { |
| 28 | |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 29 | class ReceiveStatisticsProxy; |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 30 | |
| 31 | namespace vcm { |
| 32 | class VideoReceiver; |
| 33 | } // namespace vcm |
| 34 | |
| 35 | enum StreamType { |
| 36 | kViEStreamTypeNormal = 0, // Normal media stream |
| 37 | kViEStreamTypeRtx = 1 // Retransmission media stream |
| 38 | }; |
| 39 | |
| 40 | class VideoStreamDecoder : public VCMReceiveCallback, |
Tommi | 81de14f | 2018-03-25 22:19:25 +0200 | [diff] [blame] | 41 | public VCMReceiveStatisticsCallback { |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 42 | public: |
nisse | 76bc8e8 | 2017-02-07 09:37:41 -0800 | [diff] [blame] | 43 | VideoStreamDecoder( |
| 44 | vcm::VideoReceiver* video_receiver, |
| 45 | VCMFrameTypeCallback* vcm_frame_type_callback, |
| 46 | VCMPacketRequestCallback* vcm_packet_request_callback, |
| 47 | bool enable_nack, |
| 48 | bool enable_fec, |
| 49 | ReceiveStatisticsProxy* receive_statistics_proxy, |
| 50 | rtc::VideoSinkInterface<VideoFrame>* incoming_video_stream); |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 51 | ~VideoStreamDecoder(); |
| 52 | |
| 53 | // Implements VCMReceiveCallback. |
sakal | cc452e1 | 2017-02-09 04:53:45 -0800 | [diff] [blame] | 54 | int32_t FrameToRender(VideoFrame& video_frame, |
ilnik | 00d802b | 2017-04-11 10:34:31 -0700 | [diff] [blame] | 55 | rtc::Optional<uint8_t> qp, |
| 56 | VideoContentType content_type) override; |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 57 | int32_t ReceivedDecodedReferenceFrame(const uint64_t picture_id) override; |
| 58 | void OnIncomingPayloadType(int payload_type) override; |
| 59 | void OnDecoderImplementationName(const char* implementation_name) override; |
| 60 | |
| 61 | // Implements VCMReceiveStatisticsCallback. |
| 62 | void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override; |
| 63 | void OnDiscardedPacketsUpdated(int discarded_packets) override; |
| 64 | void OnFrameCountsUpdated(const FrameCounts& frame_counts) override; |
ilnik | 6d5b4d6 | 2017-08-30 03:32:14 -0700 | [diff] [blame] | 65 | void OnCompleteFrame(bool is_keyframe, |
| 66 | size_t size_bytes, |
| 67 | VideoContentType content_type) override; |
philipel | a45102f | 2017-02-22 05:30:39 -0800 | [diff] [blame] | 68 | void OnFrameBufferTimingsUpdated(int decode_ms, |
| 69 | int max_decode_ms, |
| 70 | int current_delay_ms, |
| 71 | int target_delay_ms, |
| 72 | int jitter_buffer_ms, |
| 73 | int min_playout_delay_ms, |
| 74 | int render_delay_ms) override; |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 75 | |
ilnik | 2edc684 | 2017-07-06 03:06:50 -0700 | [diff] [blame] | 76 | void OnTimingFrameInfoUpdated(const TimingFrameInfo& info) override; |
| 77 | |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 78 | void RegisterReceiveStatisticsProxy( |
| 79 | ReceiveStatisticsProxy* receive_statistics_proxy); |
| 80 | |
Tommi | 81de14f | 2018-03-25 22:19:25 +0200 | [diff] [blame] | 81 | // Called by VideoReceiveStream when stats are updated. |
| 82 | void UpdateRtt(int64_t max_rtt_ms); |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 83 | |
| 84 | private: |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 85 | // Used for all registered callbacks except rendering. |
| 86 | rtc::CriticalSection crit_; |
| 87 | |
| 88 | vcm::VideoReceiver* const video_receiver_; |
| 89 | |
| 90 | ReceiveStatisticsProxy* const receive_stats_callback_; |
tommi | 2e82f38 | 2016-06-21 00:26:43 -0700 | [diff] [blame] | 91 | rtc::VideoSinkInterface<VideoFrame>* const incoming_video_stream_; |
mflodman | cfc8e3b | 2016-05-03 21:22:04 -0700 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | } // namespace webrtc |
| 95 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 96 | #endif // VIDEO_VIDEO_STREAM_DECODER_H_ |