command 3893 fftools/ffmpeg.c char buf[4096], target[64], command[256], arg[256] = {0}; command 3906 fftools/ffmpeg.c (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) { command 3908 fftools/ffmpeg.c target, time, command, arg); command 3913 fftools/ffmpeg.c ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf), command 3920 fftools/ffmpeg.c ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time); command 270 libavcodec/cdgraphics.c uint8_t command, inst; command 294 libavcodec/cdgraphics.c command = bytestream2_get_byte(&gb); command 300 libavcodec/cdgraphics.c if ((command & CDG_MASK) == CDG_COMMAND) { command 1393 libavcodec/dvbsubdec.c char command[1024]; command 1436 libavcodec/dvbsubdec.c snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename); command 1437 libavcodec/dvbsubdec.c if (system(command) != 0) { command 1442 libavcodec/dvbsubdec.c snprintf(command, sizeof(command), "rm %s %s", fname, fname2); command 1443 libavcodec/dvbsubdec.c if (system(command) != 0) { command 350 libavcodec/shorten.c static int decode_subframe_lpc(ShortenContext *s, int command, int channel, command 356 libavcodec/shorten.c if (command == FN_QLPC) { command 372 libavcodec/shorten.c pred_order = command; command 383 libavcodec/shorten.c if (command == FN_QLPC && coffset) command 388 libavcodec/shorten.c init_sum = pred_order ? (command == FN_QLPC ? s->lpcqoffset : 0) : coffset; command 398 libavcodec/shorten.c if (command == FN_QLPC && coffset) command 98 libavfilter/avfilter.c av_freep(&c->command); command 1576 libavfilter/avfilter.c cmd->time, cmd->command, cmd->arg); command 1577 libavfilter/avfilter.c avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags); command 1319 libavfilter/avfiltergraph.c int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *command, const char *arg, int flags, double ts) command 1337 libavfilter/avfiltergraph.c (*queue)->command = av_strdup(command); command 83 libavfilter/f_sendcmd.c char *target, *command, *arg; command 200 libavfilter/f_sendcmd.c cmd->command = av_get_token(buf, COMMAND_DELIMS); command 201 libavfilter/f_sendcmd.c if (!cmd->command || !cmd->command[0]) { command 216 libavfilter/f_sendcmd.c av_freep(&cmd->command); command 259 libavfilter/f_sendcmd.c make_command_flags_str(&pbuf, cmd.flags), cmd.target, cmd.command, cmd.arg); command 453 libavfilter/f_sendcmd.c make_command_flags_str(&pbuf, cmd->flags), cmd->target, cmd->command, cmd->arg, cmd->index); command 470 libavfilter/f_sendcmd.c av_freep(&cmd->command); command 553 libavfilter/f_sendcmd.c cmd->index, cmd->target, cmd->command, cmd_arg); command 555 libavfilter/f_sendcmd.c cmd->target, cmd->command, cmd_arg, command 89 libavfilter/f_zmq.c char *target, *command, *arg; command 105 libavfilter/f_zmq.c cmd->command = av_get_token(buf, SPACES); command 106 libavfilter/f_zmq.c if (!cmd->command || !cmd->command[0]) { command 176 libavfilter/f_zmq.c zmq->command_count, cmd.target, cmd.command, cmd.arg); command 178 libavfilter/f_zmq.c cmd.target, cmd.command, cmd.arg, command 199 libavfilter/f_zmq.c av_freep(&cmd.command); command 40 libavfilter/internal.h char *command; ///< command command 1576 libavfilter/vf_drawtext.c .process_command = command, command 207 libavformat/ftp.c static int ftp_send_command(FTPContext *s, const char *command, command 212 libavformat/ftp.c ff_dlog(s, "%s", command); command 220 libavformat/ftp.c if ((err = ffurl_write(s->conn_control, command, strlen(command))) < 0) command 275 libavformat/ftp.c static const char *command = "EPSV\r\n"; command 278 libavformat/ftp.c if (ftp_send_command(s, command, epsv_codes, &res) != 229 || !res) command 316 libavformat/ftp.c static const char *command = "PASV\r\n"; command 319 libavformat/ftp.c if (ftp_send_command(s, command, pasv_codes, &res) != 227 || !res) command 362 libavformat/ftp.c static const char *command = "PWD\r\n"; command 365 libavformat/ftp.c if (ftp_send_command(s, command, pwd_codes, &res) != 257 || !res) command 398 libavformat/ftp.c char command[CONTROL_BUFFER_SIZE]; command 402 libavformat/ftp.c snprintf(command, sizeof(command), "SIZE %s\r\n", s->path); command 403 libavformat/ftp.c if (ftp_send_command(s, command, size_codes, &res) == 213 && res && strlen(res) > 4) { command 417 libavformat/ftp.c char command[CONTROL_BUFFER_SIZE]; command 421 libavformat/ftp.c snprintf(command, sizeof(command), "RETR %s\r\n", s->path); command 422 libavformat/ftp.c resp_code = ftp_send_command(s, command, retr_codes, NULL); command 433 libavformat/ftp.c char command[CONTROL_BUFFER_SIZE]; command 437 libavformat/ftp.c snprintf(command, sizeof(command), "STOR %s\r\n", s->path); command 438 libavformat/ftp.c resp_code = ftp_send_command(s, command, stor_codes, NULL); command 449 libavformat/ftp.c static const char *command = "TYPE I\r\n"; command 452 libavformat/ftp.c if (ftp_send_command(s, command, type_codes, NULL) != 200) command 460 libavformat/ftp.c char command[CONTROL_BUFFER_SIZE]; command 463 libavformat/ftp.c snprintf(command, sizeof(command), "REST %"PRId64"\r\n", pos); command 464 libavformat/ftp.c if (ftp_send_command(s, command, rest_codes, NULL) != 350) command 473 libavformat/ftp.c char command[MAX_URL_SIZE]; command 475 libavformat/ftp.c snprintf(command, sizeof(command), "CWD %s\r\n", s->path); command 476 libavformat/ftp.c if (ftp_send_command(s, command, cwd_codes, NULL) != 250) command 483 libavformat/ftp.c static const char *command = "MLSD\r\n"; command 486 libavformat/ftp.c if (ftp_send_command(s, command, mlsd_codes, NULL) != 150) command 494 libavformat/ftp.c static const char *command = "NLST\r\n"; command 497 libavformat/ftp.c if (ftp_send_command(s, command, nlst_codes, NULL) != 226) command 628 libavformat/ftp.c static const char *command = "ABOR\r\n"; command 643 libavformat/ftp.c if (ftp_send_command(s, command, NULL, NULL) < 0) { command 1075 libavformat/ftp.c char command[MAX_URL_SIZE]; command 1083 libavformat/ftp.c snprintf(command, sizeof(command), "DELE %s\r\n", s->path); command 1084 libavformat/ftp.c if (ftp_send_command(s, command, del_codes, NULL) == 250) { command 1089 libavformat/ftp.c snprintf(command, sizeof(command), "RMD %s\r\n", s->path); command 1090 libavformat/ftp.c if (ftp_send_command(s, command, rmd_codes, NULL) == 250) command 1103 libavformat/ftp.c char command[MAX_URL_SIZE], path[MAX_URL_SIZE]; command 1111 libavformat/ftp.c snprintf(command, sizeof(command), "RNFR %s\r\n", s->path); command 1112 libavformat/ftp.c if (ftp_send_command(s, command, rnfr_codes, NULL) != 350) { command 1120 libavformat/ftp.c snprintf(command, sizeof(command), "RNTO %s\r\n", path); command 1121 libavformat/ftp.c if (ftp_send_command(s, command, rnto_codes, NULL) == 250) command 255 libavformat/idcin.c unsigned int command; command 269 libavformat/idcin.c command = avio_rl32(pb); command 270 libavformat/idcin.c if (command == 2) { command 272 libavformat/idcin.c } else if (command == 1) { command 318 libavformat/idcin.c if (command == 1) { command 414 libavformat/rtmpproto.c char command[64]; command 460 libavformat/rtmpproto.c if (ff_amf_read_string(&gbc, command, sizeof(command), &stringlen)) { command 465 libavformat/rtmpproto.c if (strcmp(command, "connect")) { command 466 libavformat/rtmpproto.c av_log(s, AV_LOG_ERROR, "Expecting connect, got %s\n", command); command 1905 libavformat/rtmpproto.c char command[64]; command 1915 libavformat/rtmpproto.c if (ff_amf_read_string(&gbc, command, sizeof(command), command 1927 libavformat/rtmpproto.c if (!strcmp(command, "FCPublish") || command 1928 libavformat/rtmpproto.c !strcmp(command, "publish")) { command 1955 libavformat/rtmpproto.c if (!strcmp(command, "FCPublish")) { command 1964 libavformat/rtmpproto.c } else if (!strcmp(command, "publish")) { command 1972 libavformat/rtmpproto.c } else if (!strcmp(command, "play")) { command 1990 libavformat/rtmpproto.c if (!strcmp(command, "createStream")) {