summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* 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
* Check begin/end/partition_size.Google Chrome2009-09-23
| | | | | | | | 23_vorbis_sane_partition.patch by chrome. Also this should be better documented but i prefer not to leave potential security issues open due to missing documentation. Originally committed as revision 19996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix >= vs > check of coded_fragment_list_index.Google Chrome2009-09-23
| | | | | | 22_fix_theora_frag_fencepost.patch by chrome Originally committed as revision 19995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variables, fixes the warnings:Diego Biurrun2009-09-23
| | | | | | | | libavcodec/wmadec.c:629: warning: unused variable `i' libavcodec/wmadec.c:628: warning: unused variable `b' libavcodec/wmadec.c:628: warning: unused variable `a' Originally committed as revision 19994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix init_get_bits() buffer size.Google Chrome2009-09-23
| | | | | | 18_fix_theora_header_bit_len.patch by chrome Originally committed as revision 19993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check res_setup->books.Google Chrome2009-09-23
| | | | | | 15_more_residue_book_indexes.patch by chrome. Originally committed as revision 19992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check masterbook index and subclass book index.Google Chrome2009-09-23
| | | | | | 14_floor_masterbook_index.patch by chrome Originally committed as revision 19991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add checks for per-packet mode indexes and per-header mode mapping indexes.Google Chrome2009-09-23
| | | | | | | 12_vorbis_mode_indexes.patch by chrome maybe exploitable Originally committed as revision 19990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check classbook value.Google Chrome2009-09-23
| | | | | | 11_vorbis_residue_book_index.patch by chrome. Originally committed as revision 19989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set data_size to 0 to avoid having it uninitialized.Michael Niedermayer2009-09-23
| | | | | | based on 31_mp3_outlen.patch by chrome. Originally committed as revision 19988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check data_size in decode_frame_mp3on4().Michael Niedermayer2009-09-23
| | | | Originally committed as revision 19987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check data_size in decode_frame()Michael Niedermayer2009-09-23
| | | | Originally committed as revision 19986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix book_idx check.Google Chrome2009-09-23
| | | | | | 25_vorbis_floor0_index.patch by chrome. Originally committed as revision 19984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sanity checks for magnitude and angle.Google Chrome2009-09-23
| | | | | | 26_vorbis_mag_angle_index.patch by chrome Originally committed as revision 19983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* = -> == typo.Google Chrome2009-09-23
| | | | | | 27_vorbis_residue_loop_error.patch by chrome Originally committed as revision 19982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: use DSPContext.butterflies_floatMåns Rullgård2009-09-23
| | | | Originally committed as revision 19981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fix typo.Carl Eugen Hoyos2009-09-23
| | | | Originally committed as revision 19980 to svn://svn.ffmpeg.org/ffmpeg/trunk