mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-03 09:28:18 +02:00
Use copyTo to copy streams
This commit is contained in:
parent
cdc8850894
commit
af28e6d466
@ -49,12 +49,7 @@ object MediaCompressorFileUtils {
|
||||
input: InputStream,
|
||||
output: OutputStream,
|
||||
) {
|
||||
val buffer = ByteArray(1024 * 50)
|
||||
var read = input.read(buffer)
|
||||
while (read != -1) {
|
||||
output.write(buffer, 0, read)
|
||||
read = input.read(buffer)
|
||||
}
|
||||
input.copyTo(output, bufferSize = 1024 * 50)
|
||||
}
|
||||
|
||||
private fun splitFileName(fileName: String): Pair<String, String> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user