mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
directdrawsink: Fix warnings on 64 bit mingw-w64
gstdirectdrawsink.c:1561:24: error: assignment from incompatible pointer type gstdirectdrawsink.c:2028:3: error: format '%d' expects type 'int', but argument 8 has type 'size_t' https://bugzilla.gnome.org/show_bug.cgi?id=657522
This commit is contained in:
parent
debf4984df
commit
ac681a6efd
1 changed files with 2 additions and 2 deletions
|
@ -1416,7 +1416,7 @@ gst_directdraw_sink_setup_ddraw (GstDirectDrawSink * ddrawsink)
|
||||||
return bRet;
|
return bRet;
|
||||||
}
|
}
|
||||||
|
|
||||||
static long FAR PASCAL
|
static LRESULT FAR PASCAL
|
||||||
WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
switch (message) {
|
switch (message) {
|
||||||
|
@ -2026,7 +2026,7 @@ surface_pitch_bad:
|
||||||
GST_BUFFER_SIZE (surface) = size;
|
GST_BUFFER_SIZE (surface) = size;
|
||||||
surface->surface = NULL;
|
surface->surface = NULL;
|
||||||
GST_CAT_INFO_OBJECT (directdrawsink_debug, ddrawsink,
|
GST_CAT_INFO_OBJECT (directdrawsink_debug, ddrawsink,
|
||||||
"allocating a system memory buffer of %d bytes", size);
|
"allocating a system memory buffer of %" G_GSIZE_FORMAT " bytes", size);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue