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
2009-09-23id3v2: Add support for UTF-16 encoding.Anton Khirnov
patch by Anton Khirnov, wyskas gmail com Originally committed as revision 20006 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21extend ff_inverse[], and fix its documentationLoren Merritt
Originally committed as revision 19942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-10Add warnings to av_strlcat and av_strlcpy doxygen that the input stringsReimar Döffinger
already must be properly 0-terminated strings. Unlike strncpy it cannot be used on raw data read from a file. Originally committed as revision 19800 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla
parameters. Originally committed as revision 19776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber
Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 19775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-04Add a newline in error message in CHECKED_ALLOC(Z).Ramiro Polla
Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-01whitespace cosmetics, prettyprintingDiego Biurrun
Originally committed as revision 19751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-30Add function to compute ceil(log2(x)).Thilo Borgmann
Patch by Thilo Borgmann <thilo.borgmann _at_ googlemail.com> Originally committed as revision 19747 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-30Add CHECKED_ALLOC macro.Ramiro Polla
It works the same as CHECKED_ALLOCZ except that it does not zero the allocated memory. Originally committed as revision 19742 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-17AVR32: optimisations for intreadwrite.hMåns Rullgård
Originally committed as revision 19665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-17AVR32: inline asm for bswap.hMåns Rullgård
Originally committed as revision 19664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-16MIPS: 100L: fix AV_[RW]N64 on MIPS64Måns Rullgård
Originally committed as revision 19660 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-16cosmetics: reformat intreadwrite.hMåns Rullgård
Originally committed as revision 19659 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-16intreadwrite: ensure arch-specific versions are always used if definedMåns Rullgård
The per-arch headers can define any combination of B/L/N variants. This ensures that whatever is defined in an arch header gets used for all equivalents not defined there. E.g. on a little-endian machine, AV_RN and AV_RL should give the same code. Originally committed as revision 19658 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-16intreadwrite: allow arch-specific 24-bit access macrosMåns Rullgård
Originally committed as revision 19657 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-16ARM: first value loaded in AV_RN64 needs to be early-clobberMåns Rullgård
Originally committed as revision 19656 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-13Introduce av_clip_uint16().Ramiro Polla
Originally committed as revision 19636 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-10Remove disabled code cruft.Diego Biurrun
Originally committed as revision 19616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-10Define INFINITIY and NAN in mathematics.h if missingMåns Rullgård
Originally committed as revision 19611 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-31Revert addition of '#undef av_always_inline' to config.h in the small case.Diego Biurrun
Instead, #include config.h at the top of common.h so that av_always_inline does not get doubly defined. Originally committed as revision 19553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-31Mark conditionally used variable T2 as av_unused; avoids the warning:Diego Biurrun
libavutil/sha.c:183: warning: unused variable `T2' Originally committed as revision 19551 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-29PPC: fix asm operand constraints in AV_RL64Måns Rullgård
The target register of first word loaded must be marked early-clobber. Originally committed as revision 19536 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-26Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård
Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17Check for __attribute__((packed)) supportMåns Rullgård
Not all compilers claiming to be gcc support this attribute. Originally committed as revision 19453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17cosmetics: reindent after last commitKostya Shishkov
Originally committed as revision 19450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17Add SHA-2 hashingKostya Shishkov
Originally committed as revision 19449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Remove useless definition of struct AVCLASS.Stefano Sabatini
Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-10Add a log2 replacement for systems that haven't quite caught up with the C99Alex Converse
standard library. Originally committed as revision 19395 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-10Prepare SHA code to handle SHA-2 as well. For now rename files and functionsKostya Shishkov
and leave av_sha1_* functions for compatibility until next major bump. Originally committed as revision 19394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Rename function to sha1_transform so it won't be confused with SHA-2 transformKostya Shishkov
when it's added. Originally committed as revision 19389 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Use pointer to hash transform function to make adding SHA-2 support easier.Kostya Shishkov
Originally committed as revision 19388 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09cosmetics: vertical align AVSHA1 membersKostya Shishkov
Originally committed as revision 19387 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Extend AVSHA1 so it can be used in future SHA-2 code as wellKostya Shishkov
Originally committed as revision 19386 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Document SHA-1 functions and structuresKostya Shishkov
Originally committed as revision 19385 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Move DECLARE_ALIGNED and DECLARE_ASM_CONST back from lavu/internal.h toRamiro Polla
lavu/mem.h. Originally committed as revision 19384 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Do not throw compiler error if asm code needs alignment, but we do not knowRamiro Polla
how to do it for this compiler. This removes a dependency of config.h on the DECLARE_* macros. Originally committed as revision 19383 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-01ARM: use gcc inline asm in bswap.h only when availableMåns Rullgård
Originally committed as revision 19311 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-28Icc does not support attribute flatten, do not try to use it.Carl Eugen Hoyos
Originally committed as revision 19286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-27Icc 11.1 does not support attributes force_align_arg_pointer, alloc_size and ↵Carl Eugen Hoyos
cold. Originally committed as revision 19282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-12Fix cast of byte buffer to uint32 that was disregarding alignmentJeff Downs
requirements. Now calculates crc byte at a time until aligned, then continues with uint32 optimized calculation. This fixes crashes during mlp decoding on sparc (at least, maybe others). Originally committed as revision 19160 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-11cosmetics: Reformat file to K&R style upon Kostya's request.Diego Biurrun
Originally committed as revision 19154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-09cosmetics: Add missing ending backslash to installed header list.Diego Biurrun
Originally committed as revision 19135 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-06Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini
improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29MIPS: inline asm for intreadwrite.hMåns Rullgård
Originally committed as revision 18980 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-25Add LABEL_MANGLE() to export label symbols from inside asm blocks.Ramiro Polla
Originally committed as revision 18934 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-23Move ALIGN macro to libavutil/common.h and use it in various placesDavid Conrad
Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-10Add @code/@endcode commands to markup C code in av_tree_insert() doxy.Stefano Sabatini
Originally committed as revision 18776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-10Add missing '*' to av_tree_insert() doxy.Stefano Sabatini
Originally committed as revision 18775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Fix 10l typo (usage of PIX_FMT_NE()).Michael Niedermayer
Should fix FATE, i forgot to commit this. Originally committed as revision 18656 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Add 420,422 and 444 planar 16bit per component pix formats.Michael Niedermayer
Originally committed as revision 18636 to svn://svn.ffmpeg.org/ffmpeg/trunk