[FFmpeg-cvslog] api/api-band-test: Remove write-only variable
Andreas Rheinhardt
git at videolan.org
Wed Jun 12 15:40:11 EEST 2024
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sun Oct 16 14:19:07 2022 +0200| [4c22b007809460ee0b3232dcf1f406fefd4567c7] | committer: Andreas Rheinhardt
api/api-band-test: Remove write-only variable
Besides being write only it had the wrong type:
An uint8_t is definitely not enough to store the size
of these buffers.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4c22b007809460ee0b3232dcf1f406fefd4567c7
---
tests/api/api-band-test.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/api/api-band-test.c b/tests/api/api-band-test.c
index bbaa6edb58..d40e31b850 100644
--- a/tests/api/api-band-test.c
+++ b/tests/api/api-band-test.c
@@ -31,7 +31,6 @@
#include "libavutil/imgutils.h"
uint8_t *slice_byte_buffer;
-uint8_t slice_byte_buffer_size;
int draw_horiz_band_called;
static void draw_horiz_band(AVCodecContext *ctx, const AVFrame *fr, int offset[4],
@@ -158,7 +157,6 @@ static int video_decode(const char *input_filename)
return AVERROR(ENOMEM);
}
memset(slice_byte_buffer, 0, byte_buffer_size);
- slice_byte_buffer_size = byte_buffer_size;
result = 0;
while (result >= 0) {
More information about the ffmpeg-cvslog
mailing list