mirror of https://git.ffmpeg.org/ffmpeg.git
id3v2: fix compiler warning for uninitialized variables
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
810a14dbcc
commit
acc88f07d4
|
@ -437,7 +437,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
|
|||
AVIOContext *pbx;
|
||||
unsigned char *buffer = NULL;
|
||||
int buffer_size = 0;
|
||||
const ID3v2EMFunc *extra_func;
|
||||
const ID3v2EMFunc *extra_func = NULL;
|
||||
unsigned char *compressed_buffer = NULL;
|
||||
int compressed_buffer_size = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue