diff options
Diffstat (limited to 'stream/stream_lavf.c')
-rw-r--r-- | stream/stream_lavf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index 8d8ceb3f94..c84945eba7 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -229,11 +229,7 @@ static int open_f(stream_t *stream) goto out; } - AVDictionaryEntry *t = NULL; - while ((t = av_dict_get(dict, "", t, AV_DICT_IGNORE_SUFFIX))) { - MP_VERBOSE(stream, "Could not set stream option %s=%s\n", - t->key, t->value); - } + mp_avdict_print_unset(stream->log, MSGL_V, dict); if (avio->av_class) { uint8_t *mt = NULL; |