[vlc-commits] android_window: add logs

Thomas Guillem git at videolan.org
Wed Nov 19 14:01:21 CET 2014


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Nov 19 12:04:14 2014 +0100| [7423c2bdf72696a4fe859852c19cbc432627c1ca] | committer: Jean-Baptiste Kempf

android_window: add logs

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7423c2bdf72696a4fe859852c19cbc432627c1ca
---

 modules/video_output/android/android_window.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/video_output/android/android_window.c b/modules/video_output/android/android_window.c
index 8474840..4a667d4 100644
--- a/modules/video_output/android/android_window.c
+++ b/modules/video_output/android/android_window.c
@@ -731,11 +731,12 @@ static picture_pool_t *PoolAlloc(vout_display_t *vd, unsigned requested_count)
     picture_t **pp_pics = NULL;
     unsigned int i = 0;
 
+    msg_Dbg(vd, "PoolAlloc: request %d frames", requested_count);
     if (SetupWindowSurface(sys, requested_count) != 0)
         goto error;
 
     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);
 



More information about the vlc-commits mailing list