~mterry/qtvideo-node/dont-install-tests

« back to all changes in this revision

Viewing changes to src/shadervideonode.h

  • Committer: Tarmac
  • Author(s): Guenter Schwann
  • Date: 2012-11-09 10:57:05 UTC
  • mfrom: (5.1.1 qtvideonode-plugin-tests)
  • Revision ID: tarmac-20121109105705-4i02o2phcmtfowde
* Spliting up code in separate files
* Add a unit test.

Approved by PS Jenkins bot, Michael Zanetti.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Guenter Schwann <guenter.schwann@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef SHADERVIDEONODE_H
 
21
#define SHADERVIDEONODE_H
 
22
 
 
23
#include <private/qsgvideonode_p.h>
 
24
 
 
25
class ShaderVideoMaterial;
 
26
 
 
27
class ShaderVideoNode : public QSGVideoNode
 
28
{
 
29
public:
 
30
    ShaderVideoNode(const QVideoSurfaceFormat &format);
 
31
 
 
32
    QVideoFrame::PixelFormat pixelFormat() const;
 
33
    void setCurrentFrame(const QVideoFrame &frame);
 
34
 
 
35
private:
 
36
    QVideoSurfaceFormat m_format;
 
37
    ShaderVideoMaterial *m_material;
 
38
};
 
39
 
 
40
#endif // SHADERVIDEONODE_H