1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-10-06 05:47:18 +02:00

avcodec/libmpeghdec: add MPEG-H 3DA Fraunhofer IIS mpeghdec decoder

Adds a wrapper around the Fraunhofer IIS MPEG-H 3D Audio mpeghdec [1]
decoder shared library.

[1] https://github.com/Fraunhofer-IIS/mpeghdec

Signed-off-by: Stadelmann, Daniel <daniel.stadelmann@iis.fraunhofer.de>
This commit is contained in:
Stadelmann, Daniel
2025-08-01 07:15:37 +02:00
parent e5f82ab868
commit 56c14f2311
8 changed files with 315 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ version <next>:
- EXIF Metadata Parsing - EXIF Metadata Parsing
- gfxcapture: Windows.Graphics.Capture based window/monitor capture - gfxcapture: Windows.Graphics.Capture based window/monitor capture
- hxvs demuxer for HXVS/HXVT IP camera format - hxvs demuxer for HXVS/HXVT IP camera format
- MPEG-H 3D Audio decoding via mpeghdec
version 8.0: version 8.0:

4
configure vendored
View File

@@ -250,6 +250,7 @@ External library support:
--enable-liblensfun enable lensfun lens correction [no] --enable-liblensfun enable lensfun lens correction [no]
--enable-libmodplug enable ModPlug via libmodplug [no] --enable-libmodplug enable ModPlug via libmodplug [no]
--enable-libmp3lame enable MP3 encoding via libmp3lame [no] --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
--enable-libmpeghdec enable MPEG-H 3DA decoding via libmpeghdec [no]
--enable-liboapv enable APV encoding via liboapv [no] --enable-liboapv enable APV encoding via liboapv [no]
--enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no] --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
--enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no] --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
@@ -1926,6 +1927,7 @@ EXTERNAL_LIBRARY_GPL_LIST="
EXTERNAL_LIBRARY_NONFREE_LIST=" EXTERNAL_LIBRARY_NONFREE_LIST="
decklink decklink
libfdk_aac libfdk_aac
libmpeghdec
libtls libtls
" "
@@ -3673,6 +3675,7 @@ liblc3_encoder_select="audio_frame_queue"
libmodplug_demuxer_deps="libmodplug" libmodplug_demuxer_deps="libmodplug"
libmp3lame_encoder_deps="libmp3lame" libmp3lame_encoder_deps="libmp3lame"
libmp3lame_encoder_select="audio_frame_queue mpegaudioheader" libmp3lame_encoder_select="audio_frame_queue mpegaudioheader"
libmpeghdec_decoder_deps="libmpeghdec"
liboapv_encoder_deps="liboapv" liboapv_encoder_deps="liboapv"
libopencore_amrnb_decoder_deps="libopencore_amrnb" libopencore_amrnb_decoder_deps="libopencore_amrnb"
libopencore_amrnb_encoder_deps="libopencore_amrnb" libopencore_amrnb_encoder_deps="libopencore_amrnb"
@@ -7184,6 +7187,7 @@ fi
enabled libmodplug && require_pkg_config libmodplug libmodplug libmodplug/modplug.h ModPlug_Load enabled libmodplug && require_pkg_config libmodplug libmodplug libmodplug/modplug.h ModPlug_Load
enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame $libm_extralibs enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame $libm_extralibs
enabled libmpeghdec && require_pkg_config libmpeghdec "mpeghdec >= 3.0.0" mpeghdec/mpeghdecoder.h mpeghdecoder_init
enabled libmysofa && { check_pkg_config libmysofa libmysofa mysofa.h mysofa_neighborhood_init_withstepdefine || enabled libmysofa && { check_pkg_config libmysofa libmysofa mysofa.h mysofa_neighborhood_init_withstepdefine ||
require libmysofa mysofa.h mysofa_neighborhood_init_withstepdefine -lmysofa $zlib_extralibs; } require libmysofa mysofa.h mysofa_neighborhood_init_withstepdefine -lmysofa $zlib_extralibs; }
enabled libnpp && { check_lib libnpp npp.h nppGetLibVersion -lnppig -lnppicc -lnppc -lnppidei -lnppif || enabled libnpp && { check_lib libnpp npp.h nppGetLibVersion -lnppig -lnppicc -lnppc -lnppidei -lnppif ||

View File

@@ -356,6 +356,15 @@ value is 0 (disabled).
@end table @end table
@section libmpeghdec
libmpeghdec decoder wrapper.
libmpeghdec allows libmpeghdec to decode the MPEG-H 3D audio codec.
Requires the presence of the libmpeghdec headers and library during
configuration. You need to explicitly configure the build with
@code{--enable-libmpeghdec}.
@section libopencore-amrnb @section libopencore-amrnb
libopencore-amrnb decoder wrapper. libopencore-amrnb decoder wrapper.

View File

@@ -250,6 +250,14 @@ Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
instructions for installing the library. instructions for installing the library.
Then pass @code{--enable-libfdk-aac} to configure to enable it. Then pass @code{--enable-libfdk-aac} to configure to enable it.
@subsection Fraunhofer MPEG-H 3D Audio decoder library
FFmpeg can make use of the Fraunhofer MPEG-H decoder library for MPEG-H 3DA decoding.
Go to @url{https://github.com/Fraunhofer-IIS/mpeghdec} and follow the
instructions for installing the library.
Then pass @code{--enable-libmpeghdec} to configure to enable it.
@subsection LC3 library @subsection LC3 library
FFmpeg can make use of the Google LC3 library for LC3 decoding & encoding. FFmpeg can make use of the Google LC3 library for LC3 decoding & encoding.
@@ -1344,6 +1352,8 @@ following image formats are supported:
@item MP3 (MPEG audio layer 3) @tab E @tab IX @item MP3 (MPEG audio layer 3) @tab E @tab IX
@tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported @tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported
@item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X @item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X
@item MPEG-H 3D Audio @tab @tab E
@tab decoding supported through external library libmpeghdec
@item MobiClip FastAudio @tab @tab X @item MobiClip FastAudio @tab @tab X
@item Musepack SV7 @tab @tab X @item Musepack SV7 @tab @tab X
@item Musepack SV8 @tab @tab X @item Musepack SV8 @tab @tab X

View File

@@ -1180,6 +1180,7 @@ OBJS-$(CONFIG_LIBKVAZAAR_ENCODER) += libkvazaar.o
OBJS-$(CONFIG_LIBLC3_ENCODER) += liblc3enc.o OBJS-$(CONFIG_LIBLC3_ENCODER) += liblc3enc.o
OBJS-$(CONFIG_LIBLC3_DECODER) += liblc3dec.o OBJS-$(CONFIG_LIBLC3_DECODER) += liblc3dec.o
OBJS-$(CONFIG_LIBMP3LAME_ENCODER) += libmp3lame.o OBJS-$(CONFIG_LIBMP3LAME_ENCODER) += libmp3lame.o
OBJS-$(CONFIG_LIBMPEGHDEC_DECODER) += libmpeghdec.o
OBJS-$(CONFIG_LIBOAPV_ENCODER) += liboapvenc.o OBJS-$(CONFIG_LIBOAPV_ENCODER) += liboapvenc.o
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_DECODER) += libopencore-amr.o OBJS-$(CONFIG_LIBOPENCORE_AMRNB_DECODER) += libopencore-amr.o
OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o

View File

@@ -799,6 +799,7 @@ extern const FFCodec ff_libjxl_encoder;
extern const FFCodec ff_liblc3_encoder; extern const FFCodec ff_liblc3_encoder;
extern const FFCodec ff_liblc3_decoder; extern const FFCodec ff_liblc3_decoder;
extern const FFCodec ff_libmp3lame_encoder; extern const FFCodec ff_libmp3lame_encoder;
extern const FFCodec ff_libmpeghdec_decoder;
extern const FFCodec ff_liboapv_encoder; extern const FFCodec ff_liboapv_encoder;
extern const FFCodec ff_libopencore_amrnb_encoder; extern const FFCodec ff_libopencore_amrnb_encoder;
extern const FFCodec ff_libopencore_amrnb_decoder; extern const FFCodec ff_libopencore_amrnb_decoder;

288
libavcodec/libmpeghdec.c Normal file
View File

@@ -0,0 +1,288 @@
/*
* MPEG-H 3D Audio Decoder Wrapper
* Copyright (C) 2025 Fraunhofer Institute for Integrated Circuits IIS
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* Please note that this FFmpeg Software is licensed under the LGPL-2.1
* but is combined with software that is licensed under different terms, namely
* the "Software License for The Fraunhofer FDK MPEG-H Software". Fraunhofer
* as the initial licensor does not interpret the LGPL-2.1 as requiring
* distribution of the MPEG-H Software under the LGPL-2.1 if being distributed
* together with this FFmpeg Software. Therefore, downstream distribution of
* FFmpeg Software does not imply any right to redistribute the MPEG-H Software
* under the LGPL-2.1.
*/
#include <string.h>
#include <mpeghdec/mpeghdecoder.h>
#include "libavutil/channel_layout.h"
#include "libavutil/frame.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "codec_internal.h"
#include "decode.h"
#define MAX_LOST_FRAMES 2
// 32-bit int * 22.2 * max framesize * (max delay frames + 1)
#define MAX_OUTBUF_SIZE (sizeof(int32_t) * 24 * 3072 * (MAX_LOST_FRAMES + 1))
typedef struct MPEGH3DADecContext {
AVClass *av_class;
// pointer to the decoder
HANDLE_MPEGH_DECODER_CONTEXT decoder;
// Internal values
int32_t *decoder_buffer;
int decoder_buffer_size;
} MPEGH3DADecContext;
// private class definition for ffmpeg
static const AVClass mpegh3da_class = {
.class_name = "MPEG-H 3D Audio Decoder",
.item_name = av_default_item_name,
.version = LIBAVUTIL_VERSION_INT,
};
static av_cold int mpegh3dadec_close(AVCodecContext *avctx)
{
MPEGH3DADecContext *s = avctx->priv_data;
if (s->decoder)
mpeghdecoder_destroy(s->decoder);
s->decoder = NULL;
av_freep(&s->decoder_buffer);
return 0;
}
// Lookup CICP for FFmpeg channel layout, see:
// https://github.com/Fraunhofer-IIS/mpeghdec/wiki/MPEG-H-decoder-target-layouts
static av_cold int channel_layout_to_cicp(const AVChannelLayout *layout)
{
const AVChannelLayout layout_7point2point3 =
(AVChannelLayout) AV_CHANNEL_LAYOUT_MASK(
12, (AV_CH_LAYOUT_5POINT1POINT2 | AV_CH_SIDE_SURROUND_LEFT |
AV_CH_SIDE_SURROUND_RIGHT | AV_CH_TOP_BACK_CENTER |
AV_CH_LOW_FREQUENCY_2));
const AVChannelLayout layout_5point1point6 =
(AVChannelLayout) AV_CHANNEL_LAYOUT_MASK(
12, (AV_CH_LAYOUT_5POINT1POINT4_BACK | AV_CH_TOP_FRONT_CENTER |
AV_CH_TOP_CENTER));
const AVChannelLayout layout_7point1point6 =
(AVChannelLayout) AV_CHANNEL_LAYOUT_MASK(
14, (AV_CH_LAYOUT_7POINT1POINT4_BACK | AV_CH_TOP_FRONT_CENTER |
AV_CH_TOP_CENTER));
if (!av_channel_layout_compare(layout,
&(AVChannelLayout) AV_CHANNEL_LAYOUT_MONO)) {
return 1;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_STEREO)) {
return 2;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_SURROUND)) {
return 3;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_4POINT0)) {
return 4;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_5POINT0)) {
return 5;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_5POINT1)) {
return 6;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_7POINT1_WIDE)) {
return 7;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_2_1)) {
return 9;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_2_2)) {
return 10;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_6POINT1)) {
return 11;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_7POINT1)) {
return 12;
} else if (!av_channel_layout_compare(
layout, &(AVChannelLayout) AV_CHANNEL_LAYOUT_22POINT2)) {
return 13;
} else if (!av_channel_layout_compare(
layout,
&(AVChannelLayout) AV_CHANNEL_LAYOUT_5POINT1POINT2)) {
return 14;
} else if (!av_channel_layout_compare(layout, &layout_7point2point3)) {
return 15;
} else if (!av_channel_layout_compare(
layout,
&(AVChannelLayout) AV_CHANNEL_LAYOUT_5POINT1POINT4_BACK)) {
return 16;
} else if (!av_channel_layout_compare(layout, &layout_5point1point6)) {
return 17;
} else if (!av_channel_layout_compare(layout, &layout_7point1point6)) {
return 18;
} else if (!av_channel_layout_compare(
layout,
&(AVChannelLayout) AV_CHANNEL_LAYOUT_7POINT1POINT4_BACK)) {
return 19;
}
return 0;
}
static av_cold int mpegh3dadec_init(AVCodecContext *avctx)
{
int cicp;
MPEGH3DADecContext *s = avctx->priv_data;
if (avctx->ch_layout.nb_channels == 0) {
av_log(avctx, AV_LOG_ERROR, "Channel layout needs to be specified\n");
return AVERROR(EINVAL);
} else if ((cicp = channel_layout_to_cicp(&avctx->ch_layout)) <= 0) {
av_log(avctx, AV_LOG_ERROR, "Unsupported channel layout\n");
return AVERROR(EINVAL);
}
s->decoder = NULL;
avctx->delay = 0;
avctx->sample_fmt = AV_SAMPLE_FMT_S32;
avctx->sample_rate = 48000;
s->decoder_buffer_size = MAX_OUTBUF_SIZE;
s->decoder_buffer = av_malloc(s->decoder_buffer_size);
if (!s->decoder_buffer) {
mpegh3dadec_close(avctx);
return AVERROR(ENOMEM);
}
// initialize the decoder
s->decoder = mpeghdecoder_init(cicp);
if (s->decoder == NULL) {
av_log(avctx, AV_LOG_ERROR, "MPEG-H decoder library init failed.\n");
mpegh3dadec_close(avctx);
return AVERROR_EXTERNAL;
}
if (avctx->extradata_size) {
if (mpeghdecoder_setMhaConfig(s->decoder, avctx->extradata,
avctx->extradata_size)) {
av_log(avctx, AV_LOG_ERROR, "Unable to set MHA configuration\n");
mpegh3dadec_close(avctx);
return AVERROR_INVALIDDATA;
}
}
return 0;
}
static int mpegh3dadec_decode_frame(AVCodecContext *avctx, AVFrame *frame,
int *got_frame_ptr, AVPacket *avpkt)
{
MPEGH3DADecContext *s = avctx->priv_data;
int ret;
MPEGH_DECODER_ERROR err;
MPEGH_DECODER_OUTPUT_INFO out_info;
if (!avctx->sample_rate) {
av_log(avctx, AV_LOG_ERROR, "Audio sample rate is not set");
return AVERROR_INVALIDDATA;
}
if (avpkt->data != NULL && avpkt->size > 0) {
if ((err = mpeghdecoder_processTimescale(s->decoder, avpkt->data,
avpkt->size, avpkt->pts,
avctx->sample_rate))) {
av_log(avctx, AV_LOG_ERROR, "mpeghdecoder_process() failed: %x\n",
err);
return AVERROR_INVALIDDATA;
}
} else {
// we are flushing
err = mpeghdecoder_flushAndGet(s->decoder);
if (err != MPEGH_DEC_OK && err != MPEGH_DEC_FEED_DATA)
av_log(avctx, AV_LOG_WARNING,
"mpeghdecoder_flushAndGet() failed: %d\n", err);
}
err = mpeghdecoder_getSamples(s->decoder, s->decoder_buffer,
s->decoder_buffer_size / sizeof(int32_t),
&out_info);
if (err == MPEGH_DEC_FEED_DATA) {
// no frames to produce at the moment
return avpkt->size;
} else if (err) {
av_log(avctx, AV_LOG_ERROR, "mpeghdecoder_getSamples() failed: %x\n",
err);
return AVERROR_UNKNOWN;
}
frame->nb_samples = avctx->frame_size = out_info.numSamplesPerChannel;
frame->sample_rate = avctx->sample_rate = out_info.sampleRate;
frame->pts = out_info.ticks;
frame->time_base.num = 1;
frame->time_base.den = out_info.sampleRate;
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
return ret;
memcpy(frame->extended_data[0], s->decoder_buffer,
avctx->ch_layout.nb_channels * avctx->frame_size *
av_get_bytes_per_sample(avctx->sample_fmt));
*got_frame_ptr = 1;
return ret = avpkt->size;
}
static av_cold void mpegh3dadec_flush(AVCodecContext *avctx)
{
MPEGH_DECODER_ERROR err;
MPEGH3DADecContext *s = avctx->priv_data;
if (!s->decoder)
return;
err = mpeghdecoder_flush(s->decoder);
if (err != MPEGH_DEC_OK && err != MPEGH_DEC_FEED_DATA)
av_log(avctx, AV_LOG_WARNING, "mpeghdecoder_flush failed: %d\n", err);
}
const FFCodec ff_libmpeghdec_decoder = {
.p.name = "libmpeghdec",
CODEC_LONG_NAME("libmpeghdec (MPEG-H 3D Audio)"),
.p.priv_class = &mpegh3da_class,
.p.type = AVMEDIA_TYPE_AUDIO,
.p.id = AV_CODEC_ID_MPEGH_3D_AUDIO,
.p.capabilities =
AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_CHANNEL_CONF,
.priv_data_size = sizeof(MPEGH3DADecContext),
.init = mpegh3dadec_init,
FF_CODEC_DECODE_CB(mpegh3dadec_decode_frame),
.close = mpegh3dadec_close,
.flush = mpegh3dadec_flush,
CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_S32),
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
.p.wrapper_name = "libmpeghdec",
};

View File

@@ -29,7 +29,7 @@
#include "version_major.h" #include "version_major.h"
#define LIBAVCODEC_VERSION_MINOR 15 #define LIBAVCODEC_VERSION_MINOR 16
#define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \