diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-10 13:12:20 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-10 13:12:20 +0000 |
commit | 519cd1f3de64e2992d3d7c2509f6c6e6ba575849 (patch) | |
tree | 320cef5ab43b180fa0a67326dfaab714f065a17f /src/xine-engine/video_out.h | |
parent | a83ab4380f72385d0c5022a17985513f6c86c537 (diff) | |
download | xine-lib-519cd1f3de64e2992d3d7c2509f6c6e6ba575849.tar.gz xine-lib-519cd1f3de64e2992d3d7c2509f6c6e6ba575849.tar.bz2 |
add width/height to vo_status
CVS patchset: 3853
CVS date: 2003/01/10 13:12:20
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 9c30d151a..a861732c5 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -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.h,v 1.77 2002/12/27 03:40:07 miguelfreitas Exp $ + * $Id: video_out.h,v 1.78 2003/01/10 13:12:21 miguelfreitas Exp $ * * * xine version of video_out.h @@ -174,7 +174,8 @@ struct xine_video_port_s { void (*flush) (xine_video_port_t *this); /* return true if port is opened for this stream */ - int (*status) (xine_video_port_t *this, xine_stream_t *stream); + int (*status) (xine_video_port_t *this, xine_stream_t *stream, + int *width, int *height); /* the driver in use */ vo_driver_t *driver; |