Hi folks, ffmpeg experts,<br><br>I have an app/lib that handles video containers such as mp4. <br>The data to be processed is buffered and send to the lib so<br>basically I get the video format by means of:<br>    av_probe_input_format()<br>
    then the format flags is set to AVFMT_NOFILE.<br><br>so the warn is, since AVFMT_NOFILE is set "AVFMT_NOFILE formats will not have an AVIOContext"<br>doesn't make sense to allocate context for  AVIOContext so the ic->pb is leaved with zero.<br>
<br>So I thought the next logical steep is to create the AVformatContext by means of:<br>    avformat_open_input()<br><br>But it eventual leadme to a segmentation fault cus AVformatContext <br>methods handles the AVIOContext (ic->pb).<br>
<br>My question is: <br>  what is the approach to customized the AVFormatContext?<br>  or What is the approach to handle video data (format)  from a buffer?<br><br>Thanks in advance for any help, It will be much appreciated,<br>
Reno.<br><br><br><br>