diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-11-02 03:13:44 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-11-02 03:13:44 +0000 |
commit | 67b1741dbb60ea480e1a326fbec6141d98932d78 (patch) | |
tree | 2753156fdf22b4b6e7738b0e0c0202b9c531fdd3 | |
parent | c8469929332d412e87e3a1826cbb304e4f92af36 (diff) | |
download | xine-lib-67b1741dbb60ea480e1a326fbec6141d98932d78.tar.gz xine-lib-67b1741dbb60ea480e1a326fbec6141d98932d78.tar.bz2 |
Less verbosity.
CVS patchset: 3138
CVS date: 2002/11/02 03:13:44
-rw-r--r-- | src/input/input_dvd.c | 9 | ||||
-rw-r--r-- | src/xine-utils/memcpy.c | 4 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index d6f058588..887ee62f3 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.110 2002/11/01 17:51:57 mroi Exp $ + * $Id: input_dvd.c,v 1.111 2002/11/02 03:13:44 f1rmb Exp $ * */ @@ -1566,8 +1566,10 @@ static void *init_class (xine_t *xine, void *data) { void *dvdcss; trace_print("Called\n"); +#ifdef INPUT_DEBUG printf("input_dvd.c: init_class called.\n"); printf("input_dvd.c: config = %p\n", config); +#endif this = (dvd_input_class_t *) malloc (sizeof (dvd_input_class_t)); @@ -1662,13 +1664,18 @@ static void *init_class (xine_t *xine, void *data) { #ifdef __sun check_solaris_vold_device(this); #endif +#ifdef INPUT_DEBUG printf("input_dvd.c: init_class finished.\n"); +#endif return this; } /* * $Log: input_dvd.c,v $ + * Revision 1.111 2002/11/02 03:13:44 f1rmb + * Less verbosity. + * * Revision 1.110 2002/11/01 17:51:57 mroi * be less strict with MRL syntax, people are used to :// * diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index a51bfa472..db47e95c4 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -412,7 +412,9 @@ static void update_fast_memcpy(void *this_gen, xine_cfg_entry_t *entry) { if (method != 0 && (config_flags & memcpy_method[method].cpu_require) == memcpy_method[method].cpu_require ) { +#ifdef LOG printf("xine: using %s\n", memcpy_method[method].name ); +#endif xine_fast_memcpy = memcpy_method[method].function; return; } else { @@ -449,7 +451,9 @@ void xine_probe_fast_memcpy(config_values_t *config) if( best != 0 && (config_flags & memcpy_method[best].cpu_require) == memcpy_method[best].cpu_require ) { +#ifdef LOG printf("xine: using %s\n", memcpy_method[best].name ); +#endif xine_fast_memcpy = memcpy_method[best].function; return; } |