I have a decoder ported to iOS. The decoder is written in normal C language. In android we have some API through which we can render the decoded frames(will be in YUV, if required can be converted to RGBA).
Is there a similar functionality in iOS in which we can render the decoded data from the C code itself(not from the objective c part of the code).
I tried googling but found ways to render data only from the objective side of the code and did'nt find a way to do it from the native side of the code.
Please suggest a way to do so. A link to some similar example will be very helpful.
Thanks in advance.