diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-26 20:30:36 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-26 20:30:36 +0000 |
commit | 5bd1d46f508925bd4f3e0720c327d522bbcf0ed5 (patch) | |
tree | b33fa4b59b483c1cdcbbc00f96f0e578d3817c67 /src | |
parent | 3050d97eb83cfdfb4d04a51231acba47e6addf1c (diff) | |
download | xine-lib-5bd1d46f508925bd4f3e0720c327d522bbcf0ed5.tar.gz xine-lib-5bd1d46f508925bd4f3e0720c327d522bbcf0ed5.tar.bz2 |
provide new video out properties
CVS patchset: 5797
CVS date: 2003/11/26 20:30:36
Diffstat (limited to 'src')
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index d487753fb..5f559d537 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_dxr3.c,v 1.91 2003/11/11 18:44:53 f1rmb Exp $ + * $Id: video_out_dxr3.c,v 1.92 2003/11/26 20:30:36 mroi Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -983,6 +983,10 @@ static int dxr3_get_property(vo_driver_t *this_gen, int property) case VO_PROP_ZOOM_Y: case VO_PROP_TVMODE: return 0; + case VO_PROP_WINDOW_WIDTH: + return this->scale.gui_width; + case VO_PROP_WINDOW_HEIGHT: + return this->scale.gui_height; } printf("video_out_dxr3: property %d not implemented.\n", property); return 0; |