[FFmpeg-cvslog] id3v2: add names to the parameters of ID3v2EMFunc.read

Anton Khirnov git at videolan.org
Thu Jan 15 13:10:19 CET 2015


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Jan 10 09:39:33 2015 +0100| [932788be5af8dee062c77851b573ea47dd6d047a] | committer: Vittorio Giovara

id3v2: add names to the parameters of ID3v2EMFunc.read

Some of them are not immediately obvious.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=932788be5af8dee062c77851b573ea47dd6d047a
---

 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;
 



More information about the ffmpeg-cvslog mailing list