Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
18
Src/nsavi/duration.h
Normal file
18
Src/nsavi/duration.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#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);
|
||||
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue