mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-19 04:09:59 +08:00
Register intrrupt_cb() early enough so we dont get stuck with tcp input
for example. Fixes issue66 Originally committed as revision 13992 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
3
ffmpeg.c
3
ffmpeg.c
@ -3785,6 +3785,9 @@ int main(int argc, char **argv)
|
||||
avdevice_register_all();
|
||||
av_register_all();
|
||||
|
||||
if(isatty(STDIN_FILENO))
|
||||
url_set_interrupt_cb(decode_interrupt_cb);
|
||||
|
||||
for(i=0; i<CODEC_TYPE_NB; i++){
|
||||
avctx_opts[i]= avcodec_alloc_context2(i);
|
||||
}
|
||||
|
Reference in New Issue
Block a user