[FFmpeg-devel] [PATCH 1/6] lavf/allformats: remove left-over index decrement
wm4
nfxjfg at googlemail.com
Mon Apr 2 04:40:12 EEST 2018
On Sun, 1 Apr 2018 03:39:40 +0100
Josh de Kock <josh at itanimul.li> wrote:
> Signed-off-by: Josh de Kock <josh at itanimul.li>
> ---
> libavformat/allformats.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/allformats.c b/libavformat/allformats.c
> index 2a20548c95..cf430a9680 100644
> --- a/libavformat/allformats.c
> +++ b/libavformat/allformats.c
> @@ -493,7 +493,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];
Patches 2, 4, 5, 6 should be OK too (if they were tested and work).
Only had a cosmetic comment about patch 2.
More information about the ffmpeg-devel
mailing list