[FFmpeg-cvslog] avformat/aviobuf: Simplify dyn_buf_write() a bit
Andreas Rheinhardt
git at videolan.org
Thu Jun 11 04:09:50 EEST 2020
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Sun May 24 04:02:27 2020 +0200| [88d5ae068fa5a7047665a2b680882725f8011e56] | committer: Andreas Rheinhardt
avformat/aviobuf: Simplify dyn_buf_write() a bit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=88d5ae068fa5a7047665a2b680882725f8011e56
---
libavformat/aviobuf.c | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 0e6125e161..12408fd211 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -1284,22 +1284,19 @@ typedef struct DynBuffer {
static int dyn_buf_write(void *opaque, uint8_t *buf, int buf_size)
{
DynBuffer *d = opaque;
- unsigned new_size, new_allocated_size;
+ unsigned new_size;
/* reallocate buffer if needed */
new_size = (unsigned)d->pos + buf_size;
- new_allocated_size = d->allocated_size;
if (new_size < d->pos || new_size > INT_MAX/2)
return -1;
- while (new_size > new_allocated_size) {
- if (!new_allocated_size)
- new_allocated_size = new_size;
- else
+ if (new_size > d->allocated_size) {
+ unsigned new_allocated_size = d->allocated_size ? d->allocated_size
+ : new_size;
+ int err;
+ while (new_size > new_allocated_size)
new_allocated_size += new_allocated_size / 2 + 1;
- }
- if (new_allocated_size > d->allocated_size) {
- int err;
if ((err = av_reallocp(&d->buffer, new_allocated_size)) < 0) {
d->allocated_size = 0;
d->size = 0;
More information about the ffmpeg-cvslog
mailing list