/usr/include/phonon/experimental/videoframe2.h is in libphononexperimental-dev 4:4.7.0really4.6.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* This file is part of the KDE project
Copyright (C) 2006,2008 Matthias Kretz <kretz@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), Nokia Corporation
(or its successors, if any) and the KDE Free Qt Foundation, which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PHONON_EXPERIMENTAL_VIDEOFRAME2_H
#define PHONON_EXPERIMENTAL_VIDEOFRAME2_H
#include "export.h"
#include "videodataoutput.h"
#include <QtGui/QImage>
#include <QtCore/QByteRef>
namespace Phonon
{
namespace Experimental
{
/**
* \brief A single video frame.
*
* This simple class contains the data of a frame and metadata describing
* how to interpret the data.
*
* \author Matthias Kretz <kretz@kde.org>
*/
struct VideoFrame2
{
/**
* Video frames come in a variety of formats. Depending on the format
* you have to process it differently to convert it for displaying or
* encoding.
*/
enum Format {
/**
* The frame is invalid.
*/
Format_Invalid = QImage::Format_Invalid,
/**
* The frame is stored in data0 using a 24-bit RGB format (8-8-8).
*/
Format_RGB888 = QImage::Format_RGB888,
Format_RGB32 = QImage::Format_RGB32,
/**
* The frame is stored in data0, data1 and data2 using data0 for the
* Y data, data1 for the Cb data and data2 for the Cr data.
*
* data1 and data2 contain one byte per for adjacent pixels whereas data0
* has one byte per pixel.
*/
Format_YCbCr420 = 0x10000,
Format_YV12 = Format_YCbCr420,
/**
* The frame is stored in data0 using a 32-bit Y0-Cb-Y1-Cr format (8-8-8-8).
*/
Format_YCbCr422 = 0x10001,
Format_YUY2 = Format_YCbCr422
};
/**
* The width of the video frame in number of pixels.
*/
int width;
/**
* The height of the video frame in number of pixels.
*/
int height;
/**
* The aspect ratio the frame should be displayed with.
*
* Common values are 4/3, 16/9.
*/
double aspectRatio;
/**
* Convenience function to calculate the aspect corrected width from the
* aspectRatio and height values.
*
* It is recommended to display video frames with aspectCorrectedWidth x height
*/
inline int aspectCorrectedWidth() const { return qRound(aspectRatio * height); }
/**
* Convenience function to calculate the aspect corrected height from the
* aspectRatio and width values.
*
* It is recommended to display video frames with aspectCorrectedWidth x height
*/
inline int aspectCorrectedHeight() const { return qRound(width / aspectRatio); }
/**
* Format of the frame.
*
* \see Format
*/
Format format;
/**
* RGB8, YUY2 or Y-plane
*
* If format is Format_RGB888 then the data contains each pixel as three
* consecutive bytes for red, green and blue.
*
* If format is Format_YUY2 the data contains every two pixels as four
* consecutive bytes for Y0, Cb, Y1, Cr
*
* If format is Format_YV12 the data contains one byte per pixel with
* the Y value.
*/
QByteArray data0;
/**
* YV12 U-plane
*
* If format is Format_YV12 the data contains one byte per four adjacent
* pixels with the Cb value.
*/
QByteArray data1;
/**
* YV12 V-plane
*
* If format is Format_YV12 the data contains one byte per four adjacent
* pixels with the Cr value.
*/
QByteArray data2;
inline QImage qImage() const
{
if (format == Format_RGB888) {
return QImage(reinterpret_cast<const uchar *>(data0.constData()),
width, height, QImage::Format_RGB888);
}
return QImage();
}
};
} // namespace Experimental
} // namespace Phonon
Q_DECLARE_METATYPE(Phonon::Experimental::VideoFrame2)
// vim: sw=4 ts=4 tw=80
#endif // PHONON_EXPERIMENTAL_VIDEOFRAME2_H
|