command          3288 ffmpeg.c               char buf[4096], target[64], command[256], arg[256] = {0};
command          3298 ffmpeg.c                   (n = sscanf(buf, "%63[^ ] %lf %255[^ ] %255[^\n]", target, &time, command, arg)) >= 3) {
command          3300 ffmpeg.c                          target, time, command, arg);
command          3305 ffmpeg.c                               ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
command          3312 ffmpeg.c                               ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
command           267 libavcodec/cdgraphics.c     uint8_t command, inst;
command           290 libavcodec/cdgraphics.c     command = bytestream2_get_byte(&gb);
command           296 libavcodec/cdgraphics.c     if ((command & CDG_MASK) == CDG_COMMAND) {
command            45 libavcodec/dvbsubdec.c     char command[1024];
command            88 libavcodec/dvbsubdec.c     snprintf(command, 1024, "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
command            89 libavcodec/dvbsubdec.c     system(command);
command            91 libavcodec/dvbsubdec.c     snprintf(command, 1024, "rm %s %s", fname, fname2);
command            92 libavcodec/dvbsubdec.c     system(command);
command           101 libavcodec/dvbsubdec.c     char command[1024];
command           144 libavcodec/dvbsubdec.c     snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
command           145 libavcodec/dvbsubdec.c     system(command);
command           147 libavcodec/dvbsubdec.c     snprintf(command, sizeof(command), "rm %s %s", fname, fname2);
command           148 libavcodec/dvbsubdec.c     system(command);
command           272 libavcodec/shorten.c static int decode_subframe_lpc(ShortenContext *s, int command, int channel,
command           278 libavcodec/shorten.c     if (command == FN_QLPC) {
command           294 libavcodec/shorten.c         pred_order = command;
command           305 libavcodec/shorten.c     if (command == FN_QLPC && coffset)
command           310 libavcodec/shorten.c     init_sum = pred_order ? (command == FN_QLPC ? s->lpcqoffset : 0) : coffset;
command           320 libavcodec/shorten.c     if (command == FN_QLPC && coffset)
command            94 libavfilter/avfilter.c     av_freep(&c->command);
command          1071 libavfilter/avfilter.c                cmd->time, cmd->command, cmd->arg);
command          1072 libavfilter/avfilter.c         avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
command          1250 libavfilter/avfiltergraph.c int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *command, const char *arg, int flags, double ts)
command          1265 libavfilter/avfiltergraph.c             (*queue)->command = av_strdup(command);
command            60 libavfilter/f_sendcmd.c     char *target, *command, *arg;
command           176 libavfilter/f_sendcmd.c     cmd->command = av_get_token(buf, COMMAND_DELIMS);
command           177 libavfilter/f_sendcmd.c     if (!cmd->command || !cmd->command[0]) {
command           192 libavfilter/f_sendcmd.c     av_freep(&cmd->command);
command           235 libavfilter/f_sendcmd.c                    make_command_flags_str(&pbuf, cmd.flags), cmd.target, cmd.command, cmd.arg);
command           423 libavfilter/f_sendcmd.c                    make_command_flags_str(&pbuf, cmd->flags), cmd->target, cmd->command, cmd->arg, cmd->index);
command           440 libavfilter/f_sendcmd.c             av_freep(&cmd->command);
command           490 libavfilter/f_sendcmd.c                            cmd->index, cmd->target, cmd->command, cmd->arg);
command           492 libavfilter/f_sendcmd.c                                                       cmd->target, cmd->command, cmd->arg,
command            90 libavfilter/f_zmq.c     char *target, *command, *arg;
command           106 libavfilter/f_zmq.c     cmd->command = av_get_token(buf, SPACES);
command           107 libavfilter/f_zmq.c     if (!cmd->command || !cmd->command[0]) {
command           177 libavfilter/f_zmq.c                zmq->command_count, cmd.target, cmd.command, cmd.arg);
command           179 libavfilter/f_zmq.c                                           cmd.target, cmd.command, cmd.arg,
command           200 libavfilter/f_zmq.c         av_freep(&cmd.command);
command            46 libavfilter/internal.h     char *command;              ///< command
command          1331 libavfilter/vf_drawtext.c     .process_command = command,
command           181 libavformat/ftp.c static int ftp_send_command(FTPContext *s, const char *command,
command           189 libavformat/ftp.c     if ((err = ffurl_write(s->conn_control, command, strlen(command))) < 0)
command           253 libavformat/ftp.c     static const char *command = "EPSV\r\n";
command           256 libavformat/ftp.c     if (ftp_send_command(s, command, epsv_codes, &res) != 229 || !res)
command           294 libavformat/ftp.c     static const char *command = "PASV\r\n";
command           297 libavformat/ftp.c     if (ftp_send_command(s, command, pasv_codes, &res) != 227 || !res)
command           340 libavformat/ftp.c     static const char *command = "PWD\r\n";
command           343 libavformat/ftp.c     if (ftp_send_command(s, command, pwd_codes, &res) != 257 || !res)
command           376 libavformat/ftp.c     char command[CONTROL_BUFFER_SIZE];
command           380 libavformat/ftp.c     snprintf(command, sizeof(command), "SIZE %s\r\n", s->path);
command           381 libavformat/ftp.c     if (ftp_send_command(s, command, size_codes, &res) == 213 && res) {
command           395 libavformat/ftp.c     char command[CONTROL_BUFFER_SIZE];
command           398 libavformat/ftp.c     snprintf(command, sizeof(command), "RETR %s\r\n", s->path);
command           399 libavformat/ftp.c     if (ftp_send_command(s, command, retr_codes, NULL) != 150)
command           409 libavformat/ftp.c     char command[CONTROL_BUFFER_SIZE];
command           412 libavformat/ftp.c     snprintf(command, sizeof(command), "STOR %s\r\n", s->path);
command           413 libavformat/ftp.c     if (ftp_send_command(s, command, stor_codes, NULL) != 150)
command           423 libavformat/ftp.c     static const char *command = "TYPE I\r\n";
command           426 libavformat/ftp.c     if (ftp_send_command(s, command, type_codes, NULL) != 200)
command           434 libavformat/ftp.c     char command[CONTROL_BUFFER_SIZE];
command           437 libavformat/ftp.c     snprintf(command, sizeof(command), "REST %"PRId64"\r\n", pos);
command           438 libavformat/ftp.c     if (ftp_send_command(s, command, rest_codes, NULL) != 350)
command           544 libavformat/ftp.c     static const char *command = "ABOR\r\n";
command           559 libavformat/ftp.c     if (ftp_send_command(s, command, NULL, NULL) < 0) {
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           321 libavformat/idcin.c         if (command == 1) {
command           408 libavformat/rtmpproto.c     char command[64];
command           430 libavformat/rtmpproto.c     if (ff_amf_read_string(&gbc, command, sizeof(command), &stringlen)) {
command           435 libavformat/rtmpproto.c     if (strcmp(command, "connect")) {
command           436 libavformat/rtmpproto.c         av_log(s, AV_LOG_ERROR, "Expecting connect, got %s\n", command);
command          1919 libavformat/rtmpproto.c     char command[64];
command          1929 libavformat/rtmpproto.c     if (ff_amf_read_string(&gbc, command, sizeof(command),
command          1941 libavformat/rtmpproto.c     if (!strcmp(command, "FCPublish") ||
command          1942 libavformat/rtmpproto.c         !strcmp(command, "publish")) {
command          1962 libavformat/rtmpproto.c     if (!strcmp(command, "FCPublish")) {
command          1971 libavformat/rtmpproto.c     } else if (!strcmp(command, "publish")) {
command          1979 libavformat/rtmpproto.c     } else if (!strcmp(command, "play")) {
command          1997 libavformat/rtmpproto.c         if (!strcmp(command, "createStream")) {