aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/pca.c
Commit message (Collapse)AuthorAgeFilesLines
* avutil/common: Don't auto-include mem.hAndreas Rheinhardt2024-03-311-0/+1
| | | | | | | | | | | There are lots of files that don't need it: The number of object files that actually need it went down from 2011 to 884 here. Keep it for external users in order to not cause breakages. Also improve the other headers a bit while just at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Merge commit 'd12b5b2f135aade4099f4b26b0fe678656158c13'Derek Buitenhuis2016-05-111-83/+0
|\ | | | | | | | | | | | | | | * commit 'd12b5b2f135aade4099f4b26b0fe678656158c13': build: Split test programs off into separate files Some conversions done by: James Almer <jamrial@gmail.com> Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * Remove unused, never built libavutil/pca.[ch]Mans Rullgard2011-06-291-245/+0
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* | avutil/pca: Check for av_malloc* failuresMichael Niedermayer2015-03-301-0/+8
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avutil/pca: Make argument of ff_pca_add() constMichael Niedermayer2014-09-281-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avutil/pca: Use av_malloc_array()Michael Niedermayer2014-05-041-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pca: use av_calloc()Michael Niedermayer2013-04-151-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pca: use sizeof(variable) instead of sizeos(TYPE)Michael Niedermayer2013-04-151-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pca: get rid of VLAMichael Niedermayer2012-10-061-1/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote branch 'qatar/master'Michael Niedermayer2011-04-271-2/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (23 commits) ac3enc: correct the flipped sign in the ac3_fixed encoder Eliminate pointless '#if 1' statements without matching '#else'. Add AVX FFT implementation. Increase alignment of av_malloc() as needed by AVX ASM. Update x86inc.asm from x264 to allow AVX emulation using SSE and MMX. mjpeg: Detect overreads in mjpeg_decode_scan() and error out. documentation: extend documentation for ffmpeg -aspect option APIChanges: update commit hashes for recent additions. lavc: deprecate FF_*_TYPE macros in favor of AV_PICTURE_TYPE_* enums aac: add headers needed for log2f() lavc: remove FF_API_MB_Q cruft lavc: remove FF_API_RATE_EMU cruft lavc: remove FF_API_HURRY_UP cruft pad: make the filter parametric vsrc_movie: add key_frame and pict_type. vsrc_movie: fix leak in request_frame() lavfi: add key_frame and pict_type to AVFilterBufferRefVideo. vsrc_buffer: add sample_aspect_ratio fields to arguments. lavfi: add fieldorder filter scale: make the filter parametric ... Conflicts: Changelog doc/filters.texi ffmpeg.c libavcodec/ac3dec.h libavcodec/dsputil.c libavfilter/avfilter.h libavfilter/vf_scale.c libavfilter/vf_yadif.c libavfilter/vsrc_buffer.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Eliminate pointless '#if 1' statements without matching '#else'.Diego Biurrun2011-04-261-2/+1
| |
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
|/ | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).Diego Biurrun2009-04-101-6/+6
| | | | Originally committed as revision 18422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace random() usage in test programs by av_lfg_*().Diego Biurrun2009-03-201-5/+8
| | | | Originally committed as revision 18070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IDiego Biurrun2009-01-281-3/+3
| | | | Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing 'void' keyword to parameterless function declarations.Diego Biurrun2009-01-051-1/+1
| | | | Originally committed as revision 16436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize variable to silence the warning:Diego Biurrun2008-10-311-1/+2
| | | | | | libavutil/pca.c:72: warning: ‘k’ may be used uninitialized in this function Originally committed as revision 15760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Copy and paste LGPL from tree.h, the previous one referred to a non-existingMichael Niedermayer2008-08-171-6/+7
| | | | | | version. Originally committed as revision 14818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move context struct to c file.Michael Niedermayer2008-08-171-0/+7
| | | | Originally committed as revision 14809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_pca_init() allocate it struct instead of letting the user provideMichael Niedermayer2008-08-171-11/+14
| | | | | | one (more robust ABI wise). Originally committed as revision 14807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not mix declarations and statements (by ramiro).Michael Niedermayer2008-08-171-2/+2
| | | | Originally committed as revision 14806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put testing code under #ifdef TESTMichael Niedermayer2008-08-171-1/+1
| | | | Originally committed as revision 14805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Testing code uses random().Michael Niedermayer2008-08-171-0/+1
| | | | Originally committed as revision 14804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix includesMichael Niedermayer2008-08-171-2/+1
| | | | Originally committed as revision 14803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Principal component analysisMichael Niedermayer2008-08-171-0/+231
(will be cleaned up in next commits) Originally committed as revision 14802 to svn://svn.ffmpeg.org/ffmpeg/trunk