diff loader/dshow/DS_Filter.c @ 340:1f7c824033fb

less, and more informal printfs
author arpi_esp
date Wed, 11 Apr 2001 01:38:57 +0000
parents 1c3029be6713
children ac9bfa4a1005
line wrap: on
line diff
--- a/loader/dshow/DS_Filter.c	Wed Apr 11 00:47:05 2001 +0000
+++ b/loader/dshow/DS_Filter.c	Wed Apr 11 01:38:57 2001 +0000
@@ -54,13 +54,13 @@
 
              setup_FS_Segment();
 
-            printf("Calling factory->vt->CreateInstance()\n");
+//            printf("Calling factory->vt->CreateInstance()\n");
             result=factory->vt->CreateInstance(factory, 0, &IID_IUnknown, (void**)&object);
-            printf("Calling factory->vt->Release()\n");
+//            printf("Calling factory->vt->Release()\n");
 	
 //	result=factory->vt->CreateInstance(factory, 0, &IID_IUnknown, (void**)&object);
 
-        printf("CreateInstance ok %x\n",result);
+//        printf("CreateInstance ok %x\n",result);
 
 	factory->vt->Release((IUnknown*)factory);
 	if(result || (!object)) throw FATAL("Class factory failure");
@@ -77,7 +77,7 @@
 	ULONG fetched;
 	enum_pins->vt->Reset(enum_pins);
 	result=enum_pins->vt->Next(enum_pins, (ULONG)256, (IPin**)array, &fetched);
-	printf("Pins enumeration returned %d pins, error is %x\n", fetched, result);
+//	printf("Pins enumeration returned %d pins, error is %x\n", fetched, result);
 	
 	for(int i=0; i<fetched; i++)
 	{