diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2008-12-14 17:28:16 +0200 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2008-12-14 17:28:16 +0200 |
commit | a3ab9e8e4649601281f78949e56b92755ae1142a (patch) | |
tree | e31ee1ff4bafbfcf75c16259d9a64d18fea3bd51 /loader | |
parent | f01f7f6259badb2725be49af914d8db52e025cf6 (diff) | |
parent | bac1f05b4da4339b487e4e6ab972819142b3f13e (diff) |
Merge svn changes up to r28149
Diffstat (limited to 'loader')
-rw-r--r-- | loader/dmo/dmo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/loader/dmo/dmo.c b/loader/dmo/dmo.c index 3c5c748caf..ee6ac27f3c 100644 --- a/loader/dmo/dmo.c +++ b/loader/dmo/dmo.c @@ -117,9 +117,9 @@ DMO_Filter* DMO_FilterCreate(const char* dllname, const GUID* id, //VIDEOINFOHEADER* vi; memset(&dmo, 0, sizeof(dmo)); i = This->m_pMedia->vt->GetOutputType(This->m_pMedia, 0, 2, &dmo); - printf("GetOutputType %x \n", i); - printf("DMO 0x%x (%.4s) 0x%x (%.4s)\n" - //printf("DMO 0x%x 0x%x\n" + Debug printf("GetOutputType %x \n", i); + Debug printf("DMO 0x%x (%.4s) 0x%x (%.4s)\n" + //Debug printf("DMO 0x%x 0x%x\n" ":: fixszsamp:%d tempcomp:%d sampsz:%ld\n" ":: formtype: 0x%x\n" ":: unk %p cbform: %ld pbform:%p\n", @@ -135,7 +135,7 @@ DMO_Filter* DMO_FilterCreate(const char* dllname, const GUID* id, /* vi = (VIDEOINFOHEADER*) dmo.pbFormat; vi = (VIDEOINFOHEADER*) out_fmt->pbFormat; for (i = 0; i < out_fmt->cbFormat; i++) - printf("BYTE %d %02x %02x\n", i, ((uint8_t*)dmo.pbFormat)[i], ((uint8_t*)out_fmt->pbFormat)[i]); + Debug printf("BYTE %d %02x %02x\n", i, ((uint8_t*)dmo.pbFormat)[i], ((uint8_t*)out_fmt->pbFormat)[i]); */ } @@ -148,11 +148,11 @@ DMO_Filter* DMO_FilterCreate(const char* dllname, const GUID* id, inputs = outputs = 0; hr = This->m_pMedia->vt->GetOutputSizeInfo(This->m_pMedia, 0, &inputs, &outputs); - printf("GetOutput r=0x%lx size:%ld align:%ld\n", hr, inputs, outputs); + Debug printf("GetOutput r=0x%lx size:%ld align:%ld\n", hr, inputs, outputs); // This->m_pMedia->vt->AllocateStreamingResources(This->m_pMedia); hr = This->m_pMedia->vt->GetStreamCount(This->m_pMedia, &inputs, &outputs); - printf("StreamCount r=0x%lx %ld %ld\n", hr, inputs, outputs); + Debug printf("StreamCount r=0x%lx %ld %ld\n", hr, inputs, outputs); break; } |