FFmpeg audio API: Difference between revisions

From MultimediaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:


* Generalized downmixing (simd optimized)
* Generalized downmixing (simd optimized)
* Codec settable downmixing coeffs, (dca and ac3 supports that, maybe other codecs also, could also be user defined)
* Output channel request function (ie, request a specified number of channels, default should be >2 mapped to 2 channels)
* Output channel request function (ie, request a specified number of channels, default should be >2 mapped to 2 channels)
* Optimized interleaving
* Optimized interleaving

Revision as of 07:34, 12 November 2007

Discussion page regarding the rework of the ffmpeg audio api to acomodate the requirements needed for todays audio codecs.

Features needed

  • Generalized downmixing (simd optimized)
  • Codec settable downmixing coeffs, (dca and ac3 supports that, maybe other codecs also, could also be user defined)
  • Output channel request function (ie, request a specified number of channels, default should be >2 mapped to 2 channels)
  • Optimized interleaving
  • Allow planer output, (don't duplicate interleaving code in every codec)
  • Add support for other bitdepths then 16bits
  • Add a better fft routine, maybe the KISS one
  • Fixedpoint mdct/fft functions