From 7087ac34c891187a434be93dfc46869e95b11f28 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Mon, 14 Apr 2008 13:04:54 -0700 Subject: [PATCH] quartz: Set default window positions in the video renderer if none are set This fixes the interactive filtergraph test to display output --- dlls/quartz/avisplit.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/quartz/avisplit.c b/dlls/quartz/avisplit.c index f0779c7..cd3ce50 100644 --- a/dlls/quartz/avisplit.c +++ b/dlls/quartz/avisplit.c @@ -789,8 +789,9 @@ static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin) } else if (hr == S_OK && temp2 != chunkid) { - ERR("Faulty index or bug in handling: Wanted FOURCC: %s, Absolute FOURCC: %s (@ %u), Relative FOURCC: %s (@ %lld)\n", - debugstr_an((char *)&chunkid, 4), debugstr_an((char *)&temp, 4), offset, debugstr_an((char *)&temp2, 4), mov_pos + offset); + ERR("Faulty index or bug in handling: Wanted FOURCC: %s, Absolute FOURCC: %s (@ %u), Relative FOURCC: %s (@ %x%08x)\n", + debugstr_an((char *)&chunkid, 4), debugstr_an((char *)&temp, 4), offset, debugstr_an((char *)&temp2, 4), + (DWORD)( (mov_pos + offset) >> 32), (DWORD)(mov_pos + offset)); } else if (hr != S_OK) { -- 1.5.4.1