/usr/include/ptclib/vsdl.h is in libpt-dev 2.10.11~dfsg-2.1.
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 | /*
* vsdl.h
*
* Classes to support video output via SDL
*
* Copyright (c) 1999-2000 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Open H323 Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): Derek J Smithies (derek@indranet.co.nz)
*
* $Revision: 27705 $
* $Author: rjongbloed $
* $Date: 2012-05-25 03:08:57 -0500 (Fri, 25 May 2012) $
*/
#ifndef PTLIB_VSDL_H
#define PTLIB_VSDL_H
#if P_SDL
#include <ptlib.h>
#include <ptlib/videoio.h>
/**Display data to the SDL screen.
*/
class PVideoOutputDevice_SDL : public PVideoOutputDevice
{
PCLASSINFO(PVideoOutputDevice_SDL, PVideoOutputDevice);
public:
/**Constructor. Does not make a window.
*/
PVideoOutputDevice_SDL();
/**Destructor. Closes window if necessary, (which initializes all variables)
*/
~PVideoOutputDevice_SDL();
/**Get a list of all of the devices available.
*/
virtual PStringArray GetDeviceNames() const;
/**Open the device given the device name.
*/
virtual PBoolean Open(
const PString & /*deviceName*/, ///< Device name to open
PBoolean /*startImmediate*/ = true ///< Immediately start device
);
/**Synonymous with the destructor.
*/
virtual PBoolean Close();
/**Global test function to determine if this video rendering
class is open.*/
virtual PBoolean IsOpen();
/**Set the colour format to be used.
Note that this function does not do any conversion. If it returns true
then the video device does the colour format in native mode.
To utilise an internal converter use the SetColourFormatConverter()
function.
Default behaviour sets the value of the colourFormat variable and then
returns true.
*/
virtual PBoolean SetColourFormat(
const PString & colourFormat ///< New colour format for device.
);
/**Set the frame size to be used.
Note that devices may not be able to produce the requested size, and
this function will fail. See SetFrameSizeConverter().
Default behaviour sets the frameWidth and frameHeight variables and
returns true.
*/
virtual PBoolean SetFrameSize(
unsigned width, ///< New width of frame
unsigned height ///< New height of frame
);
/**Get the maximum frame size in bytes.
Note a particular device may be able to provide variable length
frames (eg motion JPEG) so will be the maximum size of all frames.
*/
virtual PINDEX GetMaxFrameBytes();
/**Set a section of the output frame buffer.
*/
virtual PBoolean SetFrameData(
unsigned x,
unsigned y,
unsigned width,
unsigned height,
const BYTE * data,
PBoolean endFrame = true
);
protected:
struct SDL_Overlay * m_overlay;
PSyncPoint m_operationComplete;
unsigned m_x, m_y;
private:
PString GetTitle() const;
void UpdateContent();
void CreateOverlay(struct SDL_Surface * surface);
void FreeOverlay();
void PostEvent(unsigned codei, bool wait);
friend class PSDL_Window;
};
typedef PVideoOutputDevice_SDL PSDLVideoDevice; // Backward compatibility
#endif // P_SDL
#endif // PTLIB_VSDL_H
// End Of File ///////////////////////////////////////////////////////////////
|