Landry Norris
03/17/2022, 7:50 PMCPointer<[ERROR : Unknown type parameter 0. Please try recompiling module containing "[container not found]"]>
. I know that the types are AVStream, and that AVStream is recognized by Kotlin. This seems to occur when using the get(index) extension provided by the cinterop package. Has anyone run into this issue before? [Fixed by downgrading Kotlin from 1.6.20-RC to 1.6.10]Landry Norris
03/17/2022, 7:52 PMpublic expect final var streams: kotlinx.cinterop.CPointer<kotlinx.cinterop.CPointerVar<ffmpeg.AVStream>
. When I check the type of x after val x = context.streams?.get(0)
, I get the above type error.Landry Norris
03/17/2022, 7:56 PM