Skip to content

Commit

Permalink
add mandatory namespace for the MatroskaProfile class
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Feb 26, 2024
1 parent 9208725 commit 2b4a0ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion matroska/KaxDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ class MATROSKA_DLL_API MatroskaProfile : public libebml::EbmlDocVersion
{
public:
constexpr MatroskaProfile(bool webm, bool divx, version_type min, version_type max = ANY_VERSION)
:EbmlDocVersion(min, max)
:EbmlDocVersion(Namespace, min, max)
,InWebM(webm)
,InDivX(divx)
{}

static constexpr std::string_view Namespace{"matroska"};
const bool InWebM;
const bool InDivX;
};
Expand Down

0 comments on commit 2b4a0ca

Please sign in to comment.