TODO
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. * finalize the API:
  2.   - which PCM output format (s24,s32,float...) ?
  3.   - any special needs for the extensions ?
  4. * implement missing features:
  5.   - check output gain! I couldn't find anything in the spec about this so
  6.     right now I'm assuming the output of the 32 subbands QMF is supposed to
  7.     be in 16 bits/sample form but this seems very dubious.
  8.   - fix downmix (user proper channes coefs, move downmix before QMF)
  9.   - sum/difference audio channels
  10.   - joint channels coding
  11.   - dynamic range
  12.   - dialog normalization
  13.   - check audio output accuracy (right now the main issue is the output gain)
  14.   - extensions (96k, extra channels)
  15. * optimize:
  16.   - don't use doubles everywhere
  17.   - integerize everything ? (main difficulty should be the QMF and LFE FIR)
  18.   - faster 32 subbands QMF
  19. * reliability:
  20.   - make the parser more tolerant to faulty bitstreams
  21.   - more sanity checks
  22.   - crc checks
  23.   - regressions tests
  24. * code cleanup