summaryrefslogtreecommitdiff
path: root/libavcodec/ra144.c
Commit message (Collapse)AuthorAge
...
* Remove unused entries from lpc_refl_cb*Vitor Sessak2008-06-24
| | | | Originally committed as revision 13945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused entries from energy_tabVitor Sessak2008-06-24
| | | | Originally committed as revision 13944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the >> 4 calculation of cb1_base in the tableVitor Sessak2008-06-23
| | | | Originally committed as revision 13935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistency: make the output buffer the first argument of functionsVitor Sessak2008-06-23
| | | | Originally committed as revision 13934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use sizeof() intead of hardcoding the valuesVitor Sessak2008-06-23
| | | | Originally committed as revision 13933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-06-23
| | | | Originally committed as revision 13932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-06-23
| | | | Originally committed as revision 13931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It makes more sense to return 1 here in case of overflow.Vitor Sessak2008-06-23
| | | | Originally committed as revision 13930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentVitor Sessak2008-06-23
| | | | Originally committed as revision 13929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded checkVitor Sessak2008-06-23
| | | | Originally committed as revision 13928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rescale_rms() should use unsigned intsVitor Sessak2008-06-23
| | | | Originally committed as revision 13927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move factor multiplication out of irms()Vitor Sessak2008-06-23
| | | | Originally committed as revision 13926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This should be signedVitor Sessak2008-06-23
| | | | Originally committed as revision 13925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More comments removal/fixesVitor Sessak2008-06-23
| | | | Originally committed as revision 13924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentVitor Sessak2008-06-23
| | | | Originally committed as revision 13923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More comments improvementVitor Sessak2008-06-23
| | | | Originally committed as revision 13922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document defines betterVitor Sessak2008-06-23
| | | | Originally committed as revision 13921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless defineVitor Sessak2008-06-23
| | | | Originally committed as revision 13920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename rotate_buffer() to copy_and_dup() and doxy itVitor Sessak2008-06-23
| | | | Originally committed as revision 13919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify t_sqrt()Vitor Sessak2008-06-23
| | | | Originally committed as revision 13918 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxy commentVitor Sessak2008-06-23
| | | | Originally committed as revision 13917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename varVitor Sessak2008-06-23
| | | | Originally committed as revision 13916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move code unrelated to lpc filtering out of lpc_filter()Vitor Sessak2008-06-23
| | | | Originally committed as revision 13915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify rotate_buffer()Vitor Sessak2008-06-23
| | | | Originally committed as revision 13914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsVitor Sessak2008-06-22
| | | | Originally committed as revision 13898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid a memcpy. Code is also simpler now in my opinion.Vitor Sessak2008-06-22
| | | | | | The downside is making the context bigger. Originally committed as revision 13897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not write junk in the end of truncated files. FATEVitor Sessak2008-06-20
| | | | | | ra144 test will probably need to be updated. Originally committed as revision 13839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Misc cosmeticsVitor Sessak2008-06-19
| | | | Originally committed as revision 13830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentVitor Sessak2008-06-19
| | | | Originally committed as revision 13829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Last table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Yet more table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename tableVitor Sessak2008-06-19
| | | | Originally committed as revision 13824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename vars: s/decsp/out/Vitor Sessak2008-06-19
| | | | Originally committed as revision 13823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename functionVitor Sessak2008-06-19
| | | | Originally committed as revision 13822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename varVitor Sessak2008-06-19
| | | | Originally committed as revision 13821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove *lpc_refl from the context. Only the valueVitor Sessak2008-06-05
| | | | | | | calculated in rms() is actually needed. It also avoid recalculating it later. Originally committed as revision 13664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split function rms() in two (it does two unrelated things)Vitor Sessak2008-06-05
| | | | Originally committed as revision 13663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove warning that could never be triggered.Vitor Sessak2008-06-02
| | | | | | Thanks Mkhodor for pointing it out. Originally committed as revision 13629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace comments by error messages.Vitor Sessak2008-06-01
| | | | | | Thanks to Mkhodor for the tip. Originally committed as revision 13609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsVitor Sessak2008-06-01
| | | | Originally committed as revision 13608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename dec2() functionVitor Sessak2008-06-01
| | | | Originally committed as revision 13607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename varVitor Sessak2008-06-01
| | | | Originally committed as revision 13606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename dec1() to a more descriptive nameVitor Sessak2008-06-01
| | | | Originally committed as revision 13605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The function dec1() do two completly unrelated things. Split the rms ↵Vitor Sessak2008-06-01
| | | | | | calculation out of it. Originally committed as revision 13604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Yet more variable renamingVitor Sessak2008-06-01
| | | | Originally committed as revision 13599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More variable renamingVitor Sessak2008-06-01
| | | | Originally committed as revision 13598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename functionsVitor Sessak2008-06-01
| | | | Originally committed as revision 13597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename variablesVitor Sessak2008-06-01
| | | | Originally committed as revision 13596 to svn://svn.ffmpeg.org/ffmpeg/trunk