srtpdec: reduce log level for replay cases

These are normal cases, so DEBUG level is enough.
This commit is contained in:
Miguel Paris 2020-04-01 19:43:51 +02:00 committed by GStreamer Merge Bot
parent ed71e262b0
commit 45a1070203

View file

@ -1393,11 +1393,11 @@ unprotect:
/* success! */ /* success! */
break; break;
case srtp_err_status_replay_fail: case srtp_err_status_replay_fail:
GST_INFO_OBJECT (filter, GST_DEBUG_OBJECT (filter,
"Dropping replayed packet, probably retransmission"); "Dropping replayed packet, probably retransmission");
goto err; goto err;
case srtp_err_status_replay_old: case srtp_err_status_replay_old:
GST_INFO_OBJECT (filter, GST_DEBUG_OBJECT (filter,
"Dropping replayed old packet, probably retransmission"); "Dropping replayed old packet, probably retransmission");
goto err; goto err;
case srtp_err_status_key_expired:{ case srtp_err_status_key_expired:{