Module: wine Branch: master Commit: 1862c38f7d8699553470b37b3c4c7c8160626ea0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1862c38f7d8699553470b37b3c...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Thu Sep 17 15:58:23 2015 +0800
mciavi32: Make a debug message more clear.
---
dlls/mciavi32/mmoutput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mciavi32/mmoutput.c b/dlls/mciavi32/mmoutput.c index 5d4e092..3f3bc53 100644 --- a/dlls/mciavi32/mmoutput.c +++ b/dlls/mciavi32/mmoutput.c @@ -398,8 +398,8 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma) mmioAscend(wma->hFile, &mmckInfo, 0); } if (alb.numVideoFrames != wma->dwPlayableVideoFrames) { - WARN("Found %d video frames (/%d), reducing playable frames\n", - alb.numVideoFrames, wma->dwPlayableVideoFrames); + WARN("AVI header says %d frames, we found %d video frames, reducing playable frames\n", + wma->dwPlayableVideoFrames, alb.numVideoFrames); wma->dwPlayableVideoFrames = alb.numVideoFrames; } wma->dwPlayableAudioBlocks = alb.numAudioBlocks;