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
2008-08-17Add PCA to TESTS.Michael Niedermayer
Originally committed as revision 14812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17fix and simplify frame size check and reencoding in verbatim modeJustin Ruggles
Originally committed as revision 14811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add multiple inclusion guards for consistency and to avoid them beingMichael Niedermayer
forgotten in case they ever become neccessary. Originally committed as revision 14810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Move context struct to c file.Michael Niedermayer
Originally committed as revision 14809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add prototypes to header (based on code by ramiro)Michael Niedermayer
Originally committed as revision 14808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Make ff_pca_init() allocate it struct instead of letting the user provideMichael Niedermayer
one (more robust ABI wise). Originally committed as revision 14807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Do not mix declarations and statements (by ramiro).Michael Niedermayer
Originally committed as revision 14806 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17put testing code under #ifdef TESTMichael Niedermayer
Originally committed as revision 14805 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Testing code uses random().Michael Niedermayer
Originally committed as revision 14804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17fix includesMichael Niedermayer
Originally committed as revision 14803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Principal component analysisMichael Niedermayer
(will be cleaned up in next commits) Originally committed as revision 14802 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17alacenc: NULL_IF_CONFIG_SMALL long_name.Ramiro Polla
Originally committed as revision 14801 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17G.729 decoder main codeVladimir Voroshilov
(just skeleton, contains only parts, explicitly ok'ed by Michael) Originally committed as revision 14800 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17More okayed chunks of AAC encoderKostya Shishkov
Originally committed as revision 14799 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Import ok'd parts of ALAC encoder from GSoC repo.Ramiro Polla
Originally committed as revision 14798 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17update my email address to one which does not depend on my service providerJustin Ruggles
Originally committed as revision 14797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17use range of lpc orders in ORDER_METHOD_ESTJustin Ruggles
Originally committed as revision 14796 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17cosmetics: adjust line breaks and vertical alignmentJustin Ruggles
Originally committed as revision 14795 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17use limited range of lpc orders when quantizing coefficientsJustin Ruggles
Originally committed as revision 14794 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16struct timeval requires #include <sys/time.h>Dave Yeo
patch by Dave Yeo daveryeo _at_ telus _dot_ net Originally committed as revision 14793 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16lpc: cosmetics: vertically align declarations and definitions.Ramiro Polla
Originally committed as revision 14792 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16Use correct asm object type and necessary -DPIC for yasm on 64-bit DarwinDavid Conrad
Thread: [FFmpeg-devel] fft_mmx.asm yasm 64bit build broken Patch by 'D' (lessen42 gmail com) Originally committed as revision 14791 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.Ramiro Polla
Originally committed as revision 14790 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16flacenc: Allow more flexible shift calculation in LPC.Ramiro Polla
Originally committed as revision 14789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16Fix rc_eq mem leak.Michael Niedermayer
Originally committed as revision 14788 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16Revert r14260Michael Niedermayer
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
2008-08-16Synchronize AAC encoder with renamings in aac.hKostya Shishkov
Originally committed as revision 14786 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16Add approved chunks to AAC encoderKostya Shishkov
Originally committed as revision 14785 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16Use memcpy() for PCM S16/S32 codecs when codec byte-order matches machine ↵Peter Ross
byte-order. Originally committed as revision 14784 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Surround format-specific functions with matching preprocessor conditionals.Diego Biurrun
Originally committed as revision 14783 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Surround AVInputFormat declarations with format-specific #ifdefs.Diego Biurrun
Originally committed as revision 14782 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Replace generic CONFIG_MUXERS preprocessor condition around format-specificDiego Biurrun
functions by more appropriate format-specific preprocessor conditions. Originally committed as revision 14781 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormatDiego Biurrun
declarations by more specific CONFIG_FOOBAR_MUXER conditions. Originally committed as revision 14780 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15cosmetics: Remove redundant #endif comments that are very close to the #ifdefDiego Biurrun
condition. This will make upcoming diffs smaller. Originally committed as revision 14779 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15cosmetics: misc spelling fixesDiego Biurrun
Originally committed as revision 14778 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Add flag to mark demuxers that can output discontinuous timestamps.Michael Niedermayer
(could also be added to muxers if someone wants) Originally committed as revision 14777 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Simplify by using FFMAX.Michael Niedermayer
Originally committed as revision 14776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Don't try to free shared ff_sine_* tables pointed to by s->windows[]Robert Swain
Originally committed as revision 14775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15More OKed AAC decoder hunksRobert Swain
Originally committed as revision 14774 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Add myself as ARM maintainerMåns Rullgård
Originally committed as revision 14773 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Synchronise AAC decoder code with that from SoCRobert Swain
Originally committed as revision 14772 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15document some dsp alignmentsLoren Merritt
Originally committed as revision 14771 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15More OKed sections of AAC decoder codeRobert Swain
Originally committed as revision 14770 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Add -fasm and -std=c99 when supported.Michael Niedermayer
Originally committed as revision 14769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15use h_addr_list[0] instead of h_addr as this is the posix hostent field nameAurelien Jacobs
Originally committed as revision 14768 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15The ff_sine_#[] should be aligned as they will commonly be used in dsputilRobert Swain
functions Originally committed as revision 14767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15ensure we get explicit definition of various _XOPEN_SOURCE functions we useAurelien Jacobs
Originally committed as revision 14766 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15import ok'd hunks for mxf muxerBaptiste Coudurier
Originally committed as revision 14765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Remove hackish support for fastmemcpy from MPlayer.Diego Biurrun
Originally committed as revision 14764 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-14mlp: Define End-of-Stream code in common header file and use it in decoder.Ramiro Polla
Originally committed as revision 14763 to svn://svn.ffmpeg.org/ffmpeg/trunk