summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
Commit message (Collapse)AuthorAge
* prevent warnings about functions being possibly unusedMichael Niedermayer2007-12-06
| | | | Originally committed as revision 11174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* thank you for your efforts to keep my code clean, but i would like toMichael Niedermayer2007-12-06
| | | | | | | | | | | | | | keep the functions below as they are usefull for debugging, testing, experiments and development revert r11048 | diego | 2007-11-17 00:15:39 +0100 (Sat, 17 Nov 2007) | 4 lines Remove unused functions, fixes the warnings: snow.c:1163: warning: 'spatial_compose53i' defined but not used snow.c:1313: warning: 'spatial_compose97i' defined but not used Originally committed as revision 11173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* main() --> main(void)Diego Biurrun2007-11-23
| | | | Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused functions, fixes the warnings:Diego Biurrun2007-11-16
| | | | | | | snow.c:1163: warning: 'spatial_compose53i' defined but not used snow.c:1313: warning: 'spatial_compose97i' defined but not used Originally committed as revision 11048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid some halfpel related #ifdefAurelien Jacobs2007-11-15
| | | | Originally committed as revision 11041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put halfpel_interpol under the same #ifdef as its usage, fixes the warning:Diego Biurrun2007-11-15
| | | | | | snow.c:4142: warning: #halfpel_interpol# defined but not used Originally committed as revision 11035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add comments to some #endif directives.Diego Biurrun2007-11-10
| | | | Originally committed as revision 10998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix vissual --> visual typo.Diego Biurrun2007-11-10
| | | | Originally committed as revision 10997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve unsupported (pixel) format error message.Stefano Sabatini2007-11-10
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning fixes:Diego Biurrun2007-10-11
| | | | | | | | | snow.c: In function ‘decode_header’: snow.c:3668: warning: unused variable ‘absum’ snow.c: In function ‘decode_init’: snow.c:4551: warning: unused variable ‘s’ Originally committed as revision 10708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some experimental iterative quantization codeMichael Niedermayer2007-09-23
| | | | | | | disabled as it is VERY slow gain is 0.1-0.2 psnr at low qp Originally committed as revision 10556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make changing spatial_decomposition_count per frame workMichael Niedermayer2007-09-09
| | | | Originally committed as revision 10464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not ignore return of decode_header()Michael Niedermayer2007-09-09
| | | | Originally committed as revision 10461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not force the halfpel filter coeffs to be retransmitted on every frameMichael Niedermayer2007-09-09
| | | | | | if always_reset is set Originally committed as revision 10460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow changing of the spatial_decomposition_count and quantization tablesMichael Niedermayer2007-09-09
| | | | | | per frame (this is untested as the encoder does not use it yet) Originally committed as revision 10458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* perform init after reading the values needed for initMichael Niedermayer2007-09-09
| | | | | | fixes decoding of files with spatial_decomposition_count!=5 Originally committed as revision 10457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unneeded and impossible during init ...Michael Niedermayer2007-09-09
| | | | Originally committed as revision 10455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unusedMichael Niedermayer2007-09-09
| | | | Originally committed as revision 10454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate slice buffer after parsing the header containing needed parametersMichael Niedermayer2007-09-09
| | | | | | argh i really wish i had never accepted these slice patches ... Originally committed as revision 10453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ()Michael Niedermayer2007-09-09
| | | | Originally committed as revision 10452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spatial_decomposition_count != 5 bugfixMichael Niedermayer2007-09-09
| | | | Originally committed as revision 10451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* scaling obmc tables under #if 0 also by 4 (yes they where forgotten apparently)Michael Niedermayer2007-09-09
| | | | | | this also requires a few entries to be ++ and -- to avoid a max of 256 Originally committed as revision 10450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename HTAPS -> HTAPS_MAX (later is correct after the previous change)Michael Niedermayer2007-09-08
| | | | Originally committed as revision 10437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store halfpel filter coefficients in the header as well as theMichael Niedermayer2007-09-08
| | | | | | | | | | | | | | | flag for diagonal interpolation the primary reason for this change is that previously MC up to 1/4 pel matched H.264 exactly and that increases the risk of stumbling over patents secondly this allows 0.10 db or more quality gain by choosing a longer filter and the filter could also be chosen optimally for each frame though that of course would cause speed loss at the decoder and encoder side ... Originally committed as revision 10436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove outcommented codeMichael Niedermayer2007-09-08
| | | | Originally committed as revision 10435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionMichael Niedermayer2007-09-08
| | | | Originally committed as revision 10434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup mc_block()Michael Niedermayer2007-09-08
| | | | | | | | | perform interpolation steps in such an order that halfpel interpolation could be done per picture this also makes mc_block() match h.264 for the 1/4 pel cases so that the use of the h264 functions for some cases does not introduce a fantastic mess Originally committed as revision 10433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a 8 taps filter for testingMichael Niedermayer2007-09-05
| | | | Originally committed as revision 10394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace constants by HTAPS (half pel interpolation filter taps) where ↵Michael Niedermayer2007-09-05
| | | | | | appropriate. Originally committed as revision 10390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* code to do halfpel interpolation per frame (unfinished and under ifdef but itMichael Niedermayer2007-09-05
| | | | | | should be faster when its finished) Originally committed as revision 10293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsLuca Barbato2007-09-01
| | | | Originally committed as revision 10278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup (remove some old experimentation related code)Michael Niedermayer2007-08-25
| | | | Originally committed as revision 10220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* we only have 2 wavelets, the 3rd was just for experimentation ...Michael Niedermayer2007-08-25
| | | | Originally committed as revision 10219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use 16bit IDWT (a SIMD implementation of it should be >2x faster then withMichael Niedermayer2007-08-25
| | | | | | | the old 32bit code) disable mmx/sse2 optimizations as they need a rewrite now Originally committed as revision 10218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use more bits on the encoder sideMichael Niedermayer2007-08-23
| | | | | | negligible increase in quality Originally committed as revision 10195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-08-22
| | | | Originally committed as revision 10186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change rounding of the horizontal DWT to match the vertical one.Michael Niedermayer2007-08-21
| | | | | | | This allows some simplifications and optimizations and should not have any effect on quality. Originally committed as revision 10172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of idiotc double subtractionMichael Niedermayer2007-08-20
| | | | Originally committed as revision 10154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ahem, fix typos overlooked in last commit.Diego Biurrun2007-07-28
| | | | Originally committed as revision 9816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: misc typo fixesDiego Biurrun2007-07-28
| | | | Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the self tests which are contained in some codecs and are using random().Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* trivial warning fixesMåns Rullgård2007-07-08
| | | | Originally committed as revision 9547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include snow encoder only if it is not disabledAurelien Jacobs2007-07-05
| | | | Originally committed as revision 9494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix assert() 2nd tryMichael Niedermayer2007-05-30
| | | | Originally committed as revision 9163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix assertion failureMichael Niedermayer2007-05-29
| | | | Originally committed as revision 9152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun2007-05-10
| | | | Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, dependAnt --> dependEnt.Diego Biurrun2007-02-24
| | | | Originally committed as revision 8114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated PIX_FMT names by the newer variants.Diego Biurrun2007-02-07
| | | | Originally committed as revision 7867 to svn://svn.ffmpeg.org/ffmpeg/trunk