Fix local NDEBUG define

The struct definition and the implementation did not use the same NDEBUG
constant.
This commit is contained in:
Romain Vimont
2024-09-11 11:26:07 +02:00
parent 903a5aaaf5
commit 33a8c39beb
2 changed files with 3 additions and 3 deletions

View File

@@ -12,12 +12,14 @@
#include "util/tick.h"
#include "util/vecdeque.h"
#define SC_BUFFERING_NDEBUG // comment to debug
// forward declarations
typedef struct AVFrame AVFrame;
struct sc_delayed_frame {
AVFrame *frame;
#ifndef NDEBUG
#ifndef SC_BUFFERING_NDEBUG
sc_tick push_date;
#endif
};