The info is available in the demuxer; however, since my decoder is a dll, did not have direct access to the video buffer/track.
Resolved this by using: vlc_object_find( p_dec, VLC_OBJECT_VOUT, FIND_ANYWHERE )
Hi,
I am building a decoder and need to get the video resolution from the video elementary stream.
Would there be a way of accessing the video elementary stream from the decoder module (like using vlc_object_find ?)
Regards,
Sunny
From osd_widgets.c, I got how I can draw using the YUVA format .... however, would there be any examples where I could use RGBA format to draw? I am using VLC version 0.8.6e
Thanks j-b, that did help. I am trying to write a decoder for the data I am receiving. However, I see a crash in the " static int DecoderDecode( decoder_t *p_dec, block_t *p_block ) "function of src/input/decoder.c during the check " if( p_dec->p_owner->p_packetizer ) " Not sure ...
Hi, I am getting 2 tracks from a stream one of which is video and the other some properitory data. The propertitory data contains coordinates to fray some shapes like lines and rectangles. I am able to set the FOURCC code for the tracks being received (say i set it to 'S','U','N','4') and I modified...