diff options
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) { |
