StreamInfo.cpp 217 B

123456789
  1. #include "main.h"
  2. #include "MP3Info.h"
  3. StreamInfo::StreamInfo(void *buffer) : ID3Info()
  4. {
  5. unsigned __int8 *header = (unsigned __int8 *)buffer;
  6. da_tag.Parse(header, &header[ID3_TAGHEADERSIZE]);
  7. GetID3V2Values();
  8. }