ffmpeg async io?
Posted
by
ronag
on Stack Overflow
See other posts from Stack Overflow
or by ronag
Published on 2011-01-08T20:23:48Z
Indexed on
2011/01/08
20:53 UTC
Read the original article
Hit count: 143
Anyone know if ffmpeg does asynchronous file io? That is, the input file is read in a separate thread as to avoid io blocking the processing thread?
Basically what I want to figure out is whether or not i need to do calls to "av_read_frame" inside a separate thread (to avoid blocking) or if ffmpeg alrdy handles this issue?
How might I figure this out? I've tried downloading the ffmpeg source but haven't been able to find anything useful.
© Stack Overflow or respective owner