From 932788be5af8dee062c77851b573ea47dd6d047a Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 10 Jan 2015 09:39:33 +0100 Subject: [PATCH] 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 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;