Commit db85d657 authored by Josh de Kock's avatar Josh de Kock

lavf/allformats: remove left-over index decrement

Signed-off-by: 's avatarJosh de Kock <josh@itanimul.li>
parent 42d26145
......@@ -494,7 +494,7 @@ const AVOutputFormat *av_muxer_iterate(void **opaque)
uintptr_t i = (uintptr_t)*opaque;
const AVOutputFormat *f = NULL;
if (i < size - 1) {
if (i < size) {
f = muxer_list[i];
} else if (indev_list) {
f = outdev_list[i - size];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment