From 075ad393d0b0e701d9c5763fb02181f484add9de Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 21 Jun 2023 20:35:19 +0200 Subject: [PATCH] Moved a #define in VideoFFmpegComponent --- es-core/src/components/VideoFFmpegComponent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-core/src/components/VideoFFmpegComponent.cpp b/es-core/src/components/VideoFFmpegComponent.cpp index 6e7eaba19..b13176128 100644 --- a/es-core/src/components/VideoFFmpegComponent.cpp +++ b/es-core/src/components/VideoFFmpegComponent.cpp @@ -6,8 +6,6 @@ // Video player based on FFmpeg. // -#define DEBUG_VIDEO false - #include "components/VideoFFmpegComponent.h" #include "AudioManager.h" @@ -21,6 +19,8 @@ #include #include +#define DEBUG_VIDEO false + #if LIBAVUTIL_VERSION_MAJOR >= 58 || \ (LIBAVUTIL_VERSION_MAJOR >= 57 && LIBAVUTIL_VERSION_MINOR >= 28) // FFmpeg 5.1 and above.