diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-10 21:39:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-10 22:24:10 +0100 |
commit | 1b39a30247111d854ce296d9fb4539e5840a9ae4 (patch) | |
tree | 95c917f979994bfb85854f7d4910f478186ad27d /libavutil/tests/imgutils.c | |
parent | 8aad209c13c2a66a9256e37d7f44b5f9f19b13b2 (diff) | |
download | ffmpeg-1b39a30247111d854ce296d9fb4539e5840a9ae4.tar.gz |
fate: add av_image_check_size() test
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/tests/imgutils.c')
-rw-r--r-- | libavutil/tests/imgutils.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libavutil/tests/imgutils.c b/libavutil/tests/imgutils.c new file mode 100644 index 0000000000..e51ecc6e74 --- /dev/null +++ b/libavutil/tests/imgutils.c @@ -0,0 +1,37 @@ +/* + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "libavutil/imgutils.c" + +#undef printf + +int main(void) +{ + int i; + int64_t x, y; + + for (y = -1; y<UINT_MAX; y+= y/2 + 1) { + for (x = -1; x<UINT_MAX; x+= x/2 + 1) { + int ret = av_image_check_size(x, y, 0, NULL); + printf("%d", ret >= 0); + } + printf("\n"); + } + + return 0; +} |