summaryrefslogtreecommitdiffstats
path: root/tests/auto/qvideosurfaceformat
Commit message (Collapse)AuthorAgeFilesLines
* Change the frame rate property to a qreal from a QPair<int,int> rationalAndrew den Exter2009-10-151-26/+13
| | | | | | | | | While a rational number is a common way to represent a frame rate, QPair<int, int> isn't a proper numeric type meaning it can't be used as anything more than an identifer for an exact frame rate without being converted to a real, or extending it to a proper rational type. Rev by: Justin McPherson
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Integrate QAbstractVideoSurface API.Andrew den Exter2009-08-242-0/+750
This introduces a QAbstractVideoSurface interface for implementing arbitrary video outputs, and a QVideoFrame type. Also included is the QVideoSurfaceFormat class which is used to configure the input to a video surface, and the QAbstractVideoBuffer class which allows QVideoFrames to be constructed from non-native frame types. Reviewed-by: Dmytro Poplavskiy