blob: 23baecc64cd8a3e0c1d1a3808f6ef7a06e12324f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "DVDDemuxSPU.h"
#include "DVDMessageQueue.h"
#include "DVDOverlayContainer.h"
#include "DVDStreamInfo.h"
#include "DVDSubtitles/DVDFactorySubtitle.h"
#include "IVideoPlayer.h"
class CDVDInputStream;
class CDVDSubtitleStream;
class CDVDSubtitleParser;
class CDVDInputStreamNavigator;
class CDVDOverlayCodec;
class CVideoPlayerSubtitle : public IDVDStreamPlayer
{
public:
CVideoPlayerSubtitle(CDVDOverlayContainer* pOverlayContainer, CProcessInfo &processInfo);
~CVideoPlayerSubtitle() override;
void Process(double pts, double offset);
void Flush();
void FindSubtitles(const char* strFilename);
int GetSubtitleCount();
void UpdateOverlayInfo(const std::shared_ptr<CDVDInputStreamNavigator>& pStream, int iAction)
{
m_pOverlayContainer->UpdateOverlayInfo(pStream, &m_dvdspus, iAction);
}
bool AcceptsData() const override;
void SendMessage(std::shared_ptr<CDVDMsg> pMsg, int priority = 0) override;
void FlushMessages() override {}
bool OpenStream(CDVDStreamInfo hints) override { return OpenStream(hints, hints.filename); }
bool OpenStream(CDVDStreamInfo &hints, std::string& filename);
void CloseStream(bool bWaitForBuffers) override;
bool IsInited() const override { return true; }
bool IsStalled() const override { return m_pOverlayContainer->GetSize() == 0; }
private:
CDVDOverlayContainer* m_pOverlayContainer;
std::unique_ptr<CDVDSubtitleParser> m_pSubtitleFileParser;
std::unique_ptr<CDVDOverlayCodec> m_pOverlayCodec;
CDVDDemuxSPU m_dvdspus;
CDVDStreamInfo m_streaminfo;
double m_lastPts;
CCriticalSection m_section;
};
//typedef struct SubtitleInfo
//{
//
//} SubtitleInfo;
|