Browse Source

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
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
b86f5a02ea
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      ffmpeg.c

+ 3
- 0
ffmpeg.c View File

@@ -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);
}


Loading…
Cancel
Save