in the filereader class just changing:
libffmpeg::AVFormatContext* formatContext;
if ( libffmpeg::av_open_input_file( &formatContext, fileName, NULL, 0, NULL )
!=0 ) { return NULL;}
to:
libffmpeg::AVFormatContext* formatContext = libffmpeg::avformat_alloc_context(
);
if ( libffmpeg::avformat_open_input( &formatContext, fileName, NULL, NULL ) !=0
)
{
return NULL;
}
adds support for a whole load of network video streams example:
mmsh://live1.wm.skynews.servecast.net/skynews_wmlz_live300k
Original issue reported on code.google.com by ad...@activeunlimited.com on 12 Apr 2012 at 7:00
Original issue reported on code.google.com by
ad...@activeunlimited.com
on 12 Apr 2012 at 7:00