mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/aiffdec: parse replaygain metadata
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9e0a071ede
commit
6390f52ac7
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user