diff options
Diffstat (limited to 'frontend_svr.c')
-rw-r--r-- | frontend_svr.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend_svr.c b/frontend_svr.c index 1b0295c2..d4e5fe67 100644 --- a/frontend_svr.c +++ b/frontend_svr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.c,v 1.50 2008-02-19 02:59:46 phintuka Exp $ + * $Id: frontend_svr.c,v 1.51 2008-03-11 15:57:57 phintuka Exp $ * */ @@ -352,6 +352,10 @@ void cXinelibServer::OsdCmd(void *cmd_gen) cmdnet.datalen = htonl(cmd->datalen); cmdnet.num_rle = htonl(cmd->num_rle); cmdnet.colors = htonl(cmd->colors); + cmdnet.dirty_area.x1 = htons(cmd->dirty_area.x1); + cmdnet.dirty_area.y1 = htons(cmd->dirty_area.y1); + cmdnet.dirty_area.x2 = htons(cmd->dirty_area.x2); + cmdnet.dirty_area.y2 = htons(cmd->dirty_area.y2); if(cmd->data) { cmdnet.raw_data = (uint8_t*)malloc(cmd->datalen); cmdnet.datalen = htonl( recompress_osd_net(cmdnet.raw_data, cmd->data, cmd->num_rle)); |