OLD | NEW |
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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 framerate_sent(0), | 779 framerate_sent(0), |
780 nominal_bitrate(0), | 780 nominal_bitrate(0), |
781 preferred_bitrate(0), | 781 preferred_bitrate(0), |
782 adapt_reason(0), | 782 adapt_reason(0), |
783 adapt_changes(0), | 783 adapt_changes(0), |
784 avg_encode_ms(0), | 784 avg_encode_ms(0), |
785 encode_usage_percent(0) { | 785 encode_usage_percent(0) { |
786 } | 786 } |
787 | 787 |
788 std::vector<SsrcGroup> ssrc_groups; | 788 std::vector<SsrcGroup> ssrc_groups; |
| 789 std::string encoder_implementation_name; |
789 int packets_cached; | 790 int packets_cached; |
790 int firs_rcvd; | 791 int firs_rcvd; |
791 int plis_rcvd; | 792 int plis_rcvd; |
792 int nacks_rcvd; | 793 int nacks_rcvd; |
793 int input_frame_width; | 794 int input_frame_width; |
794 int input_frame_height; | 795 int input_frame_height; |
795 int send_frame_width; | 796 int send_frame_width; |
796 int send_frame_height; | 797 int send_frame_height; |
797 int framerate_input; | 798 int framerate_input; |
798 int framerate_sent; | 799 int framerate_sent; |
(...skipping 25 matching lines...) Expand all Loading... |
824 max_decode_ms(0), | 825 max_decode_ms(0), |
825 jitter_buffer_ms(0), | 826 jitter_buffer_ms(0), |
826 min_playout_delay_ms(0), | 827 min_playout_delay_ms(0), |
827 render_delay_ms(0), | 828 render_delay_ms(0), |
828 target_delay_ms(0), | 829 target_delay_ms(0), |
829 current_delay_ms(0), | 830 current_delay_ms(0), |
830 capture_start_ntp_time_ms(-1) { | 831 capture_start_ntp_time_ms(-1) { |
831 } | 832 } |
832 | 833 |
833 std::vector<SsrcGroup> ssrc_groups; | 834 std::vector<SsrcGroup> ssrc_groups; |
| 835 std::string decoder_implementation_name; |
834 int packets_concealed; | 836 int packets_concealed; |
835 int firs_sent; | 837 int firs_sent; |
836 int plis_sent; | 838 int plis_sent; |
837 int nacks_sent; | 839 int nacks_sent; |
838 int frame_width; | 840 int frame_width; |
839 int frame_height; | 841 int frame_height; |
840 int framerate_rcvd; | 842 int framerate_rcvd; |
841 int framerate_decoded; | 843 int framerate_decoded; |
842 int framerate_output; | 844 int framerate_output; |
843 // Framerate as sent to the renderer. | 845 // Framerate as sent to the renderer. |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1214 // Signal when the media channel is ready to send the stream. Arguments are: | 1216 // Signal when the media channel is ready to send the stream. Arguments are: |
1215 // writable(bool) | 1217 // writable(bool) |
1216 sigslot::signal1<bool> SignalReadyToSend; | 1218 sigslot::signal1<bool> SignalReadyToSend; |
1217 // Signal for notifying that the remote side has closed the DataChannel. | 1219 // Signal for notifying that the remote side has closed the DataChannel. |
1218 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; | 1220 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; |
1219 }; | 1221 }; |
1220 | 1222 |
1221 } // namespace cricket | 1223 } // namespace cricket |
1222 | 1224 |
1223 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ | 1225 #endif // TALK_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |