Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2012-08-19vorbisdec: remove some pointless commentsMans Rullgard
2012-08-18pthread: add const to AVCodec pointersMans Rullgard
2012-08-18mpegvideo_enc: don't use deprecated avcodec_encode_video().Anton Khirnov
2012-08-18lavc: add avcodec_descriptor_get_by_name().Anton Khirnov
2012-08-18lavc: add const to AVCodec* function parameters.Anton Khirnov
2012-08-17h264: vdpau: fix crash with unsupported colorspaceUoti Urpala
2012-08-17amrwbdec: Decode the fr_quality bit properlyMartin Storsjö
2012-08-17libvpxenc: use the default bitrate if not setLuca Barbato
2012-08-17utvideo: Rename utvideo.c to utvideodec.cJan Ekström
2012-08-17mjpegdec: more meaningful return valuesLuca Barbato
2012-08-16Add missing includes for code relying on external librariesMartin Storsjö
2012-08-16Fix even more missing includes after the common.h removalMartin Storsjö
2012-08-16build: Factor out rangecoder dependencies to CONFIG_RANGECODERDiego Biurrun
2012-08-16build: Factor out error resilience dependencies to CONFIG_ERROR_RESILIENCEDiego Biurrun
2012-08-16x86: avcodec: Consistently name all init filesDiego Biurrun
2012-08-16Add more missing includes after removing the implicit common.hMartin Storsjö
2012-08-16Add some more missing includes after removing the implicit common.hMartin Storsjö
2012-08-15Don't include common.h from avutil.hMartin Storsjö
2012-08-15api-example: use new video encoding API.Anton Khirnov
2012-08-15x86: avcodec: Appropriately name files containing only init functionsDiego Biurrun
2012-08-15mpegvideo_mmx_template: drop some commented-out cruftDiego Biurrun
2012-08-15w32pthreads: Add missing #includes to make header compile standaloneDiego Biurrun
2012-08-14prores: interlaced ProRes encodingMaksalov Boris
2012-08-14g723.1: simplify scale_vector()Mans Rullgard
2012-08-14g723.1: simplify normalize_bits()Mans Rullgard
2012-08-14vda: cosmetics: fix Doxygen comment formattingSebastien Zwickert
2012-08-14vda: better frame allocationSebastien Zwickert
2012-08-14vda: Merge implementation into one fileSebastien Zwickert
2012-08-14vda: support synchronous decodingSebastien Zwickert
2012-08-14vda: Reuse the bitstream buffer and reallocate it only if neededSebastien Zwickert
2012-08-14build: Factor out mpegvideo encoding dependencies to CONFIG_MPEGVIDEOENCDiego Biurrun
2012-08-13proresenc: use the edge emulation bufferBoris Maksalov
2012-08-13Use log2(x) instead of log(x) / log(2)Mans Rullgard
2012-08-13x86: cabac: allow building with sunccMans Rullgard
2012-08-13x86: mlpdsp: avoid taking address of voidMans Rullgard
2012-08-13g723.1: do not pass large structs by valueMans Rullgard
2012-08-13g723.1: do not bounce intermediate values via memoryMans Rullgard
2012-08-13g723.1: declare a variable in the block it is usedMans Rullgard
2012-08-13g723.1: avoid saving/restoring excitationMans Rullgard
2012-08-13g723.1: avoid unnecessary memcpy() in residual_interp()Mans Rullgard
2012-08-13g723.1: make postfilter write directly to output bufferMans Rullgard
2012-08-13g723.1: drop unnecessary variable buf_ptr in formant_postfilter()Mans Rullgard
2012-08-13g723.1: make scale_vector() output to a separate bufferMans Rullgard
2012-08-13g723.1: make autocorr_max() work on an arbitrary bufferMans Rullgard
2012-08-13g723.1: do not needlessly use int64_tMans Rullgard
2012-08-13g723.1: use saturating addition functionsMans Rullgard
2012-08-13g723.1: optimise scale_vector()Mans Rullgard
2012-08-13g723.1: remove useless uses of MUL64()Mans Rullgard
2012-08-13g723.1: remove unnecessary argument 'shift' from dot_product()Mans Rullgard
2012-08-13g723.1: deobfuscate "(x << 4) - x" to "15 * x"Mans Rullgard