Play video in android SDL application

How? Are there any SDL functions for it? Any good practices? Because
for now the only way I see it to modify SDLActivity.java, add
VideoView to it and make some JNI calls :slight_smile:

SDL doesn’t have any video playback functionality as far as I know,
but you can use it to show the rendered video to screen (along with
some other library to do the actual decoding).

2013/3/19, Alexey Petruchik :> How? Are there any SDL functions for it? Any good practices? Because

for now the only way I see it to modify SDLActivity.java, add
VideoView to it and make some JNI calls :slight_smile:


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

Look how ffplay does it. For video player with SDL you need: video decoder, audio decoder, video renderer(SDL can do it), audio renderer(SDL can do it) and of course audio\video synchronization mechanism.

19.03.2013, ? 22:26, Sik the hedgehog ???(?):> SDL doesn’t have any video playback functionality as far as I know,

but you can use it to show the rendered video to screen (along with
some other library to do the actual decoding).

2013/3/19, Alexey Petruchik :

How? Are there any SDL functions for it? Any good practices? Because
for now the only way I see it to modify SDLActivity.java, add
VideoView to it and make some JNI calls :slight_smile:


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org