diff options
author | Anton Khirnov | 2015-01-10 09:39:33 +0100 |
---|---|---|
committer | Vittorio Giovara | 2015-01-14 17:17:24 +0100 |
commit | 932788be5af8dee062c77851b573ea47dd6d047a (patch) | |
tree | cbd71e73f191533e075ed1992d15f39134a51471 | |
parent | 8809c974a3fb51f96e498a5556a4a5bbacc581ce (diff) |
id3v2: add names to the parameters of ID3v2EMFunc.read
Some of them are not immediately obvious.
-rw-r--r-- | libavformat/id3v2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index cef1d9fdae..371564d6a4 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -508,8 +508,8 @@ fail: typedef struct ID3v2EMFunc { const char *tag3; const char *tag4; - void (*read)(AVFormatContext *, AVIOContext *, int, const char *, - ID3v2ExtraMeta **); + void (*read)(AVFormatContext *s, AVIOContext *pb, int taglen, + const char *tag, ID3v2ExtraMeta **extra_meta); void (*free)(void *obj); } ID3v2EMFunc; |