Commit 7423c2bd authored by Thomas Guillem's avatar Thomas Guillem Committed by Jean-Baptiste Kempf

android_window: add logs

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 285a0859
...@@ -731,11 +731,12 @@ static picture_pool_t *PoolAlloc(vout_display_t *vd, unsigned requested_count) ...@@ -731,11 +731,12 @@ static picture_pool_t *PoolAlloc(vout_display_t *vd, unsigned requested_count)
picture_t **pp_pics = NULL; picture_t **pp_pics = NULL;
unsigned int i = 0; unsigned int i = 0;
msg_Dbg(vd, "PoolAlloc: request %d frames", requested_count);
if (SetupWindowSurface(sys, requested_count) != 0) if (SetupWindowSurface(sys, requested_count) != 0)
goto error; goto error;
requested_count = AndroidWindow_GetPicCount(sys, sys->p_window); requested_count = AndroidWindow_GetPicCount(sys, sys->p_window);
msg_Dbg(vd, "PoolAlloc: request %d frames", requested_count); msg_Dbg(vd, "PoolAlloc: got %d frames", requested_count);
UpdateWindowSize(&sys->p_window->fmt, sys->p_window->b_use_priv); UpdateWindowSize(&sys->p_window->fmt, sys->p_window->b_use_priv);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment