mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
id3v2: fix type of ID3v2EMFunc.free()
This commit is contained in:
parent
5511ad14fe
commit
ec22979a1d
@ -122,8 +122,9 @@ static unsigned int get_size(AVIOContext *s, int len)
|
|||||||
/**
|
/**
|
||||||
* Free GEOB type extra metadata.
|
* Free GEOB type extra metadata.
|
||||||
*/
|
*/
|
||||||
static void free_geobtag(ID3v2ExtraMetaGEOB *geob)
|
static void free_geobtag(void *obj)
|
||||||
{
|
{
|
||||||
|
ID3v2ExtraMetaGEOB *geob = obj;
|
||||||
av_free(geob->mime_type);
|
av_free(geob->mime_type);
|
||||||
av_free(geob->file_name);
|
av_free(geob->file_name);
|
||||||
av_free(geob->description);
|
av_free(geob->description);
|
||||||
@ -384,7 +385,7 @@ typedef struct ID3v2EMFunc {
|
|||||||
const char *tag3;
|
const char *tag3;
|
||||||
const char *tag4;
|
const char *tag4;
|
||||||
void (*read)(AVFormatContext*, AVIOContext*, int, char*, ID3v2ExtraMeta **);
|
void (*read)(AVFormatContext*, AVIOContext*, int, char*, ID3v2ExtraMeta **);
|
||||||
void (*free)();
|
void (*free)(void *obj);
|
||||||
} ID3v2EMFunc;
|
} ID3v2EMFunc;
|
||||||
|
|
||||||
static const ID3v2EMFunc id3v2_extra_meta_funcs[] = {
|
static const ID3v2EMFunc id3v2_extra_meta_funcs[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user