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