1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

id3v2: add names to the parameters of ID3v2EMFunc.read

Some of them are not immediately obvious.
This commit is contained in:
Anton Khirnov 2015-01-10 09:39:33 +01:00 committed by Vittorio Giovara
parent 8809c974a3
commit 932788be5a

View File

@ -508,8 +508,8 @@ fail:
typedef struct ID3v2EMFunc { typedef struct ID3v2EMFunc {
const char *tag3; const char *tag3;
const char *tag4; const char *tag4;
void (*read)(AVFormatContext *, AVIOContext *, int, const char *, void (*read)(AVFormatContext *s, AVIOContext *pb, int taglen,
ID3v2ExtraMeta **); const char *tag, ID3v2ExtraMeta **extra_meta);
void (*free)(void *obj); void (*free)(void *obj);
} ID3v2EMFunc; } ID3v2EMFunc;