refactor: capitalize Input classes, rename srt to subrip in source as well

Co-authored-by: Thulinma <jaron@vietors.com>
This commit is contained in:
Eli Mallon 2024-05-15 23:46:13 +00:00 committed by Thulinma
parent dbafa808b8
commit e324c2ee58
40 changed files with 249 additions and 249 deletions

View file

@ -106,10 +106,10 @@ namespace Mist{
void playlistRunner(void *ptr);
class inputHLS : public Input{
class InputHLS : public Input{
public:
inputHLS(Util::Config *cfg);
~inputHLS();
InputHLS(Util::Config *cfg);
~InputHLS();
bool needsLock(){return !config->getBool("realtime");}
bool openStreamSource();
bool callback();
@ -187,4 +187,4 @@ namespace Mist{
};
}// namespace Mist
typedef Mist::inputHLS mistIn;
typedef Mist::InputHLS mistIn;