summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/videosurface
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-09-20 22:25:17 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-09-20 22:25:17 +0000
commitda6e1f120189c89059b06afc989e5178a6b8622f (patch)
tree0431e48715d881055d71885356cd9c63a01b4762 /java/com/android/incallui/videosurface
parentaa8dee513f7b48425fa125c218e76f5fcc5c2430 (diff)
parent95ef73e0b7ff185294c46a98acad9b5ba68f2984 (diff)
Merge changes I0d53a576,I0baf31c3,I297b945c,I63c9165f
* changes: Forgot to keep this file in sync with //google/internal/communications/voicemailtranscription/v1/voicemail_transcription.proto Fixed issue where all contacts weren't beign shown. Add more logging when video surface texture is destroyed. Don't truncate long voicemail transcriptions
Diffstat (limited to 'java/com/android/incallui/videosurface')
-rw-r--r--java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java b/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
index 6ce564a87..fa757247d 100644
--- a/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
+++ b/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
@@ -220,10 +220,10 @@ public class VideoSurfaceTextureImpl implements VideoSurfaceTexture {
public boolean onSurfaceTextureDestroyed(SurfaceTexture destroyedSurfaceTexture) {
LogUtil.i(
"SurfaceTextureListener.onSurfaceTextureDestroyed",
- "destroyedSurfaceTexture: "
- + destroyedSurfaceTexture
- + " "
- + VideoSurfaceTextureImpl.this.toString());
+ "destroyedSurfaceTexture: %s, %s, isDoneWithSurface: %b",
+ destroyedSurfaceTexture,
+ VideoSurfaceTextureImpl.this.toString(),
+ isDoneWithSurface);
if (delegate != null) {
delegate.onSurfaceDestroyed(VideoSurfaceTextureImpl.this);
} else {