summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Drop unused args from vector_fmul_add_add, simpify code, and renameMåns Rullgård2009-09-27
| | | | | | | | | The src3 and step arguments to vector_fmul_add_add() are always zero and one, respectively. This removes these arguments from the function, simplifies the code accordingly, and renames the function to better match the new operation. Originally committed as revision 20061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not compile ZLib data uncompressing function in TIFF decoder when ZLib isMartin Storsjö2009-09-27
| | | | | | | | not present. Patch by Martin Storsjö ($firstname <at> $firstname <dot> two first letters of $lastname) Originally committed as revision 20058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMAPRO: use vector_fmul_scalar from dsputil where possibleMåns Rullgård2009-09-27
| | | | Originally committed as revision 20056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rearrange loop structure for approx. 35-50% faster calc_transform_coeffs_cpl()Justin Ruggles2009-09-27
| | | | | | depending on content. Originally committed as revision 20055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,Kostya Shishkov2009-09-27
| | | | | | | so replace it with custom code. This fixes issue 1419. Originally committed as revision 20054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move variable declaration to inside of loop.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Rename some variables.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify coupling band loop.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded table lookup.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Rename some variables to be more descriptive of their use.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move some variable declarations to inside of loops.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded variable.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Rename some variables to be more descriptive of their use.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some unneeded variables.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Rename some variablesJustin Ruggles2009-09-27
| | | | Originally committed as revision 20044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify 2 lines into 1 using FFMINJustin Ruggles2009-09-27
| | | | Originally committed as revision 20043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Do some basic pretty-printing.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify by combining increment with array access.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Rename some variables to be more descriptive of their use. Do someJustin Ruggles2009-09-27
| | | | | | pretty-printing as well. Originally committed as revision 20040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move 2 variable declarations to inside of loop.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify by combining increment with array accessJustin Ruggles2009-09-27
| | | | Originally committed as revision 20038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded variableJustin Ruggles2009-09-27
| | | | Originally committed as revision 20037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hardcode AC-3 critical band tables when CONFIG_HARDCODED_TABLES is set.Justin Ruggles2009-09-27
| | | | Originally committed as revision 20036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify format string for writing pix_fmt string.Justin Ruggles2009-09-26
| | | | Originally committed as revision 20034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised vector_clipfMåns Rullgård2009-09-26
| | | | Originally committed as revision 20031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: remove some unused variablesMåns Rullgård2009-09-26
| | | | Originally committed as revision 20030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised vector_fmul_reverseMåns Rullgård2009-09-26
| | | | Originally committed as revision 20029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Specify maximum sample rate of MLP by defining the factor relative to 48000Reimar Döffinger2009-09-26
| | | | | | | | | | instead of directly. This makes clear that the code assumes the maximum sample rate to be a multiple of 48000 and also removes the division from the MAX_BLOCKSIZE macros, which causes an issue with the Solaris assembler where "/" is a comment marker unless the --divide option is used. Originally committed as revision 20026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix decoding of TIFF CCITT RLE compressed data.Kostya Shishkov2009-09-26
| | | | | | This fixes issue 1417. Originally committed as revision 20025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Align pix_fmt list by allowing one more char for the pix_fmt name.Justin Ruggles2009-09-25
| | | | Originally committed as revision 20024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ff_realloc_static, it is no longer used and since it was declaredReimar Döffinger2009-09-24
| | | | | | | static there is no reason to wait for a major version bump, removing it does not change ABI in any way, not even the non-public one. Originally committed as revision 20023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Reimar Döffinger2009-09-24
| | | | Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a piece of code left-over from the removed alloc'd static vlc table code.Reimar Döffinger2009-09-24
| | | | Originally committed as revision 20021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent code folowing previous commit (r20019)Vitor Sessak2009-09-24
| | | | Originally committed as revision 20020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize duplicated code in at1_imdct_block()Vitor Sessak2009-09-24
| | | | Originally committed as revision 20019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow decoding of 625/50 (PAL) with video_stype==1.Maksym Veremeyenko2009-09-24
| | | | | | Patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 20018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support both LSB and MSB orders for TIFF CCITT G.x compressed data.Kostya Shishkov2009-09-24
| | | | | | This fixes issue 1410. Originally committed as revision 20016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Completely remove INIT_VLC_USE_STATIC, it is deprecated since ages andReimar Döffinger2009-09-24
| | | | | | finally no longer used anywhere. Originally committed as revision 20013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace last use of INIT_VLC_USE_STATIC by INIT_VLC_USE_NEW_STATIC in svq1decReimar Döffinger2009-09-24
| | | | Originally committed as revision 20012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change VLC table creation in x8_vlc_init to use INIT_VLC_USE_NEW_STATIC.Reimar Döffinger2009-09-24
| | | | Originally committed as revision 20011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_msmpeg4_decode_init to initialize ff_msmp4_mb_i_vlc since staticReimar Döffinger2009-09-24
| | | | | | | | | VLC tables should only be initialized from one place. This initializes/calculates more VLC tables than necessary for VC1 decoding, but this is only done once and only a small overhead in time and space (maybe 30 kB) it seems not worth adding a separate function. Originally committed as revision 20010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use INIT_VLC_STATIC where easily possible in svq1decReimar Döffinger2009-09-24
| | | | Originally committed as revision 20009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that all memory allocations succeed.Mike Melanson2009-09-24
| | | | | | Based on 28_theora_malloc_checks.patch from the Google Chrome team. Originally committed as revision 20008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take into account real number of colours when reading BMP palette.Kostya Shishkov2009-09-24
| | | | | | This fixes issue 1408 Originally committed as revision 20007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix format string to match the types printed.Reimar Döffinger2009-09-23
| | | | Originally committed as revision 20003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure priv_data is freed and codec is set to NULL in case of failure of ↵Michael Niedermayer2009-09-23
| | | | | | avcodec_open(). Originally committed as revision 20002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check submap indexes.Google Chrome2009-09-23
| | | | | | | | 10_vorbis_submap_indexes.patch by chrome. I am applying this even though Reimar had some comments to improve it as it fixes a serious security issue and I do not want to leave such things unfixed. Originally committed as revision 20001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised int32_to_float_fmul_scalarMåns Rullgård2009-09-23
| | | | Originally committed as revision 20000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: minor simplification in PNS decodingMåns Rullgård2009-09-23
| | | | Originally committed as revision 19999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make error return sign consistent.Michael Niedermayer2009-09-23
| | | | Originally committed as revision 19997 to svn://svn.ffmpeg.org/ffmpeg/trunk