mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
14 lines
467 B
C++
14 lines
467 B
C++
#include "VisualSoundAtom.h"
|
|
|
|
|
|
void CRecordVisualSoundAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
m_eType = (TimeVisualElementEnum) StreamUtils::ReadDWORD ( pStream );
|
|
m_eRefType = (ElementTypeEnum) StreamUtils::ReadDWORD ( pStream );
|
|
m_nSoundIdRef = StreamUtils::ReadDWORD ( pStream );
|
|
m_nData1 = StreamUtils::ReadDWORD ( pStream );
|
|
m_nData2 = StreamUtils::ReadDWORD ( pStream );
|
|
}
|