mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +00:00
tests: simple-encoder: fix build error
argument mismatch of gsize with 'long unsigned int' https://bugzilla.gnome.org/show_bug.cgi?id=762055
This commit is contained in:
parent
1f6d29641d
commit
ba701d5918
1 changed files with 2 additions and 1 deletions
|
@ -442,7 +442,8 @@ app_run (App * app)
|
|||
|
||||
app->read_frames++;
|
||||
id = gst_vaapi_surface_get_id (surface);
|
||||
g_debug ("input frame %d, surface id = %lu", app->read_frames, id);
|
||||
g_debug ("input frame %d, surface id = %" G_GSIZE_FORMAT, app->read_frames,
|
||||
id);
|
||||
|
||||
gst_vaapi_surface_proxy_unref (proxy);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue