[MPlayer-cvslog] r24781 - trunk/stream/tv.c
    voroshil 
    subversion at mplayerhq.hu
       
    Sun Oct 14 08:28:51 CEST 2007
    
    
  
Author: voroshil
Date: Sun Oct 14 08:28:51 2007
New Revision: 24781
Log:
8 bytes buffer is not enough for at least SECAM-DK.
Increase it to 20.
Modified:
   trunk/stream/tv.c
Modified: trunk/stream/tv.c
==============================================================================
--- trunk/stream/tv.c	(original)
+++ trunk/stream/tv.c	Sun Oct 14 08:28:51 2007
@@ -207,7 +207,7 @@ static int demux_tv_fill_buffer(demuxer_
 static int norm_from_string(tvi_handle_t *tvh, char* norm)
 {
     tvi_functions_t *funcs = tvh->functions;
-    char str[8];
+    char str[20];
     int ret;
 
     strncpy(str, norm, sizeof(str)-1);
    
    
More information about the MPlayer-cvslog
mailing list