Merge commit 'meins/master'
[paraslash.git] / wmadec_filter.c
2009-12-21 Andre NollMerge commit 'meins/master'
2009-12-20 Andre NollMerge branch 'maint'
2009-12-19 Andre NollMerge branch 'maint'
2009-12-19 Andre Nollwmadec: Improve documentation of struct private_wmadec_...
2009-12-19 Andre NollMerge branch 'maint'
2009-12-10 Andre NollMerge branch 'maint'
2009-12-07 Andre NollMerge branch 'maint'
2009-12-02 Andre NollMerge branch 'maint'
2009-11-30 Andre NollMerge branch 'maint'
2009-11-27 Andre NollMerge branch 'maint'
2009-11-18 Andre Nollwmadec: Remove some redundant braces.
2009-11-18 Andre Nollwmadec: Kill static variable frame_count.
2009-11-18 Andre Nollwma: Improve error diagnostics.
2009-11-18 Andre Nollwma: Decode as much as possible.
2009-11-18 Andre NollKill pwd->coefs_start.
2009-11-18 Andre Nollwma: More trivial whitespace cleanups.
2009-11-18 Andre Nollcompute_mdct_coefficients(): Trivial whitespace cleanups.
2009-11-18 Andre Nollcompute_mdct_coefficients(): Further reducuce indentati...
2009-11-18 Andre Nollcompute_mdct_coefficients(): Reduce indentation level...
2009-11-18 Andre Nollcompute_mdct_coefficients(): Kill pointless cast.
2009-11-18 Andre Nollwma: Move computation of mdct coefficients into a separ...
2009-11-18 Andre Nollwma: Clean up compute_high_band_values().
2009-11-18 Andre Nollwma: Move computation of high band values to a separate...
2009-11-18 Andre Nollskip pointless ff_ prefix.
2009-11-18 Andre NollAdd __aligned macro to gcc-compat.h. and use this inste...
2009-11-18 Andre NollFix two gcc warnings on 64 bit archs.
2009-11-18 Andre Nollwmadec: Add a missing include that is needed on FreeBSD.
2009-11-18 Andre NollDon't try to init the decoder if less than WMA_FRAME_SK...
2009-11-18 Andre NollAdd some more documentation
2009-11-18 Andre Nollwma_decode_block(): Kill useless variable 'sign'.
2009-11-18 Andre Nollwma_decode_block(): Reduce indentation level.
2009-11-18 Andre Nolltrivial whitespace fixes.
2009-11-18 Andre NollKill unused pwd->int_table.
2009-11-18 Andre Nollwma_decode_superframe(): Make some variables more local.
2009-11-18 Andre NollRename get_bits1() to get_bit().
2009-11-18 Andre Nollpass the buffer size to init_get_bits() in bytes.
2009-11-18 Andre NollReplace GET_VLC by an inline funcion and kill get_vlc2().
2009-11-18 Andre NollRemove name parameter from GET_VLC.
2009-11-18 Andre NollKill codes_wrap parameter from init_vlc().
2009-11-18 Andre NollKill the bits_wrap and bits_size parameters of init_vlc().
2009-11-18 Andre Nollpass only one arg to wma_init().
2009-11-18 Andre NollAlways call struct private_wmadec_data pwd.
2009-11-18 Andre NollChange name of private_wmadec_data parameter of wmadec_...
2009-11-18 Andre NollMake wmadec_cleanup() return void.
2009-11-18 Andre NollMore whitespace cleanups.
2009-11-18 Andre Nolltrivial whitespace cleanups
2009-11-18 Andre Nollwhitespace cleanups.
2009-11-18 Andre Nollrename vector_fmul_add() vector_fmul_reverse_c() and...
2009-11-18 Andre Nollremove src3 parameter from vector_fmul_add().
2009-11-18 Andre Nollremove step parameter from vector_fmul_add().
2009-11-18 Andre Nollwe always compute the inverse mdct, so get rid of the...
2009-11-18 Andre Nollmove sine window stuff from imdct.c to wmadec_filter.c.
2009-11-18 Andre Nollremove duplicate math.h include
2009-11-18 Andre Nolltrivial whitespace cleanups
2009-11-18 Andre Nollremove unused block_num field of struct private_wmadec_...
2009-11-18 Andre NollMore misc wma fixes.
2009-11-18 Andre NollRename mdcdt.c and mdcdt.h.
2009-11-18 Andre NollSet channels and samplerate of the filter chain
2009-11-18 Andre NollFirst draft of the wma decoder.