[FFmpeg-cvslog] avformat/wavdec: add support for decoding 24.0 and 16.8 floating point pcm formats
Paul B Mahol
git at videolan.org
Thu Dec 22 11:34:03 EET 2016
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Mon Sep 19 23:08:32 2016 +0200| [314269118161ed7735a905332ccf847d1ec696a2] | committer: Paul B Mahol
avformat/wavdec: add support for decoding 24.0 and 16.8 floating point pcm formats
Fixes #5602 and #5603.
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=314269118161ed7735a905332ccf847d1ec696a2
---
libavformat/wavdec.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index ae42a61..987155e 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -556,6 +556,19 @@ break_loop:
if (sample_count)
st->duration = sample_count;
+ if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S32LE &&
+ st->codecpar->block_align == st->codecpar->channels * 4 &&
+ st->codecpar->bits_per_coded_sample == 32 &&
+ st->codecpar->extradata_size == 2 &&
+ AV_RL16(st->codecpar->extradata) == 1) {
+ st->codecpar->codec_id = AV_CODEC_ID_PCM_F16LE;
+ st->codecpar->bits_per_coded_sample = 16;
+ } else if (st->codecpar->codec_id == AV_CODEC_ID_PCM_S24LE &&
+ st->codecpar->block_align == st->codecpar->channels * 4 &&
+ st->codecpar->bits_per_coded_sample == 24) {
+ st->codecpar->codec_id = AV_CODEC_ID_PCM_F24LE;
+ }
+
ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
More information about the ffmpeg-cvslog
mailing list