sprang@webrtc.org | 0931570 | 2014-02-07 12:06:29 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2013 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 | |
| 11 | #ifndef WEBRTC_VIDEO_RECEIVE_STATISTICS_PROXY_H_ |
| 12 | #define WEBRTC_VIDEO_RECEIVE_STATISTICS_PROXY_H_ |
| 13 | |
| 14 | #include <string> |
| 15 | |
| 16 | #include "webrtc/common_types.h" |
| 17 | #include "webrtc/frame_callback.h" |
| 18 | #include "webrtc/modules/remote_bitrate_estimator/rate_statistics.h" |
| 19 | #include "webrtc/video_engine/include/vie_codec.h" |
| 20 | #include "webrtc/video_engine/include/vie_rtp_rtcp.h" |
| 21 | #include "webrtc/video_receive_stream.h" |
| 22 | #include "webrtc/video_renderer.h" |
| 23 | |
| 24 | namespace webrtc { |
| 25 | |
| 26 | class Clock; |
| 27 | class CriticalSectionWrapper; |
| 28 | class ViECodec; |
| 29 | class ViEDecoderObserver; |
| 30 | |
| 31 | namespace internal { |
| 32 | |
| 33 | class ReceiveStatisticsProxy : public ViEDecoderObserver, |
| 34 | public RtcpStatisticsCallback, |
| 35 | public StreamDataCountersCallback { |
| 36 | public: |
| 37 | ReceiveStatisticsProxy(uint32_t ssrc, |
| 38 | Clock* clock, |
| 39 | ViERTP_RTCP* rtp_rtcp, |
| 40 | ViECodec* codec, |
| 41 | int channel); |
| 42 | virtual ~ReceiveStatisticsProxy(); |
| 43 | |
| 44 | VideoReceiveStream::Stats GetStats() const; |
| 45 | |
| 46 | void OnDecodedFrame(); |
| 47 | void OnRenderedFrame(); |
| 48 | |
| 49 | // Overrides ViEDecoderObserver. |
| 50 | virtual void IncomingCodecChanged(const int video_channel, |
| 51 | const VideoCodec& video_codec) OVERRIDE {} |
| 52 | virtual void IncomingRate(const int video_channel, |
| 53 | const unsigned int framerate, |
| 54 | const unsigned int bitrate) OVERRIDE; |
| 55 | virtual void DecoderTiming(int decode_ms, |
| 56 | int max_decode_ms, |
| 57 | int current_delay_ms, |
| 58 | int target_delay_ms, |
| 59 | int jitter_buffer_ms, |
| 60 | int min_playout_delay_ms, |
| 61 | int render_delay_ms) OVERRIDE {} |
| 62 | virtual void RequestNewKeyFrame(const int video_channel) OVERRIDE {} |
| 63 | |
| 64 | // Overrides RtcpStatisticsBallback. |
| 65 | virtual void StatisticsUpdated(const webrtc::RtcpStatistics& statistics, |
| 66 | uint32_t ssrc) OVERRIDE; |
| 67 | |
| 68 | // Overrides StreamDataCountersCallback. |
| 69 | virtual void DataCountersUpdated(const webrtc::StreamDataCounters& counters, |
| 70 | uint32_t ssrc) OVERRIDE; |
| 71 | |
| 72 | private: |
| 73 | std::string GetCName() const; |
| 74 | |
| 75 | const int channel_; |
| 76 | scoped_ptr<CriticalSectionWrapper> lock_; |
| 77 | Clock* clock_; |
| 78 | VideoReceiveStream::Stats stats_; |
| 79 | RateStatistics decode_fps_estimator_; |
| 80 | RateStatistics renders_fps_estimator_; |
| 81 | ViECodec* codec_; |
| 82 | ViERTP_RTCP* rtp_rtcp_; |
| 83 | }; |
| 84 | |
| 85 | } // namespace internal |
| 86 | } // namespace webrtc |
| 87 | #endif // WEBRTC_VIDEO_RECEIVE_STATISTICS_PROXY_H_ |