mikufans-proto 8.52.0+build.19546312

gRPC APIs for Mikufans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
// This file is @generated by prost-build.
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ClientStatsPayload {
    ///
    #[prost(message, optional, tag = "1")]
    pub transport: ::core::option::Option<RtcTransport>,
    ///
    #[prost(message, optional, tag = "2")]
    pub selected_candidate_pair: ::core::option::Option<RtcCandidatePair>,
    ///
    #[prost(message, repeated, tag = "3")]
    pub candidate_pairs: ::prost::alloc::vec::Vec<RtcCandidatePair>,
    ///
    #[prost(message, repeated, tag = "4")]
    pub av_senders: ::prost::alloc::vec::Vec<RtcAvSenderStats>,
    ///
    #[prost(message, repeated, tag = "5")]
    pub av_receivers: ::prost::alloc::vec::Vec<RtcAvReceiverStats>,
    ///
    #[prost(message, repeated, tag = "6")]
    pub data_channels: ::prost::alloc::vec::Vec<RtcDataChannel>,
    ///
    #[prost(int64, tag = "7")]
    pub generate_ts: i64,
    ///
    #[prost(string, tag = "8")]
    pub business_name: ::prost::alloc::string::String,
}
impl ::prost::Name for ClientStatsPayload {
    const NAME: &'static str = "ClientStatsPayload";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.ClientStatsPayload".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.ClientStatsPayload".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcAvReceiverStats {
    ///
    #[prost(int64, tag = "1")]
    pub uid: i64,
    ///
    #[prost(message, repeated, tag = "2")]
    pub video: ::prost::alloc::vec::Vec<RtcVideoReceiverInfo>,
    ///
    #[prost(message, repeated, tag = "3")]
    pub audio: ::prost::alloc::vec::Vec<RtcAudioReceiverInfo>,
}
impl ::prost::Name for RtcAvReceiverStats {
    const NAME: &'static str = "RtcAVReceiverStats";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcAVReceiverStats".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcAVReceiverStats".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcAvSenderStats {
    ///
    #[prost(int64, tag = "1")]
    pub uid: i64,
    ///
    #[prost(message, repeated, tag = "2")]
    pub video: ::prost::alloc::vec::Vec<RtcVideoSenderInfo>,
    ///
    #[prost(message, repeated, tag = "3")]
    pub audio: ::prost::alloc::vec::Vec<RtcAudioSenderInfo>,
}
impl ::prost::Name for RtcAvSenderStats {
    const NAME: &'static str = "RtcAVSenderStats";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcAVSenderStats".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcAVSenderStats".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcAudioReceiverInfo {
    ///
    #[prost(int32, tag = "1")]
    pub ssrc: i32,
    ///
    #[prost(double, tag = "2")]
    pub audio_level: f64,
    ///
    #[prost(int64, tag = "3")]
    pub bytes_received: i64,
    ///
    #[prost(int64, tag = "4")]
    pub concealed_samples: i64,
    ///
    #[prost(int64, tag = "5")]
    pub concealment_events: i64,
    ///
    #[prost(int64, tag = "6")]
    pub silent_concealed_samples: i64,
    ///
    #[prost(double, tag = "7")]
    pub estimated_playout_timestamp: f64,
    ///
    #[prost(int64, tag = "8")]
    pub fec_packets_discarded: i64,
    ///
    #[prost(int64, tag = "9")]
    pub fec_packets_received: i64,
    ///
    #[prost(int64, tag = "10")]
    pub header_bytes_received: i64,
    ///
    #[prost(int64, tag = "11")]
    pub inserted_samples_for_deceleration: i64,
    ///
    #[prost(double, tag = "12")]
    pub jitter: f64,
    ///
    #[prost(double, tag = "13")]
    pub jitter_buffer_delay: f64,
    ///
    #[prost(int64, tag = "14")]
    pub jitter_buffer_emitted_count: i64,
    ///
    #[prost(double, tag = "15")]
    pub last_packet_received_timestamp: f64,
    ///
    #[prost(int64, tag = "16")]
    pub packets_discarded: i64,
    ///
    #[prost(int64, tag = "17")]
    pub packets_lost: i64,
    ///
    #[prost(int64, tag = "18")]
    pub packets_received: i64,
    ///
    #[prost(int64, tag = "19")]
    pub removed_samples_for_acceleration: i64,
    ///
    #[prost(double, tag = "20")]
    pub total_audio_energy: f64,
    ///
    #[prost(double, tag = "21")]
    pub total_samples_duration: f64,
    ///
    #[prost(int64, tag = "22")]
    pub total_samples_received: i64,
    ///
    #[prost(int64, tag = "23")]
    pub delayed_packet_outage_samples: i64,
    ///
    #[prost(int32, tag = "24")]
    pub interruption_count: i32,
    ///
    #[prost(double, tag = "25")]
    pub total_interruption_duration: f64,
    ///
    #[prost(int64, tag = "26")]
    pub jitter_buffer_flushes: i64,
    ///
    #[prost(double, tag = "27")]
    pub jitter_buffer_target_delay: f64,
    ///
    #[prost(double, tag = "28")]
    pub relative_packet_arrival_delay: f64,
    ///
    #[prost(int32, tag = "29")]
    pub stream_id: i32,
    ///
    #[prost(bool, tag = "30")]
    pub mute: bool,
    ///
    #[prost(string, tag = "31")]
    pub track_id: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "32")]
    pub uid: i64,
}
impl ::prost::Name for RtcAudioReceiverInfo {
    const NAME: &'static str = "RtcAudioReceiverInfo";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcAudioReceiverInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcAudioReceiverInfo".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcAudioSenderInfo {
    ///
    #[prost(int32, tag = "1")]
    pub ssrc: i32,
    ///
    #[prost(int64, tag = "2")]
    pub bytes_sent: i64,
    ///
    #[prost(int64, tag = "3")]
    pub header_bytes_sent: i64,
    ///
    #[prost(int32, tag = "4")]
    pub nack_count: i32,
    ///
    #[prost(int64, tag = "5")]
    pub packets_sent: i64,
    ///
    #[prost(int64, tag = "6")]
    pub retransmitted_bytes_sent: i64,
    ///
    #[prost(int64, tag = "7")]
    pub retransmitted_packets_sent: i64,
    ///
    #[prost(double, tag = "8")]
    pub fraction_lost: f64,
    ///
    #[prost(double, tag = "9")]
    pub jitter: f64,
    ///
    #[prost(int64, tag = "10")]
    pub packets_lost: i64,
    ///
    #[prost(double, tag = "11")]
    pub round_trip_time: f64,
    ///
    #[prost(int64, tag = "12")]
    pub round_trip_time_measurements: i64,
    ///
    #[prost(double, tag = "13")]
    pub total_round_trip_time: f64,
    ///
    #[prost(double, tag = "14")]
    pub audio_level: f64,
    ///
    #[prost(double, tag = "15")]
    pub total_audio_energy: f64,
    ///
    #[prost(double, tag = "16")]
    pub total_samples_duration: f64,
    ///
    #[prost(int32, tag = "17")]
    pub stream_id: i32,
    ///
    #[prost(bool, tag = "18")]
    pub mute: bool,
    ///
    #[prost(string, tag = "19")]
    pub remote_id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "20")]
    pub media_source_id: ::prost::alloc::string::String,
}
impl ::prost::Name for RtcAudioSenderInfo {
    const NAME: &'static str = "RtcAudioSenderInfo";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcAudioSenderInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcAudioSenderInfo".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcCandidatePair {
    ///
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub state: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "3")]
    pub priority: i64,
    ///
    #[prost(message, optional, tag = "4")]
    pub local_candidate: ::core::option::Option<RtcLocalCandidate>,
    ///
    #[prost(message, optional, tag = "5")]
    pub remote_candidate: ::core::option::Option<RtcRemoteCandidate>,
    ///
    #[prost(float, tag = "6")]
    pub available_outgoing_bitrate: f32,
    ///
    #[prost(float, tag = "7")]
    pub available_incoming_bitrate: f32,
    ///
    #[prost(int64, tag = "8")]
    pub bytes_discarded_on_send: i64,
    ///
    #[prost(int64, tag = "9")]
    pub bytes_received: i64,
    ///
    #[prost(int64, tag = "10")]
    pub bytes_sent: i64,
    ///
    #[prost(int64, tag = "11")]
    pub consent_requests_sent: i64,
    ///
    #[prost(float, tag = "12")]
    pub current_round_trip_time: f32,
    ///
    #[prost(bool, tag = "13")]
    pub nominated: bool,
    ///
    #[prost(int64, tag = "14")]
    pub packets_discarded_on_send: i64,
    ///
    #[prost(int64, tag = "15")]
    pub packets_received: i64,
    ///
    #[prost(int64, tag = "16")]
    pub packets_sent: i64,
    ///
    #[prost(int64, tag = "17")]
    pub requests_received: i64,
    ///
    #[prost(int64, tag = "18")]
    pub requests_sent: i64,
    ///
    #[prost(int64, tag = "19")]
    pub responses_received: i64,
    ///
    #[prost(int64, tag = "20")]
    pub responses_sent: i64,
    ///
    #[prost(float, tag = "21")]
    pub total_round_trip_time: f32,
    ///
    #[prost(bool, tag = "22")]
    pub writable: bool,
}
impl ::prost::Name for RtcCandidatePair {
    const NAME: &'static str = "RtcCandidatePair";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcCandidatePair".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcCandidatePair".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcDataChannel {
    ///
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub label: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "3")]
    pub state: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "4")]
    pub protocol: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "5")]
    pub bytes_sent: i64,
    ///
    #[prost(int64, tag = "6")]
    pub bytes_received: i64,
    ///
    #[prost(int32, tag = "7")]
    pub messages_sent: i32,
    ///
    #[prost(int32, tag = "8")]
    pub messages_received: i32,
}
impl ::prost::Name for RtcDataChannel {
    const NAME: &'static str = "RtcDataChannel";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcDataChannel".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcDataChannel".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcLocalCandidate {
    ///
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub network_type: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "3")]
    pub ip: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "4")]
    pub address: ::prost::alloc::string::String,
    ///
    #[prost(int32, tag = "5")]
    pub port: i32,
    ///
    #[prost(string, tag = "6")]
    pub protocol: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "7")]
    pub candidate_type: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "8")]
    pub priority: i64,
}
impl ::prost::Name for RtcLocalCandidate {
    const NAME: &'static str = "RtcLocalCandidate";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcLocalCandidate".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcLocalCandidate".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcRemoteCandidate {
    ///
    #[prost(string, tag = "1")]
    pub id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub ip: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "3")]
    pub address: ::prost::alloc::string::String,
    ///
    #[prost(int32, tag = "4")]
    pub port: i32,
    ///
    #[prost(string, tag = "5")]
    pub protocol: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "6")]
    pub candidate_type: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "7")]
    pub priority: i64,
}
impl ::prost::Name for RtcRemoteCandidate {
    const NAME: &'static str = "RtcRemoteCandidate";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcRemoteCandidate".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcRemoteCandidate".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcTransport {
    ///
    #[prost(string, tag = "1")]
    pub selected_candidate_pair_id: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "2")]
    pub dtls_cipher: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "3")]
    pub dtls_state: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "4")]
    pub bytes_received: i64,
    ///
    #[prost(int64, tag = "5")]
    pub bytes_sent: i64,
    ///
    #[prost(int64, tag = "6")]
    pub packets_received: i64,
    ///
    #[prost(int64, tag = "7")]
    pub packets_sent: i64,
    ///
    #[prost(int32, tag = "8")]
    pub selected_candidate_pair_changes: i32,
}
impl ::prost::Name for RtcTransport {
    const NAME: &'static str = "RtcTransport";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcTransport".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcTransport".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcVideoReceiverInfo {
    ///
    #[prost(int32, tag = "1")]
    pub ssrc: i32,
    ///
    #[prost(string, tag = "2")]
    pub decoder_implementation: ::prost::alloc::string::String,
    ///
    #[prost(double, tag = "3")]
    pub estimated_playout_timestamp: f64,
    ///
    #[prost(int32, tag = "4")]
    pub frame_width: i32,
    ///
    #[prost(int32, tag = "5")]
    pub frame_height: i32,
    ///
    #[prost(int32, tag = "6")]
    pub frames_decoded: i32,
    ///
    #[prost(int32, tag = "7")]
    pub frames_dropped: i32,
    ///
    #[prost(int32, tag = "8")]
    pub frames_received: i32,
    ///
    #[prost(int64, tag = "9")]
    pub bytes_received: i64,
    ///
    #[prost(int64, tag = "10")]
    pub header_bytes_received: i64,
    ///
    #[prost(int64, tag = "11")]
    pub packets_lost: i64,
    ///
    #[prost(int64, tag = "12")]
    pub packets_received: i64,
    ///
    #[prost(double, tag = "13")]
    pub jitter: f64,
    ///
    #[prost(double, tag = "14")]
    pub jitter_buffer_delay: f64,
    ///
    #[prost(int64, tag = "15")]
    pub jitter_buffer_emitted_count: i64,
    ///
    #[prost(int32, tag = "16")]
    pub key_frames_decoded: i32,
    ///
    #[prost(double, tag = "17")]
    pub last_packet_received_timestamp: f64,
    ///
    #[prost(int32, tag = "18")]
    pub fir_count: i32,
    ///
    #[prost(int32, tag = "19")]
    pub nack_count: i32,
    ///
    #[prost(int32, tag = "20")]
    pub pli_count: i32,
    ///
    #[prost(int64, tag = "21")]
    pub qp_sum: i64,
    ///
    #[prost(double, tag = "22")]
    pub total_decode_time: f64,
    ///
    #[prost(double, tag = "23")]
    pub total_inter_frame_delay: f64,
    ///
    #[prost(double, tag = "24")]
    pub total_squared_inter_frame_delay: f64,
    ///
    #[prost(int32, tag = "25")]
    pub freeze_count: i32,
    ///
    #[prost(int32, tag = "26")]
    pub pause_count: i32,
    ///
    #[prost(double, tag = "27")]
    pub sum_of_squared_frames_duration: f64,
    ///
    #[prost(double, tag = "28")]
    pub total_freezes_duration: f64,
    ///
    #[prost(double, tag = "29")]
    pub total_pauses_duration: f64,
    ///
    #[prost(int64, tag = "30")]
    pub first_frame_cost: i64,
    ///
    #[prost(int32, tag = "31")]
    pub stream_id: i32,
    ///
    #[prost(bool, tag = "32")]
    pub mute: bool,
    ///
    #[prost(int64, tag = "33")]
    pub freeze_samples: i64,
    ///
    #[prost(int64, tag = "34")]
    pub freeze_duration: i64,
    ///
    #[prost(string, tag = "35")]
    pub track_id: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "36")]
    pub uid: i64,
    ///
    #[prost(double, tag = "37")]
    pub frames_per_second: f64,
}
impl ::prost::Name for RtcVideoReceiverInfo {
    const NAME: &'static str = "RtcVideoReceiverInfo";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcVideoReceiverInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcVideoReceiverInfo".into()
    }
}
///
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RtcVideoSenderInfo {
    ///
    #[prost(int32, tag = "1")]
    pub ssrc: i32,
    ///
    #[prost(string, tag = "2")]
    pub encoder_implementation: ::prost::alloc::string::String,
    ///
    #[prost(int64, tag = "3")]
    pub bytes_sent: i64,
    ///
    #[prost(int32, tag = "4")]
    pub fir_count: i32,
    ///
    #[prost(int32, tag = "5")]
    pub frame_height: i32,
    ///
    #[prost(int32, tag = "6")]
    pub frame_width: i32,
    ///
    #[prost(int32, tag = "7")]
    pub frames_encoded: i32,
    ///
    #[prost(int32, tag = "8")]
    pub frames_sent: i32,
    ///
    #[prost(int32, tag = "9")]
    pub header_bytes_sent: i32,
    ///
    #[prost(int32, tag = "10")]
    pub huge_frames_sent: i32,
    ///
    #[prost(int32, tag = "11")]
    pub key_frames_encoded: i32,
    ///
    #[prost(int32, tag = "12")]
    pub nack_count: i32,
    ///
    #[prost(int64, tag = "13")]
    pub packets_sent: i64,
    ///
    #[prost(int32, tag = "14")]
    pub pli_count: i32,
    ///
    #[prost(int64, tag = "15")]
    pub retransmitted_bytes_sent: i64,
    ///
    #[prost(int64, tag = "16")]
    pub retransmitted_packets_sent: i64,
    ///
    #[prost(double, tag = "17")]
    pub total_encode_time: f64,
    ///
    #[prost(int64, tag = "18")]
    pub total_encoded_bytes_target: i64,
    ///
    #[prost(double, tag = "19")]
    pub total_packet_send_delay: f64,
    ///
    #[prost(int64, tag = "20")]
    pub qp_sum: i64,
    ///
    #[prost(string, tag = "21")]
    pub quality_limitation_reason: ::prost::alloc::string::String,
    ///
    #[prost(int32, tag = "22")]
    pub quality_limitation_resolution_changes: i32,
    ///
    #[prost(double, tag = "23")]
    pub bandwidth_q_l_durations: f64,
    ///
    #[prost(double, tag = "24")]
    pub cpu_q_l_durations: f64,
    ///
    #[prost(double, tag = "25")]
    pub none_q_l_durations: f64,
    ///
    #[prost(double, tag = "26")]
    pub other_q_l_durations: f64,
    ///
    #[prost(double, tag = "27")]
    pub fraction_lost: f64,
    ///
    #[prost(double, tag = "28")]
    pub jitter: f64,
    ///
    #[prost(int64, tag = "29")]
    pub packets_lost: i64,
    ///
    #[prost(double, tag = "30")]
    pub round_trip_time: f64,
    ///
    #[prost(int64, tag = "31")]
    pub round_trip_time_measurements: i64,
    ///
    #[prost(double, tag = "32")]
    pub total_round_trip_time: f64,
    ///
    #[prost(int32, tag = "33")]
    pub stream_id: i32,
    ///
    #[prost(bool, tag = "34")]
    pub mute: bool,
    ///
    #[prost(string, tag = "35")]
    pub content_type: ::prost::alloc::string::String,
    ///
    #[prost(string, tag = "36")]
    pub remote_id: ::prost::alloc::string::String,
    ///
    #[prost(int32, tag = "37")]
    pub frames: i32,
    ///
    #[prost(double, tag = "38")]
    pub framerate_input: f64,
    ///
    #[prost(int32, tag = "39")]
    pub framerate_sent: i32,
    ///
    #[prost(int32, tag = "40")]
    pub avg_encode_ms: i32,
    ///
    #[prost(int32, tag = "41")]
    pub frames_dropped_by_capturer: i32,
    ///
    #[prost(int32, tag = "42")]
    pub frames_dropped_by_congestion_window: i32,
    ///
    #[prost(int32, tag = "43")]
    pub frames_dropped_by_encoder: i32,
    ///
    #[prost(int32, tag = "44")]
    pub frames_dropped_by_encoder_queue: i32,
    ///
    #[prost(int32, tag = "45")]
    pub frames_dropped_by_rate_limiter: i32,
    ///
    #[prost(double, tag = "46")]
    pub target_bitrate: f64,
}
impl ::prost::Name for RtcVideoSenderInfo {
    const NAME: &'static str = "RtcVideoSenderInfo";
    const PACKAGE: &'static str = "bilibili.live.rtc.datachannel.report";
    fn full_name() -> ::prost::alloc::string::String {
        "bilibili.live.rtc.datachannel.report.RtcVideoSenderInfo".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "/bilibili.live.rtc.datachannel.report.RtcVideoSenderInfo".into()
    }
}