aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
Commit message (Collapse)AuthorAgeFilesLines
...
* x264 has removed the b-rdo and bime options, and instead integratedJason Garrett-Glaser2008-10-021-1/+0
| | | | | | | | them into the subme number to attempt to reduce the number of unnecessary options. subme now scales up to 9. Patch by Jason Garett-Glaser %darkshikari A gmail P com% Originally committed as revision 15523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allocate 1 line more in the chroma plane for H.264, this avoids someMichael Niedermayer2008-09-301-0/+2
| | | | | | | out of array reads with mmx/sse2 code. Fixes issue327. Originally committed as revision 15467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace second (and wrong) call to avcodec_align_dimensions() by adjustingMichael Niedermayer2008-09-301-4/+15
| | | | | | | stride_align. This is not particularly pretty and I will gladly implement something else if someone has an idea! Originally committed as revision 15466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Uniformly define _XOPEN_SOURCE to 600.Diego Biurrun2008-09-291-1/+1
| | | | | | | | | The feature_tests.h header from Sun systems (Solaris/OpenSolaris) will abort the build if _XOPEN_SOURCE is defined to 500, and C99 is requested (as well as POSIX.1-2001), and will only accept it to be defined to 600. inspired by a patch from Diego Pettenò, flameeyes gmail com Originally committed as revision 15460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the directpred auto value.Francesco Cosoleto2008-09-281-1/+1
| | | | | | Patch by Francesco Cosoleto cosoleto ^^AT^^ gmail @@dot@@ com Originally committed as revision 15448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename error_resilience to error_recognition.Michael Niedermayer2008-09-081-2/+2
| | | | Originally committed as revision 15270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove DEFAULT_FRAME_RATE_BASE.Michael Niedermayer2008-09-081-1/+1
| | | | Originally committed as revision 15265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop deprecated SAMPLE_FMT_S24.Michael Niedermayer2008-09-081-2/+0
| | | | Originally committed as revision 15264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stuff under #if LIBAVCODEC_VERSION_INT.Michael Niedermayer2008-09-081-29/+0
| | | | Originally committed as revision 15263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-081-1/+0
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVCodecContext.bits_per_raw_sample field.Peter Ross2008-08-291-0/+1
| | | | Originally committed as revision 15017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change AVCodecContext.bits_per_sample to bits_per_coded_sample.Peter Ross2008-08-291-0/+4
| | | | | | Nb: This change will become active on the next libavcodec major version bump. Originally committed as revision 15016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a simpler way for the user to reorder her timestamps.Michael Niedermayer2008-08-201-0/+2
| | | | Originally committed as revision 14871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add F64BE, F64LE and F64BE PCM codecs.Peter Ross2008-08-191-0/+9
| | | | Originally committed as revision 14833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add SAMPLE_FMT_DBL.Peter Ross2008-08-191-0/+2
| | | | Originally committed as revision 14832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rc_eq mem leak.Michael Niedermayer2008-08-161-1/+0
| | | | Originally committed as revision 14788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r14260Michael Niedermayer2008-08-161-1/+0
| | | | | | | | | Log: Free in avcodec_close() avctx->rc_eq. Fix a memory leak. Reason running free() on random pointers. Originally committed as revision 14787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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