Skip to content

Commit

Permalink
keep track of which element are supported in DivX or not
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jan 14, 2024
1 parent 974210b commit c3a9239
Show file tree
Hide file tree
Showing 2 changed files with 154 additions and 151 deletions.
4 changes: 3 additions & 1 deletion matroska/KaxDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ namespace libmatroska {
class MATROSKA_DLL_API MatroskaProfile : public libebml::EbmlDocVersion
{
public:
constexpr MatroskaProfile(bool webm, version_type min, version_type max = ANY_VERSION)
constexpr MatroskaProfile(bool webm, bool divx, version_type min, version_type max = ANY_VERSION)
:EbmlDocVersion(min, max)
,InWebM(webm)
,InDivX(divx)
{}

const bool InWebM;
const bool InDivX;
};

}
Expand Down
Loading

0 comments on commit c3a9239

Please sign in to comment.