Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: webrtc/video/vie_channel.h

Issue 1406903002: Expose codec implementation names in stats. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: fix rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/video/video_encoder_unittest.cc ('k') | webrtc/video/vie_channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 // Implements VCMReceiveCallback. 224 // Implements VCMReceiveCallback.
225 virtual int32_t FrameToRender(VideoFrame& video_frame); // NOLINT 225 virtual int32_t FrameToRender(VideoFrame& video_frame); // NOLINT
226 226
227 // Implements VCMReceiveCallback. 227 // Implements VCMReceiveCallback.
228 virtual int32_t ReceivedDecodedReferenceFrame( 228 virtual int32_t ReceivedDecodedReferenceFrame(
229 const uint64_t picture_id); 229 const uint64_t picture_id);
230 230
231 // Implements VCMReceiveCallback. 231 // Implements VCMReceiveCallback.
232 void OnIncomingPayloadType(int payload_type) override; 232 void OnIncomingPayloadType(int payload_type) override;
233 void OnDecoderImplementationName(const char* implementation_name) override;
233 234
234 // Implements VCMReceiveStatisticsCallback. 235 // Implements VCMReceiveStatisticsCallback.
235 void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override; 236 void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override;
236 void OnDiscardedPacketsUpdated(int discarded_packets) override; 237 void OnDiscardedPacketsUpdated(int discarded_packets) override;
237 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override; 238 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override;
238 239
239 // Implements VCMDecoderTimingCallback. 240 // Implements VCMDecoderTimingCallback.
240 virtual void OnDecoderTiming(int decode_ms, 241 virtual void OnDecoderTiming(int decode_ms,
241 int max_decode_ms, 242 int max_decode_ms,
242 int current_delay_ms, 243 int current_delay_ms,
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 size_t num_rtts_ GUARDED_BY(crit_); 445 size_t num_rtts_ GUARDED_BY(crit_);
445 446
446 // RtpRtcp modules, declared last as they use other members on construction. 447 // RtpRtcp modules, declared last as they use other members on construction.
447 const std::vector<RtpRtcp*> rtp_rtcp_modules_; 448 const std::vector<RtpRtcp*> rtp_rtcp_modules_;
448 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); 449 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_);
449 }; 450 };
450 451
451 } // namespace webrtc 452 } // namespace webrtc
452 453
453 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ 454 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_encoder_unittest.cc ('k') | webrtc/video/vie_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698