summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Auto-enable CONFIG_MDCT when neededMåns Rullgård2008-10-25
| | | | Originally committed as revision 15705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Change the order of mlp parser objects to be consistent.Diego Biurrun2008-10-25
| | | | Originally committed as revision 15697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of mlp decoder dependency on mlp parser to the MakefileDiego Biurrun2008-10-25
| | | | | | where all other such dependencies are declared. Originally committed as revision 15696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Build MMX/SSE FFT only if CONFIG_FFT is setMåns Rullgård2008-10-24
| | | | Originally committed as revision 15692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Auto-enable CONFIG_FFT for codecs that need itMåns Rullgård2008-10-24
| | | | Originally committed as revision 15686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2008-10-24
| | | | Originally committed as revision 15682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-24
| | | | Originally committed as revision 15681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.Kenan Gillet2008-10-24
| | | | | | patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename acelp_math.[ch] to celp_math.[ch] to prepare for QCELP decoder merge.Kenan Gillet2008-10-24
| | | | | | patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Speex decoding via libspeexDavid Conrad2008-10-24
| | | | Originally committed as revision 15676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Choose RV3/4 DC quantizer correctlyKostya Shishkov2008-10-24
| | | | Originally committed as revision 15675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnxhd parserBaptiste Coudurier2008-10-24
| | | | Originally committed as revision 15673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add state64 field to ParseContext storing last 8 bytes, to be able to check ↵Baptiste Coudurier2008-10-23
| | | | | | for longer startcodes Originally committed as revision 15671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r15653.Benoit Fouet2008-10-23
| | | | | | | | Was "Copy pts for each raw encoded frame." It causes problems as timestamps management when video sync is zero needs rework in ffmpeg.c. Originally committed as revision 15669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs2008-10-21
| | | | Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use x86_reg type instead of long in float_to_int16 MMX/SSE functions.Reimar Döffinger2008-10-20
| | | | | | Fixes compilation on MinGW64. Originally committed as revision 15655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_freep() in ff_parse_close().Michael Niedermayer2008-10-20
| | | | Originally committed as revision 15654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Copy pts for each raw encoded frame.Andrew Wason2008-10-20
| | | | | | | Patch by Andrew Wason rectalogic rectalogic com Fixes issue 676 Originally committed as revision 15653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 34l: free RV3/4 context variables at the endKostya Shishkov2008-10-20
| | | | Originally committed as revision 15652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RV3 and RV4 decoders set some deblocking coefs for each macroblock,Kostya Shishkov2008-10-20
| | | | | | so store them in the context and register a function to calculate them. Originally committed as revision 15651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark some of RV3/4 block types as having separate DC subblockKostya Shishkov2008-10-20
| | | | Originally committed as revision 15650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentDavid Conrad2008-10-19
| | | | Originally committed as revision 15644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Combine non-bitexact sectionsDavid Conrad2008-10-19
| | | | Originally committed as revision 15643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP3 loop filter is mmx2 not mmxDavid Conrad2008-10-19
| | | | Originally committed as revision 15642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX VP3 Loop FilterDavid Conrad2008-10-17
| | | | Originally committed as revision 15630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use of new bitstream in vorbis_enc.c.Bartłomiej Wołowiec2008-10-15
| | | | | | Patch by Bartłomiej Wołowiec b wolowiec AT students mimuw edu pl Originally committed as revision 15622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix indentation after previous commit.Benoit Fouet2008-10-15
| | | | Originally committed as revision 15621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag to avoid calling vorbis_analysis_wrote twice with an empty buffer.Nicolas George2008-10-15
| | | | | | Patch by Nicolas George: name surname normalesup org Originally committed as revision 15620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include zlib.h as it is needed for watermark support,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste based on reverse engineering work by chrono. Originally committed as revision 15618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export svq1_packet_checksum() that is needed for svq3 watermarks,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste that is based on reverse engineering work by chrono. Originally committed as revision 15617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add variable to hold the svq3 watermarking key,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste that is based on reverse engineering by chrono. Originally committed as revision 15616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mem leak.Ralf Terdic2008-10-13
| | | | | | Patch by Ralf Terdic contact >AT< jswiff com Originally committed as revision 15612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some icc warnings by using enum PixelFormat instead of int where ↵Carl Eugen Hoyos2008-10-13
| | | | | | appropriate. Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp6dec: ensure we don't try to use a buffer with negative sizeAurelien Jacobs2008-10-13
| | | | | | | this should never happen in valid vp6 bitstream fix issue684 Originally committed as revision 15610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NONE instead of -1 in AVCodec.pix_fmts.Carl Eugen Hoyos2008-10-12
| | | | Originally committed as revision 15604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variablesDavid Conrad2008-10-12
| | | | Originally committed as revision 15602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nellymoserenc: flush PutBitContext after use.Ramiro Polla2008-10-11
| | | | Originally committed as revision 15596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac_parser: fix strict aliasing violationMåns Rullgård2008-10-11
| | | | Originally committed as revision 15595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_pixels_sse2, ~+12% performance compared to mmxBaptiste Coudurier2008-10-09
| | | | Originally committed as revision 15591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allows calling avcodec_find_(en|de)coder_by_name with NULL parameterAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a bunch of const qualifiers to function arguments.Diego Biurrun2008-10-07
| | | | | | Taken from the upstream libmpeg2 version of the file. Originally committed as revision 15585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic updates as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertically aligning as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unrolling the loops as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing a bug that prevented proper unweighting table to be selectedRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenizing the commentsRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifying the code as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sync cosmetics from upstream.Diego Biurrun2008-10-07
| | | | Originally committed as revision 15576 to svn://svn.ffmpeg.org/ffmpeg/trunk