From db673d3553427df6783163b09b07179cfac6bd5a Mon Sep 17 00:00:00 2001 From: Raymond Yang Date: Wed, 1 Feb 2023 13:35:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3log=E5=85=A7=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ray650128/gstreamer_demo_app/ui/mainScreen/VideoView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/ray650128/gstreamer_demo_app/ui/mainScreen/VideoView.kt b/app/src/main/java/com/ray650128/gstreamer_demo_app/ui/mainScreen/VideoView.kt index 304a273..1c8d8a6 100644 --- a/app/src/main/java/com/ray650128/gstreamer_demo_app/ui/mainScreen/VideoView.kt +++ b/app/src/main/java/com/ray650128/gstreamer_demo_app/ui/mainScreen/VideoView.kt @@ -123,7 +123,7 @@ class VideoView : ConstraintLayout, SurfaceHolder.Callback, GstCallback { } override fun surfaceChanged(holder: SurfaceHolder, format: Int, width: Int, height: Int) { - Log.d("${TAG}_$tag", "Surface changed to format: $format, width: $width, height: $height") + Log.d("${TAG}_$tag", "Surface changed, format: $format, width: $width, height: $height") if (this::gstLibrary.isInitialized) { gstLibrary.setSurfaceHolder(holder) }