aboutsummaryrefslogtreecommitdiffstats
path: root/libswscale/colorspace-test.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Move all test programs to a subdirectoryDiego Biurrun2016-05-131-162/+0
|
* testprogs: Remove unused includesMartin Storsjö2012-08-291-1/+0
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Don't include common.h from avutil.hMartin Storsjö2012-08-151-0/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* swscale-test: Drop unused argc and argv arguments from main().Diego Biurrun2012-02-011-1/+1
|
* swscale: K&R formatting cosmetics for code examplesDiego Biurrun2012-01-081-34/+45
|
* Drop some pointless void* return value casts from av_malloc() invocations.Diego Biurrun2012-01-021-2/+2
|
* sws: replace all long with int.Anton Khirnov2011-05-281-1/+1
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* swscale: force --enable-runtime-cpudetect and remove SWS_CPU_CAPS_*.Ronald S. Bultje2011-05-241-28/+1
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* colorspace-test: fix buildRamiro Polla2010-12-071-1/+1
| | | | | | rgb32tobgr32() has been removed in favour of shuffle_bytes_2103() in r32190 Originally committed as revision 32676 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert r31153. It failed to build on:Ramiro Polla2010-05-121-1/+1
| | | | | | | | | | | x86_64 / Mac OS X gcc 4.0.1 x86_64 / Linux icc (all) x86_64 / Linux gcc 4.0.4 x86_64 / OpenBSD gcc 3.3.5 x86_64 / Linux suncc 5.10 and there are some reports of crashes. Originally committed as revision 31170 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use int instead of long to pass width parameters in non-public functions.Ramiro Polla2010-05-111-1/+1
| | | | | | | long was being incorrectly used as an x86-sized register, both for 32 and 64 bits, but this is not the case in win64. Originally committed as revision 31153 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Check for return values of malloc.Ramiro Polla2009-08-291-0/+3
| | | | Originally committed as revision 29584 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics:Ramiro Polla2009-08-161-10/+10
| | | | | | | - Place curly brackets in the same line as while/for/if/switch/else/do; - Place curly brackets at column 0 in the next line starting a function. Originally committed as revision 29523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent libswscale:Ramiro Polla2009-08-161-11/+11
| | | | | | | | | | | - Use 4 spaces throughout for indentation; - Fix inconsistent indentation; - Indent function calls and declarations aligning arguments on multiple lines to the column after the opening parentheses; - Align asm code to the column 4 spaces after the call to __asm__(); - Align cases in switch statements to the same column as "switch". Originally committed as revision 29522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename cs_test.c --> colorspace-test.c. This is more consistent with the namesDiego Biurrun2009-03-261-0/+175
of other test programs and more descriptive of what the program does. Originally committed as revision 29067 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale