Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-02-08 21:13:45 +0300
committerAnton Khirnov <anton@khirnov.net>2022-02-15 12:16:16 +0300
commite9acff8a013bdd6d459116ceb35f8a53b60ff521 (patch)
tree56e3688ec676c4f8e729346cc06472a310119eb6 /libavutil/fifo.c
parent73b01844c2338fa037307539d161c6565d5f7f65 (diff)
lavu/fifo: fix a corner case in av_fifo_grow2()
When the fifo is grown by exactly the current write offset, it would end up with offset_w = nb_elems. If av_fifo_write_from_cb() is called in such a state, the user callback would get callled with *nb_elems=0, which will then cause the write to return without writing anything.
Diffstat (limited to 'libavutil/fifo.c')
-rw-r--r--libavutil/fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c
index 02e0ec3f0d..09c984143f 100644
--- a/libavutil/fifo.c
+++ b/libavutil/fifo.c
@@ -115,7 +115,7 @@ int av_fifo_grow2(AVFifo *f, size_t inc)
(f->offset_w - copy) * f->elem_size);
f->offset_w -= copy;
} else
- f->offset_w = f->nb_elems + copy;
+ f->offset_w = copy == inc ? 0 : f->nb_elems + copy;
}
f->nb_elems += inc;