From 8324f15d939c5371e09ac844b58eaabee4b8a6f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Stoj=C5=A1in?= Date: Wed, 21 Aug 2024 23:42:18 +0200 Subject: [PATCH] Enable v2 format --- source/libevp/evp.cpp | 3 ++- source/libevp/format/supported_formats.hpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/source/libevp/evp.cpp b/source/libevp/evp.cpp index 556e78e..ac4c065 100644 --- a/source/libevp/evp.cpp +++ b/source/libevp/evp.cpp @@ -348,7 +348,8 @@ evp_result determine_format(fstream_read& stream, std::shared_ptr supported_formats[] = { - static_pointer_cast(std::make_shared()) + static_pointer_cast(std::make_shared()), + static_pointer_cast(std::make_shared()), }; for (std::shared_ptr supported_format : supported_formats) { diff --git a/source/libevp/format/supported_formats.hpp b/source/libevp/format/supported_formats.hpp index e5b5e70..f085de7 100644 --- a/source/libevp/format/supported_formats.hpp +++ b/source/libevp/format/supported_formats.hpp @@ -1,3 +1,4 @@ #pragma once #include "libevp/format/format_v1.hpp" +#include "libevp/format/format_v2.hpp"