[FFmpeg-devel] [PATCH 1/6] lavf/allformats: remove left-over index decrement
Josh de Kock
josh at itanimul.li
Mon Apr 2 05:39:36 EEST 2018
On 2018/04/02 2:40, wm4 wrote:
> 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.
Pushed with the cosmetic change in patch 2.
--
Josh
More information about the ffmpeg-devel
mailing list