Enable FEC validation mode on debug builds

This commit is contained in:
Cameron Gutman 2020-05-02 16:56:13 -07:00
parent 719f690e56
commit f911d974c9

View File

@ -2,9 +2,12 @@
#include "RtpFecQueue.h"
#include "rs.h"
// Uncomment to enable FEC validation mode with a synthetic drop
// and recovered packet checks vs the original input.
//#define FEC_VALIDATION_MODE
#ifdef LC_DEBUG
// This enables FEC validation mode with a synthetic drop
// and recovered packet checks vs the original input. It
// is on by default for debug builds.
#define FEC_VALIDATION_MODE
#endif
void RtpfInitializeQueue(PRTP_FEC_QUEUE queue) {
reed_solomon_init();