File indexing completed on 2024-06-16 04:38:30

0001 /*
0002     SPDX-FileCopyrightText: 2003 Fabrice Bellard
0003     SPDX-FileCopyrightText: 2020-2022 Mladen Milinkovic <max@smoothware.net>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef SUBTITLEDECODER_H
0009 #define SUBTITLEDECODER_H
0010 
0011 #include "videoplayer/backend/decoder.h"
0012 
0013 namespace SubtitleComposer {
0014 class SubtitleDecoder : public Decoder
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     SubtitleDecoder(QObject *parent = nullptr);
0020 
0021 private:
0022     void run() override;
0023 };
0024 }
0025 
0026 #endif // SUBTITLEDECODER_H