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

Side by Side Diff: talk/media/base/mediachannel.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 | « talk/app/webrtc/statstypes.cc ('k') | talk/media/webrtc/webrtcvideoengine2.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 * libjingle 2 * libjingle
3 * Copyright 2004 Google Inc. 3 * Copyright 2004 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 framerate_sent(0), 776 framerate_sent(0),
777 nominal_bitrate(0), 777 nominal_bitrate(0),
778 preferred_bitrate(0), 778 preferred_bitrate(0),
779 adapt_reason(0), 779 adapt_reason(0),
780 adapt_changes(0), 780 adapt_changes(0),
781 avg_encode_ms(0), 781 avg_encode_ms(0),
782 encode_usage_percent(0) { 782 encode_usage_percent(0) {
783 } 783 }
784 784
785 std::vector<SsrcGroup> ssrc_groups; 785 std::vector<SsrcGroup> ssrc_groups;
786 std::string encoder_implementation_name;
786 int packets_cached; 787 int packets_cached;
787 int firs_rcvd; 788 int firs_rcvd;
788 int plis_rcvd; 789 int plis_rcvd;
789 int nacks_rcvd; 790 int nacks_rcvd;
790 int input_frame_width; 791 int input_frame_width;
791 int input_frame_height; 792 int input_frame_height;
792 int send_frame_width; 793 int send_frame_width;
793 int send_frame_height; 794 int send_frame_height;
794 int framerate_input; 795 int framerate_input;
795 int framerate_sent; 796 int framerate_sent;
(...skipping 25 matching lines...) Expand all
821 max_decode_ms(0), 822 max_decode_ms(0),
822 jitter_buffer_ms(0), 823 jitter_buffer_ms(0),
823 min_playout_delay_ms(0), 824 min_playout_delay_ms(0),
824 render_delay_ms(0), 825 render_delay_ms(0),
825 target_delay_ms(0), 826 target_delay_ms(0),
826 current_delay_ms(0), 827 current_delay_ms(0),
827 capture_start_ntp_time_ms(-1) { 828 capture_start_ntp_time_ms(-1) {
828 } 829 }
829 830
830 std::vector<SsrcGroup> ssrc_groups; 831 std::vector<SsrcGroup> ssrc_groups;
832 std::string decoder_implementation_name;
831 int packets_concealed; 833 int packets_concealed;
832 int firs_sent; 834 int firs_sent;
833 int plis_sent; 835 int plis_sent;
834 int nacks_sent; 836 int nacks_sent;
835 int frame_width; 837 int frame_width;
836 int frame_height; 838 int frame_height;
837 int framerate_rcvd; 839 int framerate_rcvd;
838 int framerate_decoded; 840 int framerate_decoded;
839 int framerate_output; 841 int framerate_output;
840 // Framerate as sent to the renderer. 842 // Framerate as sent to the renderer.
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 // Signal when the media channel is ready to send the stream. Arguments are: 1218 // Signal when the media channel is ready to send the stream. Arguments are:
1217 // writable(bool) 1219 // writable(bool)
1218 sigslot::signal1<bool> SignalReadyToSend; 1220 sigslot::signal1<bool> SignalReadyToSend;
1219 // Signal for notifying that the remote side has closed the DataChannel. 1221 // Signal for notifying that the remote side has closed the DataChannel.
1220 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; 1222 sigslot::signal1<uint32_t> SignalStreamClosedRemotely;
1221 }; 1223 };
1222 1224
1223 } // namespace cricket 1225 } // namespace cricket
1224 1226
1225 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ 1227 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_
OLDNEW
« no previous file with comments | « talk/app/webrtc/statstypes.cc ('k') | talk/media/webrtc/webrtcvideoengine2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698