ac3dec_float.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. * Upmix delay samples from stereo to original channel layout.
  28. */
  29. #include "config_components.h"
  30. #define IMDCT_TYPE AV_TX_FLOAT_MDCT
  31. #include "ac3dec.h"
  32. #include "codec_internal.h"
  33. #include "profiles.h"
  34. #include "eac3dec.c"
  35. #include "ac3dec.c"
  36. static const AVOption options[] = {
  37. { "cons_noisegen", "enable consistent noise generation", OFFSET(consistent_noise_generation), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR },
  38. { "drc_scale", "percentage of dynamic range compression to apply", OFFSET(drc_scale), AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 6.0, PAR },
  39. { "heavy_compr", "enable heavy dynamic range compression", OFFSET(heavy_compression), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR },
  40. { "target_level", "target level in -dBFS (0 not applied)", OFFSET(target_level), AV_OPT_TYPE_INT, {.i64 = 0 }, -31, 0, PAR },
  41. {"dmix_mode", "Preferred Stereo Downmix Mode", OFFSET(preferred_stereo_downmix), AV_OPT_TYPE_INT, {.i64 = -1 }, -1, 2, 0, "dmix_mode"},
  42. {"ltrt_cmixlev", "Lt/Rt Center Mix Level", OFFSET(ltrt_center_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
  43. {"ltrt_surmixlev", "Lt/Rt Surround Mix Level", OFFSET(ltrt_surround_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
  44. {"loro_cmixlev", "Lo/Ro Center Mix Level", OFFSET(loro_center_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
  45. {"loro_surmixlev", "Lo/Ro Surround Mix Level", OFFSET(loro_surround_mix_level), AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
  46. { "downmix", "Request a specific channel layout from the decoder", OFFSET(downmix_layout), AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, .flags = PAR },
  47. { NULL},
  48. };
  49. static const AVClass ac3_eac3_decoder_class = {
  50. .class_name = "(E-)AC3 decoder",
  51. .item_name = av_default_item_name,
  52. .option = options,
  53. .version = LIBAVUTIL_VERSION_INT,
  54. };
  55. const FFCodec ff_ac3_decoder = {
  56. .p.name = "ac3",
  57. .p.type = AVMEDIA_TYPE_AUDIO,
  58. .p.id = AV_CODEC_ID_AC3,
  59. .priv_data_size = sizeof (AC3DecodeContext),
  60. .init = ac3_decode_init,
  61. .close = ac3_decode_end,
  62. FF_CODEC_DECODE_CB(ac3_decode_frame),
  63. .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
  64. AV_CODEC_CAP_DR1,
  65. CODEC_LONG_NAME("ATSC A/52A (AC-3)"),
  66. .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
  67. AV_SAMPLE_FMT_NONE },
  68. .p.priv_class = &ac3_eac3_decoder_class,
  69. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
  70. };
  71. #if CONFIG_EAC3_DECODER
  72. const FFCodec ff_eac3_decoder = {
  73. .p.name = "eac3",
  74. .p.type = AVMEDIA_TYPE_AUDIO,
  75. .p.id = AV_CODEC_ID_EAC3,
  76. .priv_data_size = sizeof (AC3DecodeContext),
  77. .init = ac3_decode_init,
  78. .close = ac3_decode_end,
  79. FF_CODEC_DECODE_CB(ac3_decode_frame),
  80. .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
  81. AV_CODEC_CAP_DR1,
  82. CODEC_LONG_NAME("ATSC A/52B (AC-3, E-AC-3)"),
  83. .p.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
  84. AV_SAMPLE_FMT_NONE },
  85. .p.priv_class = &ac3_eac3_decoder_class,
  86. .p.profiles = NULL_IF_CONFIG_SMALL(ff_eac3_profiles),
  87. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
  88. };
  89. #endif