Module: libav Branch: master Commit: 932788be5af8dee062c77851b573ea47dd6d047a
Author: Anton Khirnov <[email protected]> Committer: Vittorio Giovara <[email protected]> Date: Sat Jan 10 09:39:33 2015 +0100 id3v2: add names to the parameters of ID3v2EMFunc.read Some of them are not immediately obvious. --- libavformat/id3v2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index cef1d9f..371564d 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
