diff options
author | phintuka <phintuka> | 2006-09-19 07:58:00 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-19 07:58:00 +0000 |
commit | 787946d10edc3d45f81cc6793215dfc9712901d3 (patch) | |
tree | 39ac0d857aa6fd81197ea32e115b6b7f8de20513 | |
parent | ef0f08e7fd5f6db679cb207cdb69518479a05084 (diff) | |
download | xineliboutput-787946d10edc3d45f81cc6793215dfc9712901d3.tar.gz xineliboutput-787946d10edc3d45f81cc6793215dfc9712901d3.tar.bz2 |
POST tvtime control message needs larger buffers
-rw-r--r-- | frontend.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.c,v 1.16 2006-09-06 17:57:45 phintuka Exp $ + * $Id: frontend.c,v 1.17 2006-09-19 07:58:00 phintuka Exp $ * */ @@ -442,7 +442,9 @@ bool cXinelibThread::LogoDisplay(void) extern const unsigned char v_mpg_vdrlogo[]; // vdrlogo_720x576.c extern const int v_mpg_vdrlogo_length; - +#ifdef STARTUP_IMAGE_FILE + // load or mmap ? +#endif bool r = Play_Mpeg2_ES(v_mpg_vdrlogo, v_mpg_vdrlogo_length, VIDEO_STREAM); for(int i=0; i<5 && !Flush(100); i++) ; @@ -482,7 +484,7 @@ int cXinelibThread::Xine_Control(const char *cmd, int64_t p1) int cXinelibThread::Xine_Control(const char *cmd, const char *p1) { - char buf[128]; + char buf[1024]; sprintf(buf, "%s %s", cmd, p1); return Xine_Control(buf); } @@ -540,7 +542,7 @@ int cXinelibThread::ConfigurePostprocessing(const char *deinterlace_method, int audio_surround, int speaker_type) { - char tmp[255]; + char tmp[1024]; int r = true; if(strcmp(deinterlace_method, "tvtime")) |