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
2011-07-17random_seed: use proper #includesMans Rullgard
Use <> for system headers, add needed math.h, drop unnecessary avutil.h. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-16des: fix #if conditional around P_shuffleMans Rullgard
CONFIG_SMALL is always defined as 0 or 1. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-15mem.h: switch doxygen parameter order to match function prototypeDiego Biurrun
2011-07-15doxygen: do not include license boilerplate in Doxygen documentationDiego Biurrun
2011-07-14doxygen: Make sure parameter names match between .c and .h files.Diego Biurrun
2011-07-12pix_fmt: Fix number of bits per component in yuv444p9beOskar Arvidsson
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-07-12lls: use av_lfg instead of rand() in test programMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-08AVOptions: in av_opt_find() don't return named constants unless unit is ↵Anton Khirnov
specified. That is, unless the caller explicitly asks for them. Prevents conflict between e.g. the 'loop' option in img2 demuxer and 'loop' flag in AVCodecContext.
2011-07-08dict: extend documentation.Anton Khirnov
2011-07-08lls: whitespace cosmeticsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-08avutil: Add missing test programs to Makefile.Diego Biurrun
2011-07-06eval: add missing comma to tests.Ronald S. Bultje
2011-07-06eval: fix memleak.Ronald S. Bultje
2011-07-04eval: clear Parser instances before usingMans Rullgard
This prevents random values from the stack being used as "variables" in expressions. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04sha: use AV_RB32() instead of assuming buffer can be cast to uint32_t*Kostya Shishkov
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04des: allow unaligned input and output buffersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04aes: allow unaligned input and output buffersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04eval: make timing optional in test programMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include log.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include pixfmt.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include rational.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include intfloat_readwrite.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Remove return statements following infinite loops without breakMans Rullgard
These statements cannot be reached and are thus not needed. This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03md5: cosmeticsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03md5: use AV_WL32 to write resultMans Rullgard
This is simpler, safer, and removes the undocumented requirement of aligned output buffer. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03md5: include correct headersMans Rullgard
This file needs stdint.h but not string.h Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03md5: fix test programMans Rullgard
This makes the md5-test program print something meaningful and not smash the stack. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03doxygen: Drop array size declarations from Doxygen parameter names.Diego Biurrun
Adding [] to a Doxygen parameter name clashes with Doxygen syntax.
2011-07-03doxygen: Fix parameter names to match the function prototypes.Diego Biurrun
2011-07-03Move some conditionally used code below the appropriate #ifdef.Diego Biurrun
2011-07-03aes: fix for big endian systemsMans Rullgard
This was missed in 5d20f19 since CONFIG_SMALL was always broken for big endian. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03des: reduce number of iterations in test programMans Rullgard
Testing a million random keys takes annoying long time. 1000 iterations should be enough. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03aes: fix invalid array indexing in init codeMans Rullgard
This makes the code work with clang/x86_32 and removes several warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-03aes: use direct assignments instead of memcpy() or loopsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-02doxygen: Prefer member groups over grouping into modulesReinhard Tartler
Before this, almost all module groups have been used for grouping functions and fields in structures semantically. This causes them to not appear properly in the file documentation and needlessly clutters up the "Modules" index. Additionally, this commit streamlines some spelling and appearances.
2011-07-01doxygen: fix usage of @file directive in libavutil/{dict,file}.hReinhard Tartler
2011-06-30avutil: elaborate documentation for av_get_random_seedReinhard Tartler
2011-06-30aes: whitespace cosmeticsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-30adler32: whitespace cosmeticsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-30Fix cpu flags test programMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-30opt-test: Add missing braces to silence compiler warnings.Diego Biurrun
libavutil/opt.c:604:1: warning: missing braces around initializer [-Wmissing-braces]
2011-06-30aes: improve test program and add fate testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-30adler32: make test program more useful and add fate testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-30rational-test: Add proper main() declaration to fix gcc warnings.Diego Biurrun
2011-06-30Remove unused, never built libavutil/pca.[ch]Mans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-29pixfmt: fix YUV422/444 wrong endian commentCan Wu
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-28build: include sub-makefiles using full path instead of symlinksMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-28avutil: Remove unused arbitrary precision integer code.Diego Biurrun
2011-06-25build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun
Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.