mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 10:45:45 -04:00
Initial community commit
This commit is contained in:
24
Src/nsavi/metadata.h
Normal file
24
Src/nsavi/metadata.h
Normal file
@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
/* this parser is meant for retrieving metadata */
|
||||
#include "read.h"
|
||||
#include "avi_header.h"
|
||||
#include "avi_reader.h"
|
||||
#include "info.h"
|
||||
#include "ParserBase.h"
|
||||
|
||||
namespace nsavi
|
||||
{
|
||||
class Metadata : public ParserBase
|
||||
{
|
||||
public:
|
||||
Metadata(nsavi::avi_reader *_reader);
|
||||
int GetDuration(int *time_ms);
|
||||
int GetHeaderList(HeaderList *header_list);
|
||||
int GetInfo(Info **info);
|
||||
|
||||
private:
|
||||
/* INFO */
|
||||
Info *info;
|
||||
ParseState info_found;
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user