Hello, I'm trying to use VideoLan in another simple application (my goal is to launch and control the main functions of VLC through this application), but I don't know how to link Libvlc with my files. My problem is that I'm not very familiar with gcc (I'm using cygwin), so I have troubles to compil...
Thank you, but I still have little problems extracting YUV values of my picture (the Y coefficient is fine, but there isn't the "right number" of U and V value).
Hello, I'm trying to understand how datas are stored in the picture_t structure... For instance, I try to read datas of a 128*128 image, with the following loop : for (i=0; i< p_pic->p_heap->i_width * p_pic->p_heap->i_height; i++) { coeff = p_pic->p_data ; fprintf (pFile, "%d:%d ", i, coef...
Hello I'm currently trying to find where in the source code I can access pictures pixel per pixel before they're sent to the output stream (I need to redirect them, or write RGB value in a text file). I tried to write to a file the contents of the picture_t objects in the vout_RenderPicture method (...