summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Make sure that dv encoder initializes all encoded packet data.Reimar Döffinger2009-09-29
| | | | | | | | The specification does not say which value to use for unused parts, so fill all unused bytes with 0xff, which is consistent with what DV usually uses for reserved or unused parts. Originally committed as revision 20084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R coding style, prettyprintingDiego Biurrun2009-09-29
| | | | Originally committed as revision 20083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation in avcodec.hJason Garrett-Glaser2009-09-29
| | | | Originally committed as revision 20082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: fix loop unrolling in decode_exp_vlc()Måns Rullgård2009-09-29
| | | | | | The count can be a non-multiple of 4 after all. Originally committed as revision 20081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics, prettyprinting, K&R coding styleDiego Biurrun2009-09-29
| | | | Originally committed as revision 20080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify r20025: use align_get_bits instead of reimplementing it.Reimar Döffinger2009-09-29
| | | | Originally committed as revision 20079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: store level_table as floats, use type punning for sign flip in decodeMåns Rullgård2009-09-29
| | | | Originally committed as revision 20078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: use type punning and unroll loops in decode_exp_vlc()Måns Rullgård2009-09-29
| | | | | | | | GCC does stupid things if these assignments are done using floats directly, so fill the runs using integer operations instead. Also unroll the loops since the length is always a multiple of 4. Originally committed as revision 20077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: use a table instead of pow() in decode_exp_vlcMåns Rullgård2009-09-29
| | | | Originally committed as revision 20076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure all the bits are written to output in fax data decoder.Kostya Shishkov2009-09-29
| | | | | | | This fixes decoding TIFF images with fax compression and width being not multiple of eight (and issue 1429). Originally committed as revision 20072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some more linebreak and brace placement cosmeticsDiego Biurrun2009-09-28
| | | | Originally committed as revision 20071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* brace placement and linebreak cosmeticsDiego Biurrun2009-09-28
| | | | Originally committed as revision 20070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor channel element configuration and mapping code into its own functionRobert Swain2009-09-28
| | | | | | to allow reuse Originally committed as revision 20069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitRobert Swain2009-09-28
| | | | Originally committed as revision 20068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Add channel layout support for channel configuration as defined in theRobert Swain2009-09-28
| | | | | | specification Originally committed as revision 20067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent and reformat function declarationsKostya Shishkov2009-09-28
| | | | Originally committed as revision 20066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Finally distinguish TIFF_CCITT_RLE and TIFF_G3 1-D case, so both of themKostya Shishkov2009-09-28
| | | | | | | will be decoded correctly. This fixes issue 1423. Originally committed as revision 20065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make TIFF decoder load compression options only for corresponding codecKostya Shishkov2009-09-28
| | | | Originally committed as revision 20064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised vector_fmul_addMåns Rullgård2009-09-27
| | | | Originally committed as revision 20063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: fix indentation after previous commitMåns Rullgård2009-09-27
| | | | Originally committed as revision 20062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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