| 1993 | } |
| 1994 | |
| 1995 | int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec) |
| 1996 | { |
| 1997 | int ret = avformat_match_stream_specifier(s, st, spec); |
| 1998 | if (ret < 0) |
| 1999 | av_log(s, AV_LOG_ERROR, "Invalid stream specifier: %s.\n", spec); |
| 2000 | return ret; |
| 2001 | } |
| 2002 | |
| 2003 | AVDictionary *filter_codec_opts(AVDictionary *opts, enum AVCodecID codec_id, |
| 2004 | AVFormatContext *s, AVStream *st, AVCodec *codec) |
no outgoing calls
no test coverage detected