Skip to content

Instantly share code, notes, and snippets.

@apkelly
Last active January 16, 2019 22:38
Show Gist options
  • Save apkelly/cb9dc3a4a0788fd113ac7aeb317e153b to your computer and use it in GitHub Desktop.
Save apkelly/cb9dc3a4a0788fd113ac7aeb317e153b to your computer and use it in GitHub Desktop.
ICameraSource.kt
interface ICameraSource {
fun previewSize(): Size?
fun cameraFacing(): Int
fun release()
@Throws(IOException::class)
fun start(surfaceHolder: SurfaceHolder)
fun stop()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment