aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
Commit message (Collapse)AuthorAgeFilesLines
...
* ensure we get explicit definition of various _XOPEN_SOURCE functions we useAurelien Jacobs2008-08-141-0/+4
| | | | Originally committed as revision 14766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a generic function to lavc to log messages about missing features.Justin Ruggles2008-08-101-0/+13
| | | | | | Patch by Justin Ruggles (justin ruggles gmail com) Originally committed as revision 14685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_string() and av_get_bits_per_sample() report the sample size ↵Peter Ross2008-08-041-0/+2
| | | | | | for CODEC_ID_PCM_ZORK Originally committed as revision 14532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write sample format description within avcodec_string()Peter Ross2008-07-311-0/+5
| | | | Originally committed as revision 14485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)Peter Ross2008-07-261-0/+2
| | | | Originally committed as revision 14409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new -debug option for tracing calls to the default get/release_buffer ↵Alexander Strange2008-07-261-0/+7
| | | | | | functions. Originally committed as revision 14406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add skip* AVOptions, which seem to have been missed.Michael Niedermayer2008-07-201-0/+9
| | | | Originally committed as revision 14314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make strict_std_compliance available to decoders.Michael Niedermayer2008-07-191-6/+6
| | | | Originally committed as revision 14306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the ugly hack which uses an unused entry in the internal bufferMichael Niedermayer2008-07-191-2/+2
| | | | | | array actually use a unused one, so it does work. Originally committed as revision 14286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, someone used FLT_MIN where -FLT_MAX was meant at a few places in theMichael Niedermayer2008-07-171-5/+5
| | | | | | AVOptions array. Originally committed as revision 14264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Free in avcodec_close() avctx->rc_eq. Fix a memory leak.Stefano Sabatini2008-07-161-0/+1
| | | | Originally committed as revision 14260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strdup() the default value for rc_eq in AVCodec when setting it inStefano Sabatini2008-07-131-1/+1
| | | | | | | | avcodec_get_context_defaults(). The value has to be alloced dinamically rather than statically since it may be freed for example by av_set_string2(). Fix a segmentation fault. Originally committed as revision 14221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate avcodec_build(), it returns the same value asAndreas Öman2008-07-111-0/+2
| | | | | | avcodec_version(). Originally committed as revision 14169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add command line support for '-idct simplearmv6'.Laurent Desnogues2008-06-291-0/+1
| | | | | | patch by Laurent Desnogues, laurent.desnogues gmail com Originally committed as revision 14027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mark read-only data as constStefan Gehrer2008-06-241-2/+2
| | | | Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable global_header flag for audio and video encoding, was wrongly part of ↵Baptiste Coudurier2008-06-091-1/+1
| | | | | | commit r13722 Originally committed as revision 13724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert wrong part of r13722 commitBaptiste Coudurier2008-06-091-1/+1
| | | | Originally committed as revision 13723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uniformize trellis quant optionBaptiste Coudurier2008-06-091-1/+3
| | | | Originally committed as revision 13722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add esa/dia compat me options and new tesa for libx264Baptiste Coudurier2008-06-051-0/+3
| | | | Originally committed as revision 13660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move *_static to bitstream.c which is the only file left which needsMichael Niedermayer2008-05-301-54/+0
| | | | | | them. Originally committed as revision 13568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-2/+2
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix closed gop flag disapearence.Michael Niedermayer2008-03-291-2/+2
| | | | Originally committed as revision 12625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix possible heap overflow caused by av_fast_realloc()Michael Niedermayer2008-03-251-1/+5
| | | | Originally committed as revision 12579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-121-3/+3
| | | | Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2008-03-061-8/+8
| | | | Originally committed as revision 12356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not display par and dar if not availableBaptiste Coudurier2008-03-061-0/+2
| | | | Originally committed as revision 12355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_class a pointer to a const AVClass. Addresses one warning inPanagiotis Issaris2008-03-061-1/+1
| | | | | | imgresample.c. Originally committed as revision 12352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* define BI frame type along with other frame typesAurelien Jacobs2008-03-051-0/+1
| | | | Originally committed as revision 12336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: alignAurelien Jacobs2008-03-051-1/+1
| | | | Originally committed as revision 12335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove more useless mpegvideo.h includesAurelien Jacobs2008-03-051-7/+6
| | | | Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* floating point AAN IDCTMichael Niedermayer2008-02-261-0/+1
| | | | Originally committed as revision 12233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug I introduced in r11962.Vitor Sessak2008-02-241-1/+1
| | | | | | | Thanks to Uoti Urpala for spotting it and proposing the fix. Originally committed as revision 12187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove apparently unneeded and buggy align.Michael Niedermayer2008-02-221-8/+1
| | | | Originally committed as revision 12179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify avcodec_default_get_buffer()Vitor Sessak2008-02-151-17/+19
| | | | Originally committed as revision 11962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fix: inited --> initializedDiego Biurrun2008-02-131-3/+3
| | | | Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'reservoir' flag to lavc's flags2 controlling whether or not codes mayPaul Kelly2008-02-111-1/+2
| | | | | | | | utilize a bit reservoir. Also, make the lame encoder utilize this flag. patch by Paul Kelly, paul a stjohnspoint d co d uk Originally committed as revision 11903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_decode_* functions take const input buffers.Michael Niedermayer2008-02-021-3/+3
| | | | Originally committed as revision 11823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* one "cast discards qualifiers from pointer target type" lessMichael Niedermayer2008-02-011-1/+1
| | | | Originally committed as revision 11709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for Matroska attachments.Evgeniy Stepanov2008-01-271-0/+4
| | | | | | patch by eugeni _dot_ stepanov _at_ gmail.com and myself Originally committed as revision 11635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve CRC APIAurelien Jacobs2008-01-041-12/+0
| | | | | | | - don't export any global var - provide either generated or hardcoded tables Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for avcodec_open codec parameter == NULL and return error in that caseReimar Döffinger2007-12-251-1/+1
| | | | Originally committed as revision 11316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add option for user to scale the amount of dynamic range compression which isJustin Ruggles2007-12-201-0/+1
| | | | | | applied by the audio decoder, and use that option in the AC3 decoder. Originally committed as revision 11280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_log_get/set_level()Måns Rullgård2007-12-121-1/+1
| | | | Originally committed as revision 11209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_*_next() API for libavcodecMichael Niedermayer2007-12-121-0/+5
| | | | Originally committed as revision 11204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make rc_buffer_size apply to audio as wellMichael Niedermayer2007-12-031-1/+1
| | | | Originally committed as revision 11150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add pcm_s16le_planar support for electronicarts filesAurelien Jacobs2007-11-251-0/+2
| | | | Originally committed as revision 11092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print pixel and display aspect ratiosMichel Bardiaux2007-10-181-0/+9
| | | | Originally committed as revision 10778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oops, revert unrelated changeLoren Merritt2007-09-271-1/+1
| | | | Originally committed as revision 10597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending ↵Loren Merritt2007-09-271-1/+1
| | | | | | on lpc order. Originally committed as revision 10596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove check for input buffer size as it does not guarantee thatKostya Shishkov2007-09-241-2/+1
| | | | | | | decoder will not run out of output buffer bounds (and all suspected decoders have their own checks now). Originally committed as revision 10567 to svn://svn.ffmpeg.org/ffmpeg/trunk