summaryrefslogtreecommitdiff
path: root/libavcodec/dwt.c
Commit message (Collapse)AuthorAge
* dwt: Code make up, removed gotosJordi Ortiz2011-11-05
| | | | | | (cherry picked from commit 14880406e1277cef91d9b22a4d9b3bf91f8ea4ca) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: enable ff_spatial_idwt_init_mmx()Michael Niedermayer2011-10-30
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* DIRAC Decoder stable version, MMX support removed.multiple authors2011-10-30
| | | | | | | | | Look for MMX_DISABLED to find the disabled functions. Authors of this code are Marco Gerards <marco@gnu.org> and David Conrad <lessen42@gmail.com> With changes from Jordi Ortiz <nenjordi@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Make ff_spatial_idwt_{init, slice} static to dwt.cDiego Elio Pettenò2011-01-26
| | | | | | | | Both functions seem to be commanded by the ff_spatial_idwt function instead. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit ebb06d96ed3f6e1c16f2d40e55c151b5b5522918)
* DWT: x86 init should depend on HAVE_MMXMåns Rullgård2010-03-14
| | | | | | | The init function is only compiled if MMX is enabled, the call must use the same condition. Originally committed as revision 22531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix to dwt functionsMåns Rullgård2010-03-14
| | | | Originally committed as revision 22523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate DWT from snow and dsputilMåns Rullgård2010-03-14
This moves the DWT functions from snow.c and dsputil.c to a file of their own. A new struct, DWTContext, holds the function pointers previously part of DSPContext. Originally committed as revision 22522 to svn://svn.ffmpeg.org/ffmpeg/trunk