mistserver/src/input/input_folder.h
Eli Mallon e324c2ee58 refactor: capitalize Input classes, rename srt to subrip in source as well
Co-authored-by: Thulinma <jaron@vietors.com>
2024-05-16 16:07:49 +02:00

18 lines
444 B
C++

#include "input.h"
#include <mist/dtsc.h>
namespace Mist{
class InputFolder : public Input{
public:
InputFolder(Util::Config *cfg);
int boot(int argc, char *argv[]);
protected:
bool checkArguments(){return false;};
bool needHeader(){return false;};
void getNext(size_t idx = INVALID_TRACK_ID){}
void seek(uint64_t time, size_t idx = INVALID_TRACK_ID){}
};
}// namespace Mist
typedef Mist::InputFolder mistIn;