Replaced #pragma once with ifndef check

This commit is contained in:
2025-09-04 19:50:19 +03:00
parent 69e65f16b4
commit 407bbe2ed7

View File

@@ -1,5 +1,5 @@
#pragma once #ifndef CHARGE_VIDEO_BASE_H
#define CHARGE_VIDEO_BASE_H
extern "C" { extern "C" {
#include <libavcodec/avcodec.h> #include <libavcodec/avcodec.h>
#include <libavcodec/codec.h> #include <libavcodec/codec.h>
@@ -123,3 +123,4 @@ private:
Image2D loadImage(Containers::Array<char> data); Image2D loadImage(Containers::Array<char> data);
}; };
} // namespace ChargeVideo } // namespace ChargeVideo
#endif