diff options
author | Alessandro Ghedini <alessandro@ghedini.me> | 2014-04-04 11:50:45 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-04-04 17:40:51 +0200 |
commit | 1d55f8d5f6f2cd74fa27170e2be37a72441d9202 (patch) | |
tree | 178b763b0c9f726c817d7f5b55c8f2598b27f18f /libavformat/flacdec.c | |
parent | 8542f9c4f17125d483c40c0c5723842f1c982f81 (diff) | |
download | ffmpeg-1d55f8d5f6f2cd74fa27170e2be37a72441d9202.tar.gz |
flacdec: export replaygain tags from Vorbis comments
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r-- | libavformat/flacdec.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index ecbb7ec0ef..11360a9da1 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -26,6 +26,7 @@ #include "rawdec.h" #include "oggdec.h" #include "vorbiscomment.h" +#include "replaygain.h" #include "libavcodec/bytestream.h" static int flac_read_header(AVFormatContext *s) @@ -146,6 +147,10 @@ static int flac_read_header(AVFormatContext *s) } } + ret = ff_replaygain_export(st, s->metadata); + if (ret < 0) + return ret; + return 0; } |