Improve padding of OggParameter

This commit is contained in:
Martchus 2018-08-29 22:31:30 +02:00
parent 60f1288e42
commit dcb89aeb62
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ struct TAG_PARSER_EXPORT OggParameter {
std::size_t firstSegmentIndex; std::size_t firstSegmentIndex;
std::size_t lastPageIndex; std::size_t lastPageIndex;
std::size_t lastSegmentIndex; std::size_t lastSegmentIndex;
bool lastMetaDataBlock;
GeneralMediaFormat streamFormat; GeneralMediaFormat streamFormat;
bool lastMetaDataBlock;
bool removed; bool removed;
}; };
@ -46,8 +46,8 @@ constexpr OggParameter::OggParameter()
, firstSegmentIndex(0) , firstSegmentIndex(0)
, lastPageIndex(0) , lastPageIndex(0)
, lastSegmentIndex(0) , lastSegmentIndex(0)
, lastMetaDataBlock(false)
, streamFormat(GeneralMediaFormat::Vorbis) , streamFormat(GeneralMediaFormat::Vorbis)
, lastMetaDataBlock(false)
, removed(false) , removed(false)
{ {
} }