avcodec/tableprint_vlc: Unbreak hardcoded tables

Forgotten in d8ffec5bf9.
Fixes issue #21102.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-12-04 18:42:02 +01:00
parent 1f30ff30fb
commit 1d47ae65bf

View File

@@ -28,7 +28,7 @@
#define ff_dlog(a, ...) while(0) #define ff_dlog(a, ...) while(0)
#define ff_tlog(a, ...) while(0) #define ff_tlog(a, ...) while(0)
#define AVUTIL_MEM_H #define AVUTIL_MEM_H
#define av_malloc(s) NULL #define av_mallocz(s) NULL
#define av_malloc_array(a, b) NULL #define av_malloc_array(a, b) NULL
#define av_realloc_f(p, o, n) NULL #define av_realloc_f(p, o, n) NULL
#define av_free(p) while(0) #define av_free(p) while(0)