mflodman | cfc8e3b | 2016-05-04 04:22:04 | [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 04:47:31 | [diff] [blame] | 11 | #ifndef VIDEO_VIDEO_STREAM_DECODER_H_ |
| 12 | #define VIDEO_VIDEO_STREAM_DECODER_H_ |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 13 | |
| 14 | #include <list> |
| 15 | #include <map> |
| 16 | #include <memory> |
| 17 | #include <vector> |
| 18 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 19 | #include "media/base/videosinkinterface.h" |
| 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 11:58:09 | [diff] [blame] | 25 | #include "typedefs.h" // NOLINT(build/include) |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 26 | |
| 27 | namespace webrtc { |
| 28 | |
| 29 | class CallStatsObserver; |
| 30 | class ChannelStatsObserver; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 31 | class EncodedImageCallback; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 32 | class ReceiveStatisticsProxy; |
| 33 | class VideoRenderCallback; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 34 | |
| 35 | namespace vcm { |
| 36 | class VideoReceiver; |
| 37 | } // namespace vcm |
| 38 | |
| 39 | enum StreamType { |
| 40 | kViEStreamTypeNormal = 0, // Normal media stream |
| 41 | kViEStreamTypeRtx = 1 // Retransmission media stream |
| 42 | }; |
| 43 | |
| 44 | class VideoStreamDecoder : public VCMReceiveCallback, |
| 45 | public VCMReceiveStatisticsCallback, |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 46 | public CallStatsObserver { |
| 47 | public: |
| 48 | friend class ChannelStatsObserver; |
| 49 | |
nisse | 76bc8e8 | 2017-02-07 17:37:41 | [diff] [blame] | 50 | VideoStreamDecoder( |
| 51 | vcm::VideoReceiver* video_receiver, |
| 52 | VCMFrameTypeCallback* vcm_frame_type_callback, |
| 53 | VCMPacketRequestCallback* vcm_packet_request_callback, |
| 54 | bool enable_nack, |
| 55 | bool enable_fec, |
| 56 | ReceiveStatisticsProxy* receive_statistics_proxy, |
| 57 | rtc::VideoSinkInterface<VideoFrame>* incoming_video_stream); |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 58 | ~VideoStreamDecoder(); |
| 59 | |
| 60 | // Implements VCMReceiveCallback. |
sakal | cc452e1 | 2017-02-09 12:53:45 | [diff] [blame] | 61 | int32_t FrameToRender(VideoFrame& video_frame, |
ilnik | 00d802b | 2017-04-11 17:34:31 | [diff] [blame] | 62 | rtc::Optional<uint8_t> qp, |
| 63 | VideoContentType content_type) override; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 64 | int32_t ReceivedDecodedReferenceFrame(const uint64_t picture_id) override; |
| 65 | void OnIncomingPayloadType(int payload_type) override; |
| 66 | void OnDecoderImplementationName(const char* implementation_name) override; |
| 67 | |
| 68 | // Implements VCMReceiveStatisticsCallback. |
| 69 | void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override; |
| 70 | void OnDiscardedPacketsUpdated(int discarded_packets) override; |
| 71 | void OnFrameCountsUpdated(const FrameCounts& frame_counts) override; |
ilnik | 6d5b4d6 | 2017-08-30 10:32:14 | [diff] [blame] | 72 | void OnCompleteFrame(bool is_keyframe, |
| 73 | size_t size_bytes, |
| 74 | VideoContentType content_type) override; |
philipel | a45102f | 2017-02-22 13:30:39 | [diff] [blame] | 75 | void OnFrameBufferTimingsUpdated(int decode_ms, |
| 76 | int max_decode_ms, |
| 77 | int current_delay_ms, |
| 78 | int target_delay_ms, |
| 79 | int jitter_buffer_ms, |
| 80 | int min_playout_delay_ms, |
| 81 | int render_delay_ms) override; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 82 | |
ilnik | 2edc684 | 2017-07-06 10:06:50 | [diff] [blame] | 83 | void OnTimingFrameInfoUpdated(const TimingFrameInfo& info) override; |
| 84 | |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 85 | void RegisterReceiveStatisticsProxy( |
| 86 | ReceiveStatisticsProxy* receive_statistics_proxy); |
| 87 | |
| 88 | // Implements StatsObserver. |
| 89 | void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override; |
| 90 | |
| 91 | private: |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 92 | // Used for all registered callbacks except rendering. |
| 93 | rtc::CriticalSection crit_; |
| 94 | |
| 95 | vcm::VideoReceiver* const video_receiver_; |
| 96 | |
| 97 | ReceiveStatisticsProxy* const receive_stats_callback_; |
tommi | 2e82f38 | 2016-06-21 07:26:43 | [diff] [blame] | 98 | rtc::VideoSinkInterface<VideoFrame>* const incoming_video_stream_; |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 99 | |
danilchap | a37de39 | 2017-09-09 11:17:22 | [diff] [blame] | 100 | int64_t last_rtt_ms_ RTC_GUARDED_BY(crit_); |
mflodman | cfc8e3b | 2016-05-04 04:22:04 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | } // namespace webrtc |
| 104 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 105 | #endif // VIDEO_VIDEO_STREAM_DECODER_H_ |