summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* Simplify AC-3 critical band end calculation (correctly this time).Justin Ruggles2009-11-03
| | | | Originally committed as revision 20438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r20050, which caused decoding errors with at least one valid AC-3 file.Justin Ruggles2009-11-03
| | | | Originally committed as revision 20437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid huge array for rgb ljpeg on the stack.Michael Niedermayer2009-11-02
| | | | | | Code tested with an ljpeg i had laying around. Originally committed as revision 20433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* map VYUY fourcc to rawcodecBen Littler2009-11-02
| | | | | | fixes http://samples.mplayerhq.hu/V-codecs/ATI-VCR12/ATI/y422test.avi Originally committed as revision 20432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set sample format in flac_decode_init() rather than inJustin Ruggles2009-11-01
| | | | | | | ff_flac_parse_streaminfo() since the latter is shared with the raw FLAC demuxer, which should not be setting the sample format. Originally committed as revision 20430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set the sample format for Smacker audio in the decoder rather than in theJustin Ruggles2009-11-01
| | | | | | demuxer. Originally committed as revision 20429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement AMR gain function that is used by both AMR and SIPR.Vitor Sessak2009-10-31
| | | | | | Based on AMR SoC code by Robert Swain and Colin McQuillan. Originally committed as revision 20421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change whitespace placement a little to improve readabiliy slightly.Michael Niedermayer2009-10-29
| | | | | | | | Thats not an attempt to emulate indent -kr behavior down to the finest fineprint, first it would not be worth the work, second it would be less readable, third it would not be K&R but indent -kr then. Originally committed as revision 20416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Multiple inclusion guards for synth_filter.h.Michael Niedermayer2009-10-29
| | | | Originally committed as revision 20415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support demuxing teletext in DVB streams.Francesco Lavra2009-10-29
| | | | | | Original patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Vertically align function arguments.Michael Niedermayer2009-10-29
| | | | Originally committed as revision 20413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add generic rules for building helpers with HOSTCCMåns Rullgård2009-10-29
| | | | Originally committed as revision 20412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbis_dec: factor out duplicated code for index reading, bounds checking andReimar Döffinger2009-10-28
| | | | | | error message into a shared macro. Originally committed as revision 20411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change format string from "x" to PRIx32 to hopefully fix a warning with ↵Reimar Döffinger2009-10-28
| | | | | | Cygwin gcc 4.2.4. Originally committed as revision 20407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Makefile cosmeticsMåns Rullgård2009-10-28
| | | | Originally committed as revision 20406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate mpegaudio tables only when CONFIG_HARDCODED_TABLES is setMåns Rullgård2009-10-28
| | | | | | | Having mpegaudiodec.o unconditionally depend on mpegaudio_tables.h forces the latter to be generated even when it will not be used. Originally committed as revision 20405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix out-of-tree builds with --enable-hardcoded-tablesReimar Döffinger2009-10-28
| | | | Originally committed as revision 20404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependency: generated table is needed to create the mpegaudiodec.o file, ↵Reimar Döffinger2009-10-28
| | | | | | not the .c one. Originally committed as revision 20403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better formatting for 2D tables in tableprint code.Reimar Döffinger2009-10-28
| | | | Originally committed as revision 20402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fix incorrect endif comment.Reimar Döffinger2009-10-28
| | | | Originally committed as revision 20401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hardcoding the mpegaudiodec tables.Reimar Döffinger2009-10-28
| | | | | | Reduces .bss size by about 194 kB. Originally committed as revision 20400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable j.Michael Niedermayer2009-10-28
| | | | Originally committed as revision 20398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split synth filter out of dca.c.Michael Niedermayer2009-10-28
| | | | Originally committed as revision 20396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split PAM encoder off into its own file.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the decoders from pnmen.c off into their own file.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The encoders in pnmenc.c now depend on the init/end functions in pnm.c.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Commit some functions that are used by both SIPR and AMR.Vitor Sessak2009-10-27
| | | | | | Based on AMR SoC code by Robert Swain and Colin McQuillan. Originally committed as revision 20392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move pixdesc.{h,c} from libavcodec to libavutil.Stefano Sabatini2009-10-27
| | | | | | | This way pixdescs can be used without requiring a dependency on libavcodec. Originally committed as revision 20389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use third person in doxies.Stefano Sabatini2009-10-27
| | | | Originally committed as revision 20388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move PNM init/end functions to the PNM common code.Diego Biurrun2009-10-27
| | | | | | This is done in preparation for the PNM encoder/decoder split. Originally committed as revision 20382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: K&R coding style, prettyprintingDiego Biurrun2009-10-27
| | | | Originally committed as revision 20381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove crufty leftovers from the era when this file resided within libavformat.Diego Biurrun2009-10-27
| | | | Originally committed as revision 20380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some raw codec fourccs, fixes:Ben Littler2009-10-27
| | | | | | | | | | | | samples/V-codecs/ P422.AVI UYNV.AVI UYNY.AVI V422.AVI YUNV.AVI Originally committed as revision 20379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Benoit Fouet2009-10-27
| | | | Originally committed as revision 20378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only memset for palettes of 16 elements.Benoit Fouet2009-10-27
| | | | Originally committed as revision 20377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify responsibility for freeing a buffer when using vdpau.Carl Eugen Hoyos2009-10-27
| | | | Originally committed as revision 20376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a PIX_FMT_HWACCEL flag to the AVPixFmtDescriptor.flags.Stefano Sabatini2009-10-26
| | | | | | | It is used to mark the pixel format used for hardware acceleration support. Originally committed as revision 20374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/movdqa/movaps/ in sse1 fft. (regression in r20293)Loren Merritt2009-10-25
| | | | Originally committed as revision 20371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump micro version after the FRWU decoder inclusionVitor Sessak2009-10-24
| | | | Originally committed as revision 20366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compile LPC code when CONFIG_LPC is set.Diego Biurrun2009-10-23
| | | | | | | The codec dependencies on LPC are already described in configure, so there is no need to duplicate this in the Makefile. Originally committed as revision 20358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Build extradata in adpcm_ms encoder.Daniel Verkamp2009-10-22
| | | | | | This fixes issue #1244. Originally committed as revision 20349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indicate that AdaptCoeff1 and 2 are functions of the actual coefficients.Daniel Verkamp2009-10-22
| | | | Originally committed as revision 20345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sin_tables.c is a generated file, so add it to CLEANFILESReimar Döffinger2009-10-20
| | | | Originally committed as revision 20332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove SHIFT_TEMPS from jfdct code.avcoder2009-10-20
| | | | | | | | Patch by avcoder: our_beloved_project AT gmail DOT com See thread [FFmpeg-devel] Patch: remove useless SHIFT_TEMPS definition Date: Tue, 20 Oct 2009 14:29:05 +0800 Originally committed as revision 20331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing dependency of the S/PDIF muxer on the AAC parser.Diego Biurrun2009-10-19
| | | | | | Fixes build with --disable-parsers. Originally committed as revision 20328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of some pointless '== NULL' / '!= 0' conditions in if statements.Diego Biurrun2009-10-19
| | | | Originally committed as revision 20325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add additional long names for the Flash Video decoder and encoder.Stefano Sabatini2009-10-19
| | | | Originally committed as revision 20317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add additional long names for the Sorenson Vector Quantizer 3 decoder.Stefano Sabatini2009-10-19
| | | | Originally committed as revision 20316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add additional long names for the Sorenson Vector Quantizer 1 decoderStefano Sabatini2009-10-19
| | | | | | and encoder. Originally committed as revision 20315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudiodec, mpc and qdm2 all use the same mpa_synth window, so makeReimar Döffinger2009-10-19
| | | | | | | them use the same variable/global storage. Saves 4 kB in .bss. Originally committed as revision 20314 to svn://svn.ffmpeg.org/ffmpeg/trunk