aboutsummaryrefslogtreecommitdiff
path: root/Src/libvp6/include/Rvd.hpp
blob: 078d6e324626f6d87384ce1cdefdbe5e9d46d3aa (plain) (blame)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#ifndef RVD_HPP
#define RVD_HPP

#pragma warning(disable:4786)

#include "FourCC.hpp"
//#include <io.h>
#include <windows.h>
#include <exception>
#include <cstdlib>
#include <cstddef>
#include <string>
#include <map>

namespace Rvd
{
    class FileError : public exception
    {
    public:
        explicit FileError(const char*);
        explicit FileError(DWORD);
        const char* what() const;
    private:
        std::string message;        
    };

    bool nameIsOK(const char* name);

    enum Format { rgb24, rgb32, yuv12 };
    const char* asStr(Format f);

    struct Header
    {
        FourCC code;
        __int32 width;
        __int32 height;
        __int32 blockSize;
        FourCC compression;
        __int32 unknown;  //frame count?
        __int32 rate;
        __int32 scale;
        __int8 pad[480];
    };

    typedef unsigned __int64 size_type;

    size_type estimatedFileSize(
        int width,
        int height,
        Format format,
        int frameCount);


    class File
    {
    public:

        enum mode_t {in, out, inout};

        File();
        File(const char* name, mode_t mode);

        ~File();

        void open(const char* name, mode_t mode, DWORD flags = 0);
        void close();
        
        void setFormat(Format);
        
        void setWidth(int w);
        void setHeight(int h);

        void setRate(int rate);
        void setScale(int scale);

        void reset(int frameNum) const;
        void advance(int count) const;

        void read(void* frame) const;
        void write(const void* frame);

        void writeHeader();

        bool isOpen() const;
        bool eof() const;

        mode_t mode() const;
        const char* name() const;

        int frameNum() const;

        int frameCount() const;
        bool frameCountIsOK() const;

        Format format() const;
        const FourCC compression() const;

        int width() const;
        int height() const;

        int rate() const;
        int scale() const;

        size_t frameSize() const;
        size_t paddedFrameSize() const;

    private:

        File& operator=(const File&);
        File(const File&);

        //int file;
        HANDLE m_handle;

        mutable int frameNum_;
        int frameCount_;
        bool frameCountIsOK_;
        char name_[_MAX_PATH];
        mode_t mode_;
 
        Header* const m_header;
        Format format_;
        size_t frameSize_;
        size_t paddedFrameSize_;
        size_t paddingSize_;

        bool unbuffered;
    };


    class MappedFile
    {
    public:

        MappedFile();
        MappedFile(const char* name);

        ~MappedFile();

        void open(const char* name);
        void close();

        bool isOpen() const;
        const char* name() const;

        int frameCount() const;

        Format format() const;

        int width() const;
        int height() const;

        int rate() const;
        int scale() const;

        size_t frameSize() const;

        void* map(int frameNum) const;

        void unmap(int frameNum) const;
        void unmap() const;

        bool isMapped(int frameNum) const;

    private:

        MappedFile(const MappedFile&);
        MappedFile& operator=(const MappedFile&);

        void init();

        Header header;
        Format m_format;
        size_t m_frameSize;
        size_t m_paddedFrameSize;

        std::string m_name;

        HANDLE file;
        HANDLE mapping;

        DWORD allocationGranularity;

        int m_frameCount;

        struct ViewInfo
        {
            void* view;
            void* frame;
        };

        typedef std::map<int, ViewInfo> Views;
        mutable Views views;

    };
}

#endif