mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
FATE/bprint: Convert a VLA to a normal array
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
23e9e5c7d9
commit
0c5fe2f0da
@ -21,6 +21,7 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "avassert.h"
|
||||
#include "bprint.h"
|
||||
#include "common.h"
|
||||
#include "error.h"
|
||||
@ -189,7 +190,10 @@ int av_bprint_finalize(AVBPrint *buf, char **ret_str)
|
||||
|
||||
static void bprint_pascal(AVBPrint *b, unsigned size)
|
||||
{
|
||||
unsigned p[size + 1], i, j;
|
||||
unsigned i, j;
|
||||
unsigned p[42];
|
||||
|
||||
av_assert0(size < FF_ARRAY_ELEMS(p));
|
||||
|
||||
p[0] = 1;
|
||||
av_bprintf(b, "%8d\n", 1);
|
||||
|
Loading…
Reference in New Issue
Block a user