From 6b57cdf01946250e2db6801007bbd44531cde4c7 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 10 Aug 2020 03:32:11 +0200 Subject: [PATCH] encoders/codecs: Add missing includes --- source/encoders/codecs/h264.hpp | 2 +- source/encoders/codecs/hevc.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/encoders/codecs/h264.hpp b/source/encoders/codecs/h264.hpp index cf8ae611..5fa649b4 100644 --- a/source/encoders/codecs/h264.hpp +++ b/source/encoders/codecs/h264.hpp @@ -20,7 +20,7 @@ // SOFTWARE. #pragma once -#include +#include "common.hpp" // Codec: H264 #define P_H264 "Codec.H264" diff --git a/source/encoders/codecs/hevc.hpp b/source/encoders/codecs/hevc.hpp index 4cec27e3..6fa8a0c9 100644 --- a/source/encoders/codecs/hevc.hpp +++ b/source/encoders/codecs/hevc.hpp @@ -20,7 +20,7 @@ // SOFTWARE. #pragma once -#include +#include "common.hpp" // Codec: HEVC #define P_HEVC "Codec.HEVC"