[FFmpeg-cvslog] avformat/aiffdec: parse replaygain metadata

Moritz Barsnick git at videolan.org
Sat Sep 21 00:29:33 EEST 2019


ffmpeg | branch: master | Moritz Barsnick <barsnick at gmx.net> | Wed Mar 13 10:17:40 2019 +0100| [6390f52ac79932ed53a96619aa9cf2efd0a0fd19] | committer: Michael Niedermayer

avformat/aiffdec: parse replaygain metadata

Signed-off-by: Moritz Barsnick <barsnick at gmx.net>
Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 libavformat/aiffdec.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c
index fcedb0a804..61ef099f26 100644
--- a/libavformat/aiffdec.c
+++ b/libavformat/aiffdec.c
@@ -29,6 +29,7 @@
 #include "isom.h"
 #include "id3v2.h"
 #include "mov_chan.h"
+#include "replaygain.h"
 
 #define AIFF                    0
 #define AIFF_C_VERSION1         0xA2805140
@@ -348,6 +349,10 @@ static int aiff_read_header(AVFormatContext *s)
         }
     }
 
+    ret = ff_replaygain_export(st, s->metadata);
+    if (ret < 0)
+        return ret;
+
 got_sound:
     if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
         av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");



More information about the ffmpeg-cvslog mailing list