summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend_svr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend_svr.c b/frontend_svr.c
index 22de874d..665a8b30 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.97 2011-01-21 14:10:22 phintuka Exp $
+ * $Id: frontend_svr.c,v 1.98 2011-01-21 14:22:37 phintuka Exp $
*
*/
@@ -269,7 +269,7 @@ static int write_osd_command(cxSocket& s, osd_command_t *cmd)
(ssize_t)(sizeof(xine_clut_t) * ntohl(cmd->colors)) +
(ssize_t)(ntohl(cmd->datalen));
- if(max > 0 && max < MIN(size, 32768)) {
+ if(max > 0 && max < MIN(size, 1024)) {
/* #warning TODO: buffer latest failed OSD and retry
-> skipped OSDs can be left out but
latest will be always delivered */