mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 16:55:46 -04:00
Initial community commit
This commit is contained in:
18
Src/nsavi/info.h
Normal file
18
Src/nsavi/info.h
Normal file
@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include "avi_reader.h"
|
||||
#include <map>
|
||||
|
||||
namespace nsavi
|
||||
{
|
||||
typedef std::map<uint32_t, const char*> InfoMap;
|
||||
class Info : public InfoMap
|
||||
{
|
||||
public:
|
||||
Info();
|
||||
~Info();
|
||||
int Read(avi_reader* reader, uint32_t data_len);
|
||||
const char* GetMetadata(uint32_t id);
|
||||
|
||||
void Set(uint32_t chunk_id, const char* data);
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user