From 85333a9150078c5339a63508b7246afa65ca4f55 Mon Sep 17 00:00:00 2001 From: Aaron Fleshner Date: Tue, 22 Feb 2022 08:30:25 -0500 Subject: [PATCH] Fixing some formatting Ran the Auto formatter on CallBackOfQuery --- .../com/simform/videooperations/CallBackOfQuery.kt | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/SSffmpegVideoOperation/src/main/java/com/simform/videooperations/CallBackOfQuery.kt b/SSffmpegVideoOperation/src/main/java/com/simform/videooperations/CallBackOfQuery.kt index d98e5c0..984fe12 100644 --- a/SSffmpegVideoOperation/src/main/java/com/simform/videooperations/CallBackOfQuery.kt +++ b/SSffmpegVideoOperation/src/main/java/com/simform/videooperations/CallBackOfQuery.kt @@ -45,7 +45,16 @@ class CallBackOfQuery { } Config.enableStatisticsCallback { statistics -> val statisticsLog = - Statistics(statistics.executionId, statistics.videoFrameNumber, statistics.videoFps, statistics.videoQuality, statistics.size, statistics.time, statistics.bitrate, statistics.speed) + Statistics( + statistics.executionId, + statistics.videoFrameNumber, + statistics.videoFps, + statistics.videoQuality, + statistics.size, + statistics.time, + statistics.bitrate, + statistics.speed + ) processHandler.post { ffmpegCallBack.statisticsProcess(statisticsLog) } @@ -67,7 +76,7 @@ class CallBackOfQuery { ffmpegCallBack.failed() Config.printLastCommandOutput(Log.INFO) } - } + } } } } \ No newline at end of file