Skip to content

Commit

Permalink
Fixing some formatting
Browse files Browse the repository at this point in the history
Ran the Auto formatter on CallBackOfQuery
  • Loading branch information
adfleshner committed Feb 23, 2022
1 parent b855b5d commit 85333a9
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -67,7 +76,7 @@ class CallBackOfQuery {
ffmpegCallBack.failed()
Config.printLastCommandOutput(Log.INFO)
}
}
}
}
}
}

0 comments on commit 85333a9

Please sign in to comment.