FFmpeg
Loading...
Searching...
No Matches
ac3dec_float.c
Go to the documentation of this file.
1/*
2 * AC-3 Audio Decoder
3 * This code was developed as part of Google Summer of Code 2006.
4 * E-AC-3 support was added as part of Google Summer of Code 2007.
5 *
6 * Copyright (c) 2006 Kartikey Mahendra BHATT (bhattkm at gmail dot com)
7 * Copyright (c) 2007-2008 Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
8 * Copyright (c) 2007 Justin Ruggles <justin.ruggles@gmail.com>
9 *
10 * This file is part of FFmpeg.
11 *
12 * FFmpeg is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
16 *
17 * FFmpeg is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with FFmpeg; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 */
26
27/**
28 * Upmix delay samples from stereo to original channel layout.
29 */
30
31#include "config_components.h"
32#define IMDCT_TYPE AV_TX_FLOAT_MDCT
33
34#include "ac3dec.h"
35#include "codec_internal.h"
36#include "profiles.h"
37#if CONFIG_EAC3_DECODER
38#include "eac3dec.c"
39#endif
40#include "ac3dec.c"
41
42#define EXPORT (AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY)
43static const AVOption options[] = {
44 { "cons_noisegen", "enable consistent noise generation", OFFSET(consistent_noise_generation), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR },
45 { "drc_scale", "percentage of dynamic range compression to apply", OFFSET(drc_scale), AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 6.0, PAR },
46 { "heavy_compr", "enable heavy dynamic range compression", OFFSET(heavy_compression), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR },
47 { "target_level", "target level in -dBFS (0 not applied)", OFFSET(target_level), AV_OPT_TYPE_INT, {.i64 = 0 }, -31, 0, PAR },
48
49{"dmix_mode", "Preferred Stereo Downmix Mode", OFFSET(preferred_stereo_downmix), AV_OPT_TYPE_INT, {.i64 = -1 }, -1, 3, EXPORT, .unit = "dmix_mode"},
50{"ltrt_cmixlev", "Lt/Rt Center Mix Level", OFFSET(ltrt_center_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, EXPORT },
51{"ltrt_surmixlev", "Lt/Rt Surround Mix Level", OFFSET(ltrt_surround_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, EXPORT },
52{"loro_cmixlev", "Lo/Ro Center Mix Level", OFFSET(loro_center_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, EXPORT },
53{"loro_surmixlev", "Lo/Ro Surround Mix Level", OFFSET(loro_surround_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, EXPORT },
54
55 { "downmix", "Request a specific channel layout from the decoder", OFFSET(downmix_layout), AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, .flags = PAR },
56
57 { NULL},
58};
59
61 .class_name = "(E-)AC3 decoder",
62 .item_name = av_default_item_name,
63 .option = options,
64 .version = LIBAVUTIL_VERSION_INT,
65};
66
68 .p.name = "ac3",
69 .p.type = AVMEDIA_TYPE_AUDIO,
70 .p.id = AV_CODEC_ID_AC3,
71 .priv_data_size = sizeof (AC3DecodeContext),
76 .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
78 CODEC_LONG_NAME("ATSC A/52A (AC-3)"),
80 .p.priv_class = &ac3_eac3_decoder_class,
81 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
82};
83
84#if CONFIG_EAC3_DECODER
86 .p.name = "eac3",
87 .p.type = AVMEDIA_TYPE_AUDIO,
88 .p.id = AV_CODEC_ID_EAC3,
89 .priv_data_size = sizeof (AC3DecodeContext),
94 .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
96 CODEC_LONG_NAME("ATSC A/52B (AC-3, E-AC-3)"),
98 .p.priv_class = &ac3_eac3_decoder_class,
100 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
101};
102#endif
#define EXPORT
static const AVClass ac3_eac3_decoder_class
const FFCodec ff_ac3_decoder
const FFCodec ff_eac3_decoder
#define PAR
Definition apedec.c:1740
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
#define CODEC_SAMPLEFMTS(...)
#define NULL
Definition coverity.c:32
void(* flush)(AVBSFContext *ctx)
Definition dts2pts.c:610
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define OFFSET(x)
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_CHLAYOUT
Underlying C type is AVChannelLayout.
Definition opt.h:330
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition opt.h:270
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition opt.h:326
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition codec.h:94
@ AV_CODEC_ID_EAC3
Definition codec_id.h:493
@ AV_CODEC_ID_AC3
Definition codec_id.h:456
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
static av_cold void ac3_decode_flush(AVCodecContext *avctx)
Definition ac3dec.c:157
static av_cold int ac3_decode_end(AVCodecContext *avctx)
Uninitialize the AC-3 decoder.
Definition ac3dec.c:1812
static int ac3_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Decode a single AC-3 frame.
Definition ac3dec.c:1408
static av_cold int ac3_decode_init(AVCodecContext *avctx)
AVCodec initialization.
Definition ac3dec.c:106
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
const AVProfile ff_eac3_profiles[]
Definition profiles.c:52
Describe the class of an AVClass context structure.
Definition log.h:76
AVOption.
Definition opt.h:428