[svn r568] Solves problem with the set_timeout call. trunk
authorrosfran
Tue Apr 17 21:48:00 2007 +0100 (2007-04-17)
branchtrunk
changeset 563bfe33d404df5
parent 562 ff0d0ede90de
child 564 1b897f699097
[svn r568] Solves problem with the set_timeout call.
gmyth/src/gmyth_common.c
gmyth/src/gmyth_common.h
gmyth/src/gmyth_livetv.c
     1.1 --- a/gmyth/src/gmyth_common.c	Tue Apr 17 21:33:01 2007 +0100
     1.2 +++ b/gmyth/src/gmyth_common.c	Tue Apr 17 21:48:00 2007 +0100
     1.3 @@ -69,7 +69,6 @@
     1.4      g_list_free (list);
     1.5  }
     1.6  
     1.7 -#ifdef GMYTH_USE_DEBUG
     1.8  /**
     1.9   * Prints the channel info to the standard output. The gmyth debug must be enabled.
    1.10   * @param channel_info the GMythChannelInfo instance
    1.11 @@ -106,7 +105,6 @@
    1.12  	        program_info->pathname ? program_info->pathname->str : NULL,
    1.13  	        program_info->filesize );
    1.14  }
    1.15 -#endif
    1.16  
    1.17  static void 
    1.18  free_channel_data (gpointer data, gpointer user_data)
     2.1 --- a/gmyth/src/gmyth_common.h	Tue Apr 17 21:33:01 2007 +0100
     2.2 +++ b/gmyth/src/gmyth_common.h	Tue Apr 17 21:48:00 2007 +0100
     2.3 @@ -54,10 +54,8 @@
     2.4  void gmyth_free_channel_list(GList *list);
     2.5  void gmyth_free_program_list(GList *list);
     2.6  
     2.7 -#ifdef GMYTH_USE_DEBUG
     2.8  void gmyth_channel_info_print (GMythChannelInfo *channel_info);
     2.9  void gmyth_program_info_print (GMythProgramInfo *program_info);
    2.10 -#endif
    2.11  
    2.12  G_END_DECLS
    2.13  
     3.1 --- a/gmyth/src/gmyth_livetv.c	Tue Apr 17 21:33:01 2007 +0100
     3.2 +++ b/gmyth/src/gmyth_livetv.c	Tue Apr 17 21:48:00 2007 +0100
     3.3 @@ -787,7 +787,7 @@
     3.4      else
     3.5      {
     3.6          livetv->file = GMYTH_FILE( gmyth_file_transfer_new( livetv->backend_info ) );
     3.7 -        gmyth_file_transfer_settimeout( GMYTH_FILE_TRANSFER(livetv->file), TRUE );
     3.8 +        //gmyth_file_transfer_settimeout( GMYTH_FILE_TRANSFER(livetv->file), TRUE );
     3.9      }
    3.10  
    3.11      if ( NULL == livetv->file )