Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MpegSplitterFile.h « MpegSplitter « parser « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84ff565348c2d3e1e8437e2d8a13bf971a1d176e (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
 * (C) 2003-2006 Gabest
 * (C) 2006-2013 see Authors.txt
 *
 * This file is part of MPC-HC.
 *
 * MPC-HC is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * MPC-HC is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#pragma once

#include <atlbase.h>
#include <atlcoll.h>
#include "../BaseSplitter/BaseSplitter.h"
#include "../../../DSUtil/GolombBuffer.h"

#define NO_SUBTITLE_PID     1          // Fake PID use for the "No subtitle" entry
#define NO_SUBTITLE_NAME    _T("No subtitle")

#define ISVALIDPID(pid) (pid >= 0x10 && pid < 0x1fff)

//#define MVC_SUPPORT

class CMpegSplitterFile : public CBaseSplitterFileEx
{
    CAtlMap<WORD, BYTE> m_pid2pes;
    CAtlMap<WORD, CMpegSplitterFile::avchdr> avch;
    bool m_bIsHdmv;
    bool m_init;

    HRESULT Init(IAsyncReader* pAsyncReader);

    void OnComplete(IAsyncReader* pAsyncReader);

public:
    CHdmvClipInfo& m_ClipInfo;
    CMpegSplitterFile(IAsyncReader* pAsyncReader, HRESULT& hr, bool bIsHdmv,
                      CHdmvClipInfo& ClipInfo, int guid_flag, bool ForcedSub,
                      int AC3CoreOnly, bool m_AlternativeDuration);

    REFERENCE_TIME NextPTS(DWORD TrackNum);

    CCritSec m_csProps;

    MPEG_TYPES m_type;

    REFERENCE_TIME m_rtMin, m_rtMax;
    __int64 m_posMin, m_posMax;
    REFERENCE_TIME m_rtPrec;
    bool m_bPTSWrap;
    int m_rate; // byte/sec

    int m_nVC1_GuidFlag, m_AC3CoreOnly;
    bool m_ForcedSub, m_AlternativeDuration;

    struct stream {
        CMpegSplitterFile* m_pFile;
        CMediaType mt;
        WORD pid;
        BYTE pesid, ps1id;
        struct stream()
            : m_pFile(0) {
            pid = pesid = ps1id = 0;
        }
        operator DWORD() const {
            return pid ? pid : ((pesid << 8) | ps1id);
        }
        bool operator == (const struct stream& s) const {
            return (DWORD) * this == (DWORD)s;
        }
    };

    enum { video, audio, subpic,
#if defined(MVC_SUPPORT)
           stereo,
#endif
           unknown
         };

    class CStreamList : public CAtlList<stream>
    {
    public:
        void Insert(stream& s, CMpegSplitterFile* _pFile) {
            s.m_pFile = _pFile;
            AddTail(s);
            if (GetCount() > 1) {
                for (size_t j = 0; j < GetCount(); j++) {
                    for (size_t i = 0; i < GetCount() - 1; i++) {
                        if (GetAt(FindIndex(i)) > GetAt(FindIndex(i + 1))) {
                            SwapElements(FindIndex(i), FindIndex(i + 1));
                        }
                    }
                }
            }
        }

        void Replace(stream& source, stream& dest, CMpegSplitterFile* _pFile) {
            source.m_pFile = _pFile;
            dest.m_pFile = _pFile;
            for (POSITION pos = GetHeadPosition(); pos; GetNext(pos)) {
                stream& s = GetAt(pos);
                if (source == s) {
                    SetAt(pos, dest);
                    return;
                }
            }
        }

        static CStringW ToString(int type) {
            return
                type == video ? L"Video" :
                type == audio ? L"Audio" :
                type == subpic ? L"Subtitle" :
#if defined(MVC_SUPPORT)
                type == stereo ? L"Stereo" :
#endif
                L"Unknown";
        }

        const stream* FindStream(int pid) {
            for (POSITION pos = GetHeadPosition(); pos; GetNext(pos)) {
                const stream& s = GetAt(pos);
                if (s.pid == pid) {
                    return &s;
                }
            }

            return NULL;
        }

    } m_streams[unknown];

    HRESULT SearchStreams(__int64 start, __int64 stop, IAsyncReader* pAsyncReader, BOOL CalcDuration = FALSE);
    DWORD AddStream(WORD pid, BYTE pesid, BYTE ps1id, DWORD len);
    void  AddHdmvPGStream(WORD pid, const char* language_code);
    CAtlList<stream>* GetMasterStream();
    bool IsHdmv() { return m_bIsHdmv; };

    struct program {
        WORD program_number;
        struct stream {
            WORD pid;
            PES_STREAM_TYPE type;

        };
        stream streams[64];
        struct program() {
            memset(this, 0, sizeof(*this));
        }

        BYTE ts_buffer[1024];
        WORD ts_len_cur, ts_len_packet;
    };

    CAtlMap<WORD, program> m_programs;

    void SearchPrograms(__int64 start, __int64 stop);
    void UpdatePrograms(const tshdr& h, bool UpdateLang = true);
    void UpdatePrograms(CGolombBuffer gb, WORD pid, bool UpdateLang = true);
    const program* FindProgram(WORD pid, int& iStream, const CHdmvClipInfo::Stream*& _pClipInfo);

    CAtlMap<DWORD, CString> m_pPMT_Lang;

    bool GetStreamType(WORD pid, PES_STREAM_TYPE& stream_type);
};