/third_party/ffmpeg/libavformat/ |
H A D | avio.c | 76 const AVIOInterruptCB *int_cb) in url_alloc_for_protocol() 149 if (int_cb) in url_alloc_for_protocol() 150 uc->interrupt_callback = *int_cb; in url_alloc_for_protocol() 294 const AVIOInterruptCB *int_cb) in ffurl_alloc() 300 return url_alloc_for_protocol(puc, p, filename, flags, int_cb); in ffurl_alloc() 307 const AVIOInterruptCB *int_cb, AVDictionary **options, in ffurl_open_whitelist() 313 int ret = ffurl_alloc(puc, filename, flags, int_cb); in ffurl_open_whitelist() 74 url_alloc_for_protocol(URLContext **puc, const URLProtocol *up, const char *filename, int flags, const AVIOInterruptCB *int_cb) url_alloc_for_protocol() argument 293 ffurl_alloc(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb) ffurl_alloc() argument 306 ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char* blacklist, URLContext *parent) ffurl_open_whitelist() argument
|
H A D | libzmq.c | 60 static int zmq_proto_wait_timeout(URLContext *h, void *socket, int write, int64_t timeout, AVIOInterruptCB *int_cb) in zmq_proto_wait_timeout() argument 66 if (ff_check_interrupt(int_cb)) in zmq_proto_wait_timeout()
|
H A D | network.h | 96 * @param int_cb Interrupt callback, is checked before each ff_network_wait_fd call 99 int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb); 102 * Waits for up to 'timeout' microseconds. If the usert's int_cb is set and 105 * @param int_cb Interrupt callback, is checked regularly. 106 * @return AVERROR(ETIMEDOUT) if timeout expirted, AVERROR_EXIT if interrupted by int_cb 108 int ff_network_sleep_interruptible(int64_t timeout, AVIOInterruptCB *int_cb);
|
H A D | url.h | 109 * @param int_cb interrupt callback to use for the URLContext, may be 115 const AVIOInterruptCB *int_cb); 135 * @param int_cb interrupt callback to use for the URLContext, may be 146 const AVIOInterruptCB *int_cb, AVDictionary **options,
|
H A D | network.c | 78 int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb) in ff_network_wait_fd_timeout() argument 84 if (ff_check_interrupt(int_cb)) in ff_network_wait_fd_timeout() 98 int ff_network_sleep_interruptible(int64_t timeout, AVIOInterruptCB *int_cb) in ff_network_sleep_interruptible() argument 105 if (ff_check_interrupt(int_cb)) in ff_network_sleep_interruptible()
|
H A D | avio_internal.h | 226 const AVIOInterruptCB *int_cb, AVDictionary **options,
|
H A D | avio.h | 684 * @param int_cb an interrupt callback to be used at the protocols level 692 const AVIOInterruptCB *int_cb, AVDictionary **options);
|
H A D | aviobuf.c | 1229 const AVIOInterruptCB *int_cb, AVDictionary **options, in ffio_open_whitelist() 1238 err = ffurl_open_whitelist(&h, filename, flags, int_cb, options, whitelist, blacklist, NULL); in ffio_open_whitelist() 1250 const AVIOInterruptCB *int_cb, AVDictionary **options) in avio_open2() 1252 return ffio_open_whitelist(s, filename, flags, int_cb, options, NULL, NULL); in avio_open2() 1228 ffio_open_whitelist(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist ) ffio_open_whitelist() argument 1249 avio_open2(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options) avio_open2() argument
|
H A D | avformat.h | 1212 const AVIOInterruptCB *int_cb, AVDictionary **options);
|
H A D | libsrt.c | 216 static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int write, int64_t timeout, AVIOInterruptCB *int_cb) in libsrt_network_wait_fd_timeout() argument 222 if (ff_check_interrupt(int_cb)) in libsrt_network_wait_fd_timeout()
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_mux.c | 213 ret = avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL); in print_sdp()
|
H A D | ffmpeg.h | 651 extern const AVIOInterruptCB int_cb;
|
H A D | ffmpeg_opt.c | 1140 if ((ret = avio_open2(&out, filename, AVIO_FLAG_WRITE, &int_cb, NULL)) < 0) { in dump_attachment() 1260 ic->interrupt_callback = int_cb; in open_input_file() 1476 ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL); in get_preset_file_2() 1481 ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL); in get_preset_file_2() 2467 oc->interrupt_callback = int_cb; in open_output_file() 2691 if ((err = avio_open2(&pb, o->attachments[i], AVIO_FLAG_READ, &int_cb, NULL)) < 0) { in open_output_file() 3623 ret = avio_open2(&avio, arg, AVIO_FLAG_WRITE, &int_cb, NULL); in opt_progress()
|
H A D | ffmpeg.c | 512 const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL }; variable
|