summaryrefslogtreecommitdiff
path: root/libavcodec/dwt.c
Commit message (Collapse)AuthorAge
* Drop Snow codecDiego Biurrun2013-01-06
| | | | Snow is a toy codec with no real-world use and horrible code.
* dwt: Drop unused functions spatial_compose{53|97}i()Diego Biurrun2012-09-27
|
* dwt: Remove unused code.Diego Biurrun2012-08-26
|
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* dwt: remove variable-length arraysRonald S. Bultje2012-06-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* dwt: return errors from ff_slice_buffer_init()Diego Biurrun2012-05-22
|
* dwt: check malloc callsJordi Ortiz2012-05-22
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dwt: K&R prettyprinting cosmeticsJordi Ortiz2012-05-21
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make ff_spatial_idwt_{init, slice} static to dwt.cDiego Elio Pettenò2011-01-25
| | | | | | | Both functions seem to be commanded by the ff_spatial_idwt function instead. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* 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