Lumiera
0.pre.03
»edit your freedom«
|
#include "stage/output/xvdisplayer.hpp"
XvDisplayer is a class which is responsible for rendering a video image via XVideo.
Definition at line 62 of file xvdisplayer.hpp.
Public Member Functions | |
XvDisplayer (Gtk::Widget *drawing_area, int width, int height) | |
Constructor. More... | |
void | put (void *const image) |
Put an image of a given width and height with the expected input format (as indicated by the format method). More... | |
bool | usable () |
Indicates if this object can be used to render images on the running system. More... | |
Public Member Functions inherited from Displayer | |
virtual DisplayerInput | format () |
Indicates the format required by the abstract put method. More... | |
virtual int | preferredHeight () |
Expected height of input to put. More... | |
virtual int | preferredWidth () |
Expected width of input to put. More... | |
Private Attributes | |
Display * | display |
The display that video will be drawn into. | |
Gtk::Widget * | drawingArea |
The widget that video will be drawn into. More... | |
GC | gc |
The graphics context which will be used when rendering video. | |
bool | gotPort |
Specifies whether the object is currently attached to an XVideo port. More... | |
unsigned int | grabbedPort |
The current port being used. More... | |
XShmSegmentInfo | shmInfo |
Info about the shared memory segment. More... | |
Window | window |
The X11 window that video will be drawn into. | |
XvImage * | xvImage |
The shared memory image object which video will be written into. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from Displayer | |
static void | calculateVideoLayout (int widget_width, int widget_height, int image_width, int image_height, int &video_x, int &video_y, int &video_width, int &video_height) |
Calculates the coordinates for placing a video image inside a widget. More... | |
Protected Attributes inherited from Displayer | |
int | imageHeight |
int | imageWidth |
XvDisplayer | ( | Gtk::Widget * | drawing_area, |
int | width, | ||
int | height | ||
) |
Constructor.
drawing_area | The widget into which the video image will be drawn. This value must not be NULL. |
width | The width of the video image in pixels. This value must be greater than zero. |
height | The height of the video image in pixels. This value must be greater than zero. |
Definition at line 45 of file xvdisplayer.cpp.
|
virtual |
Put an image of a given width and height with the expected input format (as indicated by the format method).
[in] | image | The video image array to draw. |
Implements Displayer.
Definition at line 220 of file xvdisplayer.cpp.
|
virtual |
Indicates if this object can be used to render images on the running system.
Reimplemented from Displayer.
Definition at line 213 of file xvdisplayer.cpp.
References XvDisplayer::gotPort.
|
private |
Specifies whether the object is currently attached to an XVideo port.
Definition at line 96 of file xvdisplayer.hpp.
Referenced by XvDisplayer::usable().
|
private |
The current port being used.
Definition at line 102 of file xvdisplayer.hpp.
|
private |
The widget that video will be drawn into.
Definition at line 108 of file xvdisplayer.hpp.
|
private |
Info about the shared memory segment.
Definition at line 134 of file xvdisplayer.hpp.