Skip to content

Commit

Permalink
Minor code adjusting
Browse files Browse the repository at this point in the history
  • Loading branch information
Javernaut committed Nov 18, 2024
1 parent da8348a commit 5d2c825
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ import com.javernaut.whatthecodec.home.ui.screen.EmptyHomeScreen
import com.javernaut.whatthecodec.home.ui.screen.MainHomeScreen
import io.github.javernaut.mediafile.model.AudioStream
import io.github.javernaut.mediafile.model.BasicStreamInfo
import io.github.javernaut.mediafile.model.BitRate
import io.github.javernaut.mediafile.model.Container
import io.github.javernaut.mediafile.model.FrameRate
import io.github.javernaut.mediafile.model.SampleRate
import io.github.javernaut.mediafile.model.VideoStream
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.emptyFlow
Expand Down Expand Up @@ -118,8 +121,8 @@ class ScreenshotsTestSuite(
language = null,
disposition = 0
),
bitRate = 4_500_000,
frameRate = 25.0,
bitRate = BitRate(4_500_000),
frameRate = FrameRate(25.0),
frameSize = Size(1840, 1034)
)

Expand Down Expand Up @@ -162,9 +165,9 @@ class ScreenshotsTestSuite(
language = null,
disposition = 0
),
bitRate = 320_000,
bitRate = BitRate(320_000),
sampleFormat = "fltp",
sampleRate = 44_100,
sampleRate = SampleRate(44_100),
channels = 2,
channelLayout = "stereo",
)
Expand Down

0 comments on commit 5d2c825

Please sign in to comment.