Fix warnings in directdrawsink and directsoundsrc

Fixes #617331
This commit is contained in:
Руслан Ижбулатов 2010-05-01 01:16:50 +04:00 committed by Benjamin Otte
parent 813e6b5809
commit baffaea6e8
2 changed files with 4 additions and 3 deletions

View file

@ -1486,6 +1486,7 @@ WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
break;
default:
button = 4;
action = NULL;
}
x = LOWORD (lParam);

View file

@ -329,7 +329,7 @@ dsound_open:
DWORD err = GetLastError ();
GST_ELEMENT_ERROR (dsoundsrc, RESOURCE, OPEN_READ,
("Unable to open dsound.dll"), (NULL));
g_print ("0x%x\n", HRESULT_FROM_WIN32 (err));
g_print ("0x%lx\n", HRESULT_FROM_WIN32 (err));
return FALSE;
}
}
@ -420,7 +420,7 @@ gst_directsound_src_prepare (GstAudioSrc * asrc, GstRingBufferSpec * spec)
spec->bytes_per_sample = (spec->width / 8) * spec->channels;
dsoundsrc->bytes_per_sample = spec->bytes_per_sample;
GST_DEBUG ("latency time: %llu - buffer time: %llu",
GST_DEBUG ("latency time: %" G_GUINT64_FORMAT " - buffer time: %" G_GUINT64_FORMAT,
spec->latency_time, spec->buffer_time);
/* Buffer-time should be allways more than 2*latency */
@ -446,7 +446,7 @@ gst_directsound_src_prepare (GstAudioSrc * asrc, GstRingBufferSpec * spec)
spec->segtotal = spec->width * (wfx.nAvgBytesPerSec / spec->segsize);
GST_DEBUG ("bytes/sec: %d, buffer size: %d, segsize: %d, segtotal: %d",
GST_DEBUG ("bytes/sec: %lu, buffer size: %d, segsize: %d, segtotal: %d",
wfx.nAvgBytesPerSec,
dsoundsrc->buffer_size, spec->segsize, spec->segtotal);