From 92e3a6fdac73f7e1d69d69717219a7538877d7a0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 10 Feb 2015 13:27:03 +0100 Subject: avutil: check pixdescs in a different place Doing this check in avutil_version() is not appropriate. Also, this code is by default disabled (--assert-level is by default 0). A FATE run with defaults will never execute the checks. Move it to the pixelutils test program. Whatever reason there was in avutil_version() not to run this test by default, it should be fine in this test program. This means FATE will run the test by default. (Yes, pixelutils is not strictly the best place for it either, but it's better.) (pixdesc.c also has a small test program, but it's never run by FATE.) Signed-off-by: Michael Niedermayer --- libavutil/pixelutils.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavutil/pixelutils.c') diff --git a/libavutil/pixelutils.c b/libavutil/pixelutils.c index 8f0402499e..1ec4fbb0ec 100644 --- a/libavutil/pixelutils.c +++ b/libavutil/pixelutils.c @@ -19,6 +19,7 @@ #include "config.h" #include "common.h" #include "pixelutils.h" +#include "internal.h" #if CONFIG_PIXELUTILS @@ -151,6 +152,8 @@ int main(void) goto end; } + ff_check_pixfmt_descriptors(); + #define RANDOM_INIT(buf, size) do { \ int k; \ for (k = 0; k < size; k++) { \ -- cgit v1.2.3