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/post.c | |
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/post.c')
-rw-r--r-- | src/xine-engine/post.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c index 806fd50be..4727304c7 100644 --- a/src/xine-engine/post.c +++ b/src/xine-engine/post.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: post.c,v 1.8 2003/01/02 12:05:19 mroi Exp $ + * $Id: post.c,v 1.9 2003/01/10 13:12:20 miguelfreitas Exp $ */ /* @@ -75,9 +75,10 @@ static void post_video_flush(xine_video_port_t *port_gen) { port->original_port->flush(port->original_port); } -static int post_video_status(xine_video_port_t *port_gen, xine_stream_t *stream) { +static int post_video_status(xine_video_port_t *port_gen, xine_stream_t *stream, + int *width, int *height) { post_video_port_t *port = (post_video_port_t *)port_gen; - return port->original_port->status(port->original_port, stream); + return port->original_port->status(port->original_port, stream, width, height); } post_video_port_t *post_intercept_video_port(post_plugin_t *post, xine_video_port_t *original) { |