mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
19 lines
350 B
C
19 lines
350 B
C
|
#pragma once
|
||
|
/* this parser is meant for retrieving duration */
|
||
|
#include "read.h"
|
||
|
#include "avi_header.h"
|
||
|
#include "avi_reader.h"
|
||
|
#include "ParserBase.h"
|
||
|
|
||
|
namespace nsavi
|
||
|
{
|
||
|
class Duration : public ParserBase
|
||
|
{
|
||
|
public:
|
||
|
Duration(nsavi::avi_reader *_reader);
|
||
|
int GetDuration(int *time_ms);
|
||
|
int GetHeaderList(HeaderList *header_list);
|
||
|
|
||
|
};
|
||
|
};
|