Searched refs:wanted_stream_spec (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 323 static const char* wanted_stream_spec[AVMEDIA_TYPE_NB] = {0}; variable 2870 if (type >= 0 && wanted_stream_spec[type] && st_index[type] == -1) in read_thread() 2871 if (avformat_match_stream_specifier(ic, st, wanted_stream_spec[type]) > 0) in read_thread() 2875 if (wanted_stream_spec[i] && st_index[i] == -1) { in read_thread() 2876 …V_LOG_ERROR, "Stream specifier %s does not match any %s stream\n", wanted_stream_spec[i], av_get_m… in read_thread() 3593 …{ "ast", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_AUDIO] }, "select d… 3594 …{ "vst", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_VIDEO] }, "select d… 3595 …{ "sst", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_SUBTITLE] }, "selec…
|