From a870aa89bf384f485c112794a0ca0b49d6aceca2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 29 Feb 2016 21:37:51 +0100 Subject: [PATCH] avformat/seek-test: Support passing options to demuxers and protocols Signed-off-by: Michael Niedermayer --- libavformat/seek-test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/seek-test.c b/libavformat/seek-test.c index bfd06db3bb..904b435aaa 100644 --- a/libavformat/seek-test.c +++ b/libavformat/seek-test.c @@ -80,6 +80,8 @@ int main(int argc, char **argv) if (atoi(argv[i+1])) { ic->flags |= AVFMT_FLAG_FAST_SEEK; } + } else if(argv[i][0] == '-' && argv[i+1]) { + av_dict_set(&format_opts, argv[i] + 1, argv[i+1], 0); } else { argc = 1; }