On Thu, May 3, 2012 at 12:22 PM, Mika Rajala <[email protected]> wrote: > > Hi > > I'm using the method avformat_open_input to load a ~2GB h264 encoded video > file. > > int err = avformat_open_input(&m_formatContext, path, NULL, NULL); > > This takes a bit too long however, is there any way to make it faster? > > -mika
You could probably reduce the opening time if you disable format/codec sniffing. Alex _______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
