summaryrefslogtreecommitdiffstats
path: root/loader/dshow
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-11 01:38:57 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-11 01:38:57 +0000
commitb8c86c7b34625b924ee155941b78220b56dcb193 (patch)
treeeacaa308d994399a030f8aaaeda47fe250835e48 /loader/dshow
parentbfa6c4f83ad0829a946b65b1560597df8790388e (diff)
downloadmpv-b8c86c7b34625b924ee155941b78220b56dcb193.tar.bz2
mpv-b8c86c7b34625b924ee155941b78220b56dcb193.tar.xz
less, and more informal printfs
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@341 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dshow')
-rw-r--r--loader/dshow/DS_Filter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/dshow/DS_Filter.c b/loader/dshow/DS_Filter.c
index 02a5832e33..483c3a539a 100644
--- a/loader/dshow/DS_Filter.c
+++ b/loader/dshow/DS_Filter.c
@@ -54,13 +54,13 @@ void DS_Filter::Create(string dllname, const GUID* id, AM_MEDIA_TYPE* in_fmt, AM
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 @@ void DS_Filter::Create(string dllname, const GUID* id, AM_MEDIA_TYPE* in_fmt, AM
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++)
{