Before knowing libvlc, I use VLC player in OS X.
Nowadays I am interested in programming about video player.
so naturally I focus processing each frame (ffmpeg & lbvlc).
but In this forum. I know that cannot access accurate frame buffer in libvlc.
but one day, I see custom decoder and use it. (plugin type in VLC player). so is this can access frame by frame(audio & video)?
I find the function related --
static void DecoderDecodeVideo( decoder_t *p_dec, block_t *p_block )
I thinks it is in libvlccore.dylib
If I make the program (not in vlc player) using libvlc, could I use plugin (custom decoder) and i can access frame by frame?