Hello, I'm trying to have vlc read an mp3 data stream from my memory. I decrypt the mp3 file a little at a time on the fly then send decrypted mp3 data to the vlc when it calls read_cb Im using m = libvlc_media_new_callbacks(inst, open_cb, read_cb, seek_cb, close_cb, &opaque[0] ); I have some pr...