Searched refs:bind_address (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/tools/ |
H A D | zmqshell.py | 8 def __init__(self, bind_address): 11 self.requester.connect(bind_address) 23 bind_address = sys.argv[1] if len(sys.argv) > 1 else "tcp://localhost:5555" variable in LavfiCmd 24 LavfiCmd(bind_address).cmdloop('FFmpeg libavfilter interactive shell')
|
H A D | zmqsend.c | 59 const char *bind_address = "tcp://localhost:5555"; in main() local 67 bind_address = optarg; in main() 107 if (zmq_connect(socket, bind_address) == -1) { in main() 109 bind_address, zmq_strerror(errno)); in main()
|
/third_party/ffmpeg/libavfilter/ |
H A D | f_zmq.c | 41 char *bind_address; member 48 { "bind_address", "set bind address", OFFSET(bind_address), AV_OPT_TYPE_STRING, {.str = "tcp://*:5555"}, 0, 0, FLAGS }, 49 { "b", "set bind address", OFFSET(bind_address), AV_OPT_TYPE_STRING, {.str = "tcp://*:5555"}, 0, 0, FLAGS }, 71 if (zmq_bind(zmq->responder, zmq->bind_address) == -1) { in init() 74 zmq->bind_address, zmq_strerror(errno)); in init()
|
Completed in 1 milliseconds