Attention is currently required from: dexter.
6 comments:
File library/RTP_Emulation.ttcn:
Patch Set #5, Line 393: if (ispresent(g_cfg.rx_payloads[i].fixed_payload)) {
if (not ispresent(g_cfg.rx_payloads[i].fixed_payload))
return;
Patch Set #5, Line 395: full_match := full_match + 1;
return;
Patch Set #5, Line 396: } else {
"else" can be dropped after return;
Patch Set #5, Line 397: payload_type_match := payload_type_match + 1;
g_stats_rtp.num_pkts_rx_err_payload := g_stats_rtp.num_pkts_rx_err_payload + 1;
return;
Patch Set #5, Line 406: if (full_match > 0) {
This can now be dropped.
Patch Set #5, Line 411: if (payload_type_match > 0) {
This can be dropped.
To view, visit change 32153. To unsubscribe, or for help writing mail filters, visit settings.