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 (Collapse)Author
2005-12-17bitstream related fixes from [PATCH] from DivX, Part 9: bitstream crashes by ↵Michael Niedermayer
(Steve Lhomme | slhomme divxcorp com) Originally committed as revision 4747 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17wrong sizes, part of [PATCH] from DivX, Part 9: bitstream crashes from ↵Michael Niedermayer
(Steve Lhomme | slhomme divxcorp com) Originally committed as revision 4746 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-14correctly deal with the alpha channel in 32-bit QT RLE (courtesy of JohnMike Melanson
Koleszar <jkoleszar at on2.com>) Originally committed as revision 4743 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-14correctly handle very large Cinepak frames (courtesy of John KoleszarMike Melanson
<jkoleszar@on2.com>) Originally committed as revision 4742 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-12use PRIxN, %zd, %td formats where neededMåns Rullgård
Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-12remove unused variablesMåns Rullgård
Originally committed as revision 4738 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-11recognize some more nal typesLoren Merritt
Originally committed as revision 4734 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-11This patch adds some support for non-joint stereo streams. It alsoBenjamin Larsson
removes some fixmes. Patch by Benjamin Larsson Originally committed as revision 4733 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-11Add the rest of missing Reg_* macros to support both AMD-64 style regs and ↵Guillaume Poirier
IA32 regs. Not used yet, but should be once the SIMD code to accelerate Snow decoding is merged. Originally committed as revision 4731 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-10SONAME support for shared libsLuca Barbato
patch by Luca Barbato < .. lu_zero .. @@ .. gentoo .. . .. org .. > Originally committed as revision 4730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-09Cook compatibe decoder, patch by Benjamin LarssonBenjamin Larsson
Add cook demucing, change rm demuxer so that it reorders audio packets before sending them to the decoder, and send minimum decodeable sized packets; pass only real codec extradata fo the decoder Fix 28_8 decoder for the new demuxer strategy Originally committed as revision 4726 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-07psnr calculation with threads>1 fixMichael Niedermayer
Originally committed as revision 4725 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-06Support for samples with fft_order = 7Roberto Togni
Fail init for unknown fft order, to prevent an array overflow Output sound high-pitched compared to binary. Sample here http://a1862.g.akamai.net/7/1862/14448/v1/esa.download.akamai.com/13452/qt/ESA_VenusExpress_110K_Stream.mov Originally committed as revision 4724 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-06Remove duplicated fft initRoberto Togni
Originally committed as revision 4723 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-03check block_max_depth (fixes crash)Michael Niedermayer
Originally committed as revision 4718 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-03make selftest code compile againMichael Niedermayer
Originally committed as revision 4717 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-02default_get_buffer() cleanupMichael Niedermayer
fixes probably exploitable heap overflow heap overflow found by (Simon Kilvington <s D kilvington A eris D qinetiq D com>) Originally committed as revision 4714 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-30BMP image decoderMåns Rullgård
Originally committed as revision 4711 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-21Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on ↵Guillaume Poirier
the configure system Original thread: Date: Nov 20, 2005 9:25 PM Subject: [PATCH] make dvdsub encoder depend on config variables Originally committed as revision 4709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-21Mark all 12 block unused when there are no coded blocksIvan Kalvachev
Fixes 422/444 artifacts Originally committed as revision 4708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-15dvbsub encoder, patch by Wolfram Gloger < wmglo AH dent POIS med POIS ↵Wolfram Gloger
uni-muenchen POIS de > Original thread: Date: 8 Oct 2005 09:35:38 -0000 Subject: [Ffmpeg-devel] [PATCH] dvdsub encoder -- 2nd version Originally committed as revision 4706 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-1310l, left debugging onAlex Beregszaszi
Originally committed as revision 4705 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-13Correctly skip unknown matrices (patch by Matthieu Castet) and disable ↵Matthieu Castet
comment reading Originally committed as revision 4704 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-13Fixing theora _again_. DONT BOTHER BREAKING THIS AGAIN. Added support for ↵Alex Beregszaszi
Theora 3.4 and stream created by Elphel cameras are decodable. Originally committed as revision 4703 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-13fixed long standing off-by-one bug (fixes playback on ppc)Alex Beregszaszi
Originally committed as revision 4702 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-13mode_code_vlc_table size mismatchAlex Beregszaszi
Originally committed as revision 4701 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-12use sse16_sse2() in nsseLoren Merritt
Originally committed as revision 4688 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-10clear the whole vert_pred buffer for 24 bit decoding.Reimar Döffinger
This is currently not needed since the decoder creates only half of the pixels, but should reduce confusion for people fiddling with it *g* Originally committed as revision 4687 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-10improvements by Reimar Döffinger; 24-bit decoding is not perfect, onlyMike Melanson
the left half of the frame is painted, but the area that is painted looks correct Originally committed as revision 4686 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-10fix a crash on seeking to an invalid frameLoren Merritt
Originally committed as revision 4685 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-09revert incorrect changeMåns Rullgård
Originally committed as revision 4683 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-09check MPV_frame_start() return valueMichael Niedermayer
Originally committed as revision 4682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-09s/log2/av_log2/Steven M. Schultz
patch by Steven M. Schultz <sms at 2bsd com> Originally committed as revision 4681 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-07Put double-quotes around the install path in the "install-headers" sectionFredrik Orderud
of the makefiles for libavcodec, libavformat and libavutil. Fixes installing into paths with spaces in them, i.e. Windows. patch by Fredrik Orderud < fredrik . orderud -- at -- idi . ntnu . no > Originally committed as revision 4680 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-05Two tables in truemotion1data.h were slightly different from VpVisionKostya Shishkov
source. This patch fixes decoding of some samples from Phantasmagoria 2 (they use delta tables N1, not N0 as the rest of files). patch by the author, Kostya Shishkov < kostya -- dot -- shishkov -- at -- gmail -- dot -- com > Originally committed as revision 4679 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-05frame skip fixesMichael Niedermayer
fix 16pixel error in comparission fix vbv messup fix unlimited skip intervals, limited by GOP now Originally committed as revision 4678 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-05Place qdm2 and truemotion2 in ifdef block so that they can be disabledRoberto Togni
Originally committed as revision 4676 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-05extradata endianness commentMichael Niedermayer
Originally committed as revision 4674 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-04tidier cabac_intra4x4_pred_modeLoren Merritt
Originally committed as revision 4673 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-02Typo fixGuillaume Poirier
Originally committed as revision 4672 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-28no mixing of code and declarationsMåns Rullgård
Originally committed as revision 4670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-28Make rle_code int everywhere instead of signed char.Matthieu Castet
Fixes playback of auth_generator-demo.mov, for rle_code == -128 the assignement rle_code = -rle_code would overflow. Patch by matthieu castet (castet matthieu (at) free fr) Originally committed as revision 4669 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-2825% faster deblocking, 4-6% overall.Loren Merritt
Originally committed as revision 4668 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-28fix a crash on dropped framesLoren Merritt
Originally committed as revision 4667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-27faster h264_chroma_mc8_mmx, added h264_chroma_mc4_mmx.Loren Merritt
2-4% overall speedup. Originally committed as revision 4666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-26avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.Emiliano Parasassi
patch by Emiliano Parassassi < millallo AH tiscali -- it > Original thread: Date: Mon, 24 Oct 2005 13:03:01 +0200 Subject: [Ffmpeg-devel] [PATCH] avoid registration of decoders if only encoders are choosed Originally committed as revision 4664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-2610l: cqm weren't initialized in svq3.Loren Merritt
Originally committed as revision 4662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-25decode custom quant matrices.Loren Merritt
based on a patch by anonymous, with optimizations by me. Originally committed as revision 4660 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-23Add DTS_INC to the CFLAGS for DTS. This is only set by external configureDiego Biurrun
programs (such as the MPlayer one) and thus somewhat hackish. We already do this for things like MLIB_INC and IPP_INC so it should be acceptable. Originally committed as revision 4659 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-10-21Increase version because of QDM2 decoder additionRoberto Togni
Originally committed as revision 4654 to svn://svn.ffmpeg.org/ffmpeg/trunk