1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

tests: Move all test programs to a subdirectory

This commit is contained in:
Diego Biurrun
2016-04-20 11:40:40 +02:00
parent 257f00ec1a
commit a6a750c7ef
60 changed files with 204 additions and 164 deletions

2
libswscale/tests/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/colorspace
/swscale

View File

@@ -23,10 +23,11 @@
#include <stdlib.h>
#include <inttypes.h>
#include "swscale.h"
#include "rgb2rgb.h"
#include "libavutil/mem.h"
#include "libswscale/rgb2rgb.h"
#include "libswscale/swscale.h"
#define SIZE 1000
#define srcByte 0x55
#define dstByte 0xBB

View File

@@ -31,7 +31,8 @@
#include "libavutil/crc.h"
#include "libavutil/pixdesc.h"
#include "libavutil/lfg.h"
#include "swscale.h"
#include "libswscale/swscale.h"
/* HACK Duplicated from swscale_internal.h.
* Should be removed when a cleaner pixel format system exists. */