| 12345678910111213141516171819202122 |
- #ifndef AVPLAYER2_START_PLAY_THREAD_H
- #define AVPLAYER2_START_PLAY_THREAD_H
- #pragma once
- #include "ThreadBase.h"
- class AudioPlayThread;
- class VideoStateData;
- class StartPlayThread : public ThreadBase
- {
- public:
- explicit StartPlayThread(AudioPlayThread* audioPlayThread, VideoStateData* videoStateData);
- ~StartPlayThread();
- protected:
- void run() override;
- AudioPlayThread* m_audioPlayThread;
- VideoStateData* m_videoStateData;
- };
- #endif // AVPLAYER2_START_PLAY_THREAD_H
|