Tim Mooney
2021-11-09 62c9a704294238496f73a9831d137b1c735c1523
update ffmpeg to 4.4.1

3 files deleted
2 files added
5 files modified
4798 ■■■■ changed files
components/encumbered/ffmpeg/Makefile 51 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/ffmpeg.p5m 156 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/manifests/sample-manifest.p5m 148 ●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/patches/01-add-sys_videodev2_h.patch 5 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/patches/02-openjpeg23.patch 92 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/patches/03-test-awk.patch 49 ●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/pkg5 2 ●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/test/results-32.master 1642 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/test/results-64.master 1642 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/test/results.master 1011 ●●●●● patch | view | raw | blame | history
components/encumbered/ffmpeg/Makefile
@@ -17,13 +17,12 @@
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME= ffmpeg
COMPONENT_VERSION= 3.2.14
COMPONENT_REVISION= 4
COMPONENT_VERSION= 4.4.1
COMPONENT_SUMMARY= A very fast video and audio converter
COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
COMPONENT_ARCHIVE_HASH= \
  sha256:d918bf3cec12e865f03eaf01c9a4b4d49bbd311217cb56f02fa7de95730ee096
  sha256:8fc9f20ac5ed95115a9e285647add0eedd5cc1a98a039ada14c132452f98ac42
COMPONENT_ARCHIVE_URL= \
  https://www.ffmpeg.org/releases/$(COMPONENT_ARCHIVE)
COMPONENT_PROJECT_URL = https://www.ffmpeg.org/
@@ -32,9 +31,7 @@
COMPONENT_FMRI = video/ffmpeg
include $(WS_MAKE_RULES)/encumbered.mk
include $(WS_MAKE_RULES)/prep.mk
include $(WS_MAKE_RULES)/configure.mk
include $(WS_MAKE_RULES)/ips.mk
include $(WS_MAKE_RULES)/common.mk
CFLAGS.32 += -fno-rename-registers
CFLAGS.32 += -fomit-frame-pointer
@@ -54,6 +51,8 @@
CONFIGURE_OPTIONS += --cc=$(CC)
CONFIGURE_OPTIONS += --enable-runtime-cpudetect 
CONFIGURE_OPTIONS += --enable-mmx --enable-sse --enable-ssse3
# force additional new CPU instruction enablement
CONFIGURE_OPTIONS += --enable-avx
CONFIGURE_OPTIONS += --disable-debug
CONFIGURE_OPTIONS += --enable-nonfree
CONFIGURE_OPTIONS += --enable-gpl
@@ -64,6 +63,7 @@
CONFIGURE_OPTIONS += --enable-libxvid
CONFIGURE_OPTIONS += --enable-libx264
CONFIGURE_OPTIONS += --enable-libx265
CONFIGURE_OPTIONS += --enable-libdav1d
# Don't enable it, resulting binary is not 
# redistributable
#CONFIGURE_OPTIONS += --enable-libfaac
@@ -71,7 +71,9 @@
CONFIGURE_OPTIONS += --enable-libmp3lame
CONFIGURE_OPTIONS += --enable-libvorbis
CONFIGURE_OPTIONS += --enable-libvpx
CONFIGURE_OPTIONS += --enable-x11grab
# x11grab has been replaced by the x11xcb options
#CONFIGURE_OPTIONS += --enable-x11grab
CONFIGURE_OPTIONS += --enable-libxcb
CONFIGURE_OPTIONS += --enable-libspeex
CONFIGURE_OPTIONS += --enable-pthreads
# Incompatible with GPLv2
@@ -79,37 +81,45 @@
CONFIGURE_OPTIONS += --enable-libass
CONFIGURE_OPTIONS += --enable-openssl
CONFIGURE_OPTIONS += --enable-openal
CONFIGURE_OPTIONS += --enable-avresample
# don't enable avresample any more, it's long-deprecated.  Use swresample
# instead
#CONFIGURE_OPTIONS += --enable-avresample
CONFIGURE_OPTIONS += --enable-swresample
# Incompatible with GPLv2
#CONFIGURE_OPTIONS += --enable-libopencore-amrwb
CONFIGURE_OPTIONS += --enable-libschroedinger
# libschroedinger support was removed in 3.4.x
#CONFIGURE_OPTIONS += --enable-libschroedinger
CONFIGURE_OPTIONS += --enable-libopenjpeg
CONFIGURE_OPTIONS += --enable-librtmp
CONFIGURE_OPTIONS += --enable-vdpau
CONFIGURE_OPTIONS += --enable-shared
CONFIGURE_OPTIONS += --disable-static
# these tests cause problems, skip them
CONFIGURE_OPTIONS += --ignore-tests=source
CONFIGURE_ENV += CPPFLAGS="$(CPPFLAGS)"
# Use binaries and libraries from $(PROTO_DIR) for tests
COMPONENT_TEST_ENV+= PATH=$(PROTO_DIR)/usr/bin:$(PATH)
COMPONENT_TEST_ENV+= LD_LIBRARY_PATH=$(PROTO_DIR)/usr/lib
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results.master
COMPONENT_TEST_TRANSFORMS+= '-n -e "/TEST/p" '
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
test:    $(TEST_32_and_64)
COMPONENT_TEST_ENV.32 += PATH=$(PROTO_DIR)/usr/bin/$(MACH$(BITS)):$(PATH)
COMPONENT_TEST_ENV.32 += LD_LIBRARY_PATH=$(PROTO_DIR)/usr/lib
COMPONENT_TEST_ENV.64 += PATH=$(PROTO_DIR)/usr/bin:$(PATH)
COMPONENT_TEST_ENV.64 += LD_LIBRARY_PATH=$(PROTO_DIR)/usr/lib/$(MACH$(BITS))
COMPONENT_TEST_ENV += $(COMPONENT_TEST_ENV.$(BITS))
# Build dependencies
REQUIRED_PACKAGES += image/library/openjpeg
COMPONENT_TEST_TRANSFORMS+= '-n -e "/TEST/p" -e "/^IGNORE/p" '
# You must run the 'install' target before running the test
# suite, as we use binaries and libraries from $(PROTO_DIR) for tests
# to reduce issues with all the test binaries not being able to find
# ffmpeg's libraries.
test:    install $(TEST_32_and_64)
# Auto-generated dependencies
REQUIRED_PACKAGES += audio/lame
REQUIRED_PACKAGES += codec/dav1d
REQUIRED_PACKAGES += codec/libtheora
REQUIRED_PACKAGES += codec/speex
REQUIRED_PACKAGES += compress/bzip2
@@ -122,7 +132,6 @@
REQUIRED_PACKAGES += library/sdl2
REQUIRED_PACKAGES += library/security/openssl-11
REQUIRED_PACKAGES += library/video/libass
REQUIRED_PACKAGES += library/video/libschroedinger
REQUIRED_PACKAGES += library/video/libvpx
REQUIRED_PACKAGES += library/video/x264
REQUIRED_PACKAGES += library/video/x265
components/encumbered/ffmpeg/ffmpeg.p5m
@@ -11,6 +11,7 @@
#
# Copyright 2015 Alexander Pyhalov
# Copyright (c) 2021 Tim Mooney.  All rights reserved.
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
@@ -25,23 +26,28 @@
file path=usr/bin/$(MACH32)/ffmpeg
file path=usr/bin/$(MACH32)/ffplay
file path=usr/bin/$(MACH32)/ffprobe
file path=usr/bin/$(MACH32)/ffserver
file path=usr/bin/ffmpeg
file path=usr/bin/ffplay
file path=usr/bin/ffprobe
file path=usr/bin/ffserver
file path=usr/include/libavcodec/ac3_parser.h
file path=usr/include/libavcodec/adts_parser.h
file path=usr/include/libavcodec/avcodec.h
file path=usr/include/libavcodec/avdct.h
file path=usr/include/libavcodec/avfft.h
file path=usr/include/libavcodec/bsf.h
file path=usr/include/libavcodec/codec.h
file path=usr/include/libavcodec/codec_desc.h
file path=usr/include/libavcodec/codec_id.h
file path=usr/include/libavcodec/codec_par.h
file path=usr/include/libavcodec/d3d11va.h
file path=usr/include/libavcodec/dirac.h
file path=usr/include/libavcodec/dv_profile.h
file path=usr/include/libavcodec/dxva2.h
file path=usr/include/libavcodec/jni.h
file path=usr/include/libavcodec/mediacodec.h
file path=usr/include/libavcodec/packet.h
file path=usr/include/libavcodec/qsv.h
file path=usr/include/libavcodec/vaapi.h
file path=usr/include/libavcodec/vda.h
file path=usr/include/libavcodec/vdpau.h
file path=usr/include/libavcodec/version.h
file path=usr/include/libavcodec/videotoolbox.h
@@ -50,15 +56,12 @@
file path=usr/include/libavdevice/avdevice.h
file path=usr/include/libavdevice/version.h
file path=usr/include/libavfilter/avfilter.h
file path=usr/include/libavfilter/avfiltergraph.h
file path=usr/include/libavfilter/buffersink.h
file path=usr/include/libavfilter/buffersrc.h
file path=usr/include/libavfilter/version.h
file path=usr/include/libavformat/avformat.h
file path=usr/include/libavformat/avio.h
file path=usr/include/libavformat/version.h
file path=usr/include/libavresample/avresample.h
file path=usr/include/libavresample/version.h
file path=usr/include/libavutil/adler32.h
file path=usr/include/libavutil/aes.h
file path=usr/include/libavutil/aes_ctr.h
@@ -82,21 +85,31 @@
file path=usr/include/libavutil/des.h
file path=usr/include/libavutil/dict.h
file path=usr/include/libavutil/display.h
file path=usr/include/libavutil/dovi_meta.h
file path=usr/include/libavutil/downmix_info.h
file path=usr/include/libavutil/encryption_info.h
file path=usr/include/libavutil/error.h
file path=usr/include/libavutil/eval.h
file path=usr/include/libavutil/ffversion.h
file path=usr/include/libavutil/fifo.h
file path=usr/include/libavutil/file.h
file path=usr/include/libavutil/film_grain_params.h
file path=usr/include/libavutil/frame.h
file path=usr/include/libavutil/hash.h
file path=usr/include/libavutil/hdr_dynamic_metadata.h
file path=usr/include/libavutil/hmac.h
file path=usr/include/libavutil/hwcontext.h
file path=usr/include/libavutil/hwcontext_cuda.h
file path=usr/include/libavutil/hwcontext_d3d11va.h
file path=usr/include/libavutil/hwcontext_drm.h
file path=usr/include/libavutil/hwcontext_dxva2.h
file path=usr/include/libavutil/hwcontext_mediacodec.h
file path=usr/include/libavutil/hwcontext_opencl.h
file path=usr/include/libavutil/hwcontext_qsv.h
file path=usr/include/libavutil/hwcontext_vaapi.h
file path=usr/include/libavutil/hwcontext_vdpau.h
file path=usr/include/libavutil/hwcontext_videotoolbox.h
file path=usr/include/libavutil/hwcontext_vulkan.h
file path=usr/include/libavutil/imgutils.h
file path=usr/include/libavutil/intfloat.h
file path=usr/include/libavutil/intreadwrite.h
@@ -123,6 +136,7 @@
file path=usr/include/libavutil/samplefmt.h
file path=usr/include/libavutil/sha.h
file path=usr/include/libavutil/sha512.h
file path=usr/include/libavutil/spherical.h
file path=usr/include/libavutil/stereo3d.h
file path=usr/include/libavutil/tea.h
file path=usr/include/libavutil/threadmessage.h
@@ -131,7 +145,9 @@
file path=usr/include/libavutil/timestamp.h
file path=usr/include/libavutil/tree.h
file path=usr/include/libavutil/twofish.h
file path=usr/include/libavutil/tx.h
file path=usr/include/libavutil/version.h
file path=usr/include/libavutil/video_enc_params.h
file path=usr/include/libavutil/xtea.h
file path=usr/include/libpostproc/postprocess.h
file path=usr/include/libpostproc/version.h
@@ -139,74 +155,75 @@
file path=usr/include/libswresample/version.h
file path=usr/include/libswscale/swscale.h
file path=usr/include/libswscale/version.h
link path=usr/lib/$(MACH64)/libavcodec.so target=libavcodec.so.57.64.101
link path=usr/lib/$(MACH64)/libavcodec.so.57 target=libavcodec.so.57.64.101
file path=usr/lib/$(MACH64)/libavcodec.so.57.64.101
link path=usr/lib/$(MACH64)/libavdevice.so target=libavdevice.so.57.1.100
link path=usr/lib/$(MACH64)/libavdevice.so.57 target=libavdevice.so.57.1.100
file path=usr/lib/$(MACH64)/libavdevice.so.57.1.100
link path=usr/lib/$(MACH64)/libavfilter.so target=libavfilter.so.6.65.100
link path=usr/lib/$(MACH64)/libavfilter.so.6 target=libavfilter.so.6.65.100
file path=usr/lib/$(MACH64)/libavfilter.so.6.65.100
link path=usr/lib/$(MACH64)/libavformat.so target=libavformat.so.57.56.101
link path=usr/lib/$(MACH64)/libavformat.so.57 target=libavformat.so.57.56.101
file path=usr/lib/$(MACH64)/libavformat.so.57.56.101
link path=usr/lib/$(MACH64)/libavresample.so target=libavresample.so.3.1.0
link path=usr/lib/$(MACH64)/libavresample.so.3 target=libavresample.so.3.1.0
file path=usr/lib/$(MACH64)/libavresample.so.3.1.0
link path=usr/lib/$(MACH64)/libavutil.so target=libavutil.so.55.34.101
link path=usr/lib/$(MACH64)/libavutil.so.55 target=libavutil.so.55.34.101
file path=usr/lib/$(MACH64)/libavutil.so.55.34.101
link path=usr/lib/$(MACH64)/libpostproc.so target=libpostproc.so.54.1.100
link path=usr/lib/$(MACH64)/libpostproc.so.54 target=libpostproc.so.54.1.100
file path=usr/lib/$(MACH64)/libpostproc.so.54.1.100
link path=usr/lib/$(MACH64)/libswresample.so target=libswresample.so.2.3.100
link path=usr/lib/$(MACH64)/libswresample.so.2 target=libswresample.so.2.3.100
file path=usr/lib/$(MACH64)/libswresample.so.2.3.100
link path=usr/lib/$(MACH64)/libswscale.so target=libswscale.so.4.2.100
link path=usr/lib/$(MACH64)/libswscale.so.4 target=libswscale.so.4.2.100
file path=usr/lib/$(MACH64)/libswscale.so.4.2.100
link path=usr/lib/$(MACH64)/libavcodec.so target=libavcodec.so.58.134.100
link path=usr/lib/$(MACH64)/libavcodec.so.58 target=libavcodec.so.58.134.100
file path=usr/lib/$(MACH64)/libavcodec.so.58.134.100
link path=usr/lib/$(MACH64)/libavdevice.so target=libavdevice.so.58.13.100
link path=usr/lib/$(MACH64)/libavdevice.so.58 target=libavdevice.so.58.13.100
file path=usr/lib/$(MACH64)/libavdevice.so.58.13.100
link path=usr/lib/$(MACH64)/libavfilter.so target=libavfilter.so.7.110.100
link path=usr/lib/$(MACH64)/libavfilter.so.7 target=libavfilter.so.7.110.100
file path=usr/lib/$(MACH64)/libavfilter.so.7.110.100
link path=usr/lib/$(MACH64)/libavformat.so target=libavformat.so.58.76.100
link path=usr/lib/$(MACH64)/libavformat.so.58 target=libavformat.so.58.76.100
file path=usr/lib/$(MACH64)/libavformat.so.58.76.100
# deprecated, no longer included
#link path=usr/lib/$(MACH64)/libavresample.so target=libavresample.so.3.1.0
#link path=usr/lib/$(MACH64)/libavresample.so.3 target=libavresample.so.3.1.0
#file path=usr/lib/$(MACH64)/libavresample.so.3.1.0
link path=usr/lib/$(MACH64)/libavutil.so target=libavutil.so.56.70.100
link path=usr/lib/$(MACH64)/libavutil.so.56 target=libavutil.so.56.70.100
file path=usr/lib/$(MACH64)/libavutil.so.56.70.100
link path=usr/lib/$(MACH64)/libpostproc.so target=libpostproc.so.55.9.100
link path=usr/lib/$(MACH64)/libpostproc.so.55 target=libpostproc.so.55.9.100
file path=usr/lib/$(MACH64)/libpostproc.so.55.9.100
link path=usr/lib/$(MACH64)/libswresample.so target=libswresample.so.3.9.100
link path=usr/lib/$(MACH64)/libswresample.so.3 target=libswresample.so.3.9.100
file path=usr/lib/$(MACH64)/libswresample.so.3.9.100
link path=usr/lib/$(MACH64)/libswscale.so target=libswscale.so.5.9.100
link path=usr/lib/$(MACH64)/libswscale.so.5 target=libswscale.so.5.9.100
file path=usr/lib/$(MACH64)/libswscale.so.5.9.100
file path=usr/lib/$(MACH64)/pkgconfig/libavcodec.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavdevice.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavfilter.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavformat.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavresample.pc
#file path=usr/lib/$(MACH64)/pkgconfig/libavresample.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavutil.pc
file path=usr/lib/$(MACH64)/pkgconfig/libpostproc.pc
file path=usr/lib/$(MACH64)/pkgconfig/libswresample.pc
file path=usr/lib/$(MACH64)/pkgconfig/libswscale.pc
link path=usr/lib/libavcodec.so target=libavcodec.so.57.64.101
link path=usr/lib/libavcodec.so.57 target=libavcodec.so.57.64.101
file path=usr/lib/libavcodec.so.57.64.101
link path=usr/lib/libavdevice.so target=libavdevice.so.57.1.100
link path=usr/lib/libavdevice.so.57 target=libavdevice.so.57.1.100
file path=usr/lib/libavdevice.so.57.1.100
link path=usr/lib/libavfilter.so target=libavfilter.so.6.65.100
link path=usr/lib/libavfilter.so.6 target=libavfilter.so.6.65.100
file path=usr/lib/libavfilter.so.6.65.100
link path=usr/lib/libavformat.so target=libavformat.so.57.56.101
link path=usr/lib/libavformat.so.57 target=libavformat.so.57.56.101
file path=usr/lib/libavformat.so.57.56.101
link path=usr/lib/libavresample.so target=libavresample.so.3.1.0
link path=usr/lib/libavresample.so.3 target=libavresample.so.3.1.0
file path=usr/lib/libavresample.so.3.1.0
link path=usr/lib/libavutil.so target=libavutil.so.55.34.101
link path=usr/lib/libavutil.so.55 target=libavutil.so.55.34.101
file path=usr/lib/libavutil.so.55.34.101
link path=usr/lib/libpostproc.so target=libpostproc.so.54.1.100
link path=usr/lib/libpostproc.so.54 target=libpostproc.so.54.1.100
file path=usr/lib/libpostproc.so.54.1.100
link path=usr/lib/libswresample.so target=libswresample.so.2.3.100
link path=usr/lib/libswresample.so.2 target=libswresample.so.2.3.100
file path=usr/lib/libswresample.so.2.3.100
link path=usr/lib/libswscale.so target=libswscale.so.4.2.100
link path=usr/lib/libswscale.so.4 target=libswscale.so.4.2.100
file path=usr/lib/libswscale.so.4.2.100
link path=usr/lib/libavcodec.so target=libavcodec.so.58.134.100
link path=usr/lib/libavcodec.so.58 target=libavcodec.so.58.134.100
file path=usr/lib/libavcodec.so.58.134.100
link path=usr/lib/libavdevice.so target=libavdevice.so.58.13.100
link path=usr/lib/libavdevice.so.58 target=libavdevice.so.58.13.100
file path=usr/lib/libavdevice.so.58.13.100
link path=usr/lib/libavfilter.so target=libavfilter.so.7.110.100
link path=usr/lib/libavfilter.so.7 target=libavfilter.so.7.110.100
file path=usr/lib/libavfilter.so.7.110.100
link path=usr/lib/libavformat.so target=libavformat.so.58.76.100
link path=usr/lib/libavformat.so.58 target=libavformat.so.58.76.100
file path=usr/lib/libavformat.so.58.76.100
#link path=usr/lib/libavresample.so target=libavresample.so.3.1.0
#link path=usr/lib/libavresample.so.3 target=libavresample.so.3.1.0
#file path=usr/lib/libavresample.so.3.1.0
link path=usr/lib/libavutil.so target=libavutil.so.56.70.100
link path=usr/lib/libavutil.so.56 target=libavutil.so.56.70.100
file path=usr/lib/libavutil.so.56.70.100
link path=usr/lib/libpostproc.so target=libpostproc.so.55.9.100
link path=usr/lib/libpostproc.so.55 target=libpostproc.so.55.9.100
file path=usr/lib/libpostproc.so.55.9.100
link path=usr/lib/libswresample.so target=libswresample.so.3.9.100
link path=usr/lib/libswresample.so.3 target=libswresample.so.3.9.100
file path=usr/lib/libswresample.so.3.9.100
link path=usr/lib/libswscale.so target=libswscale.so.5.9.100
link path=usr/lib/libswscale.so.5 target=libswscale.so.5.9.100
file path=usr/lib/libswscale.so.5.9.100
file path=usr/lib/pkgconfig/libavcodec.pc
file path=usr/lib/pkgconfig/libavdevice.pc
file path=usr/lib/pkgconfig/libavfilter.pc
file path=usr/lib/pkgconfig/libavformat.pc
file path=usr/lib/pkgconfig/libavresample.pc
#file path=usr/lib/pkgconfig/libavresample.pc
file path=usr/lib/pkgconfig/libavutil.pc
file path=usr/lib/pkgconfig/libpostproc.pc
file path=usr/lib/pkgconfig/libswresample.pc
@@ -229,8 +246,6 @@
file path=usr/share/doc/ffmpeg/ffplay.html
file path=usr/share/doc/ffmpeg/ffprobe-all.html
file path=usr/share/doc/ffmpeg/ffprobe.html
file path=usr/share/doc/ffmpeg/ffserver-all.html
file path=usr/share/doc/ffmpeg/ffserver.html
file path=usr/share/doc/ffmpeg/general.html
file path=usr/share/doc/ffmpeg/git-howto.html
file path=usr/share/doc/ffmpeg/libavcodec.html
@@ -240,19 +255,24 @@
file path=usr/share/doc/ffmpeg/libavutil.html
file path=usr/share/doc/ffmpeg/libswresample.html
file path=usr/share/doc/ffmpeg/libswscale.html
file path=usr/share/doc/ffmpeg/mailing-list-faq.html
file path=usr/share/doc/ffmpeg/nut.html
file path=usr/share/doc/ffmpeg/platform.html
file path=usr/share/ffmpeg/examples/Makefile
file path=usr/share/ffmpeg/examples/README
file path=usr/share/ffmpeg/examples/avio_dir_cmd.c
file path=usr/share/ffmpeg/examples/avio_list_dir.c
file path=usr/share/ffmpeg/examples/avio_reading.c
file path=usr/share/ffmpeg/examples/decoding_encoding.c
file path=usr/share/ffmpeg/examples/decode_audio.c
file path=usr/share/ffmpeg/examples/decode_video.c
file path=usr/share/ffmpeg/examples/demuxing_decoding.c
file path=usr/share/ffmpeg/examples/encode_audio.c
file path=usr/share/ffmpeg/examples/encode_video.c
file path=usr/share/ffmpeg/examples/extract_mvs.c
file path=usr/share/ffmpeg/examples/filter_audio.c
file path=usr/share/ffmpeg/examples/filtering_audio.c
file path=usr/share/ffmpeg/examples/filtering_video.c
file path=usr/share/ffmpeg/examples/http_multiclient.c
file path=usr/share/ffmpeg/examples/hw_decode.c
file path=usr/share/ffmpeg/examples/metadata.c
file path=usr/share/ffmpeg/examples/muxing.c
file path=usr/share/ffmpeg/examples/qsvdec.c
@@ -261,6 +281,8 @@
file path=usr/share/ffmpeg/examples/scaling_video.c
file path=usr/share/ffmpeg/examples/transcode_aac.c
file path=usr/share/ffmpeg/examples/transcoding.c
file path=usr/share/ffmpeg/examples/vaapi_encode.c
file path=usr/share/ffmpeg/examples/vaapi_transcode.c
file path=usr/share/ffmpeg/ffprobe.xsd
file path=usr/share/ffmpeg/libvpx-1080p.ffpreset
file path=usr/share/ffmpeg/libvpx-1080p50_60.ffpreset
@@ -282,8 +304,6 @@
file path=usr/share/man/man1/ffplay.1
file path=usr/share/man/man1/ffprobe-all.1
file path=usr/share/man/man1/ffprobe.1
file path=usr/share/man/man1/ffserver-all.1
file path=usr/share/man/man1/ffserver.1
file path=usr/share/man/man3/libavcodec.3
file path=usr/share/man/man3/libavdevice.3
file path=usr/share/man/man3/libavfilter.3
components/encumbered/ffmpeg/manifests/sample-manifest.p5m
@@ -10,7 +10,7 @@
#
#
# Copyright 2018 <contributor>
# Copyright 2021 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
@@ -25,23 +25,28 @@
file path=usr/bin/$(MACH32)/ffmpeg
file path=usr/bin/$(MACH32)/ffplay
file path=usr/bin/$(MACH32)/ffprobe
file path=usr/bin/$(MACH32)/ffserver
file path=usr/bin/ffmpeg
file path=usr/bin/ffplay
file path=usr/bin/ffprobe
file path=usr/bin/ffserver
file path=usr/include/libavcodec/ac3_parser.h
file path=usr/include/libavcodec/adts_parser.h
file path=usr/include/libavcodec/avcodec.h
file path=usr/include/libavcodec/avdct.h
file path=usr/include/libavcodec/avfft.h
file path=usr/include/libavcodec/bsf.h
file path=usr/include/libavcodec/codec.h
file path=usr/include/libavcodec/codec_desc.h
file path=usr/include/libavcodec/codec_id.h
file path=usr/include/libavcodec/codec_par.h
file path=usr/include/libavcodec/d3d11va.h
file path=usr/include/libavcodec/dirac.h
file path=usr/include/libavcodec/dv_profile.h
file path=usr/include/libavcodec/dxva2.h
file path=usr/include/libavcodec/jni.h
file path=usr/include/libavcodec/mediacodec.h
file path=usr/include/libavcodec/packet.h
file path=usr/include/libavcodec/qsv.h
file path=usr/include/libavcodec/vaapi.h
file path=usr/include/libavcodec/vda.h
file path=usr/include/libavcodec/vdpau.h
file path=usr/include/libavcodec/version.h
file path=usr/include/libavcodec/videotoolbox.h
@@ -50,15 +55,12 @@
file path=usr/include/libavdevice/avdevice.h
file path=usr/include/libavdevice/version.h
file path=usr/include/libavfilter/avfilter.h
file path=usr/include/libavfilter/avfiltergraph.h
file path=usr/include/libavfilter/buffersink.h
file path=usr/include/libavfilter/buffersrc.h
file path=usr/include/libavfilter/version.h
file path=usr/include/libavformat/avformat.h
file path=usr/include/libavformat/avio.h
file path=usr/include/libavformat/version.h
file path=usr/include/libavresample/avresample.h
file path=usr/include/libavresample/version.h
file path=usr/include/libavutil/adler32.h
file path=usr/include/libavutil/aes.h
file path=usr/include/libavutil/aes_ctr.h
@@ -82,21 +84,31 @@
file path=usr/include/libavutil/des.h
file path=usr/include/libavutil/dict.h
file path=usr/include/libavutil/display.h
file path=usr/include/libavutil/dovi_meta.h
file path=usr/include/libavutil/downmix_info.h
file path=usr/include/libavutil/encryption_info.h
file path=usr/include/libavutil/error.h
file path=usr/include/libavutil/eval.h
file path=usr/include/libavutil/ffversion.h
file path=usr/include/libavutil/fifo.h
file path=usr/include/libavutil/file.h
file path=usr/include/libavutil/film_grain_params.h
file path=usr/include/libavutil/frame.h
file path=usr/include/libavutil/hash.h
file path=usr/include/libavutil/hdr_dynamic_metadata.h
file path=usr/include/libavutil/hmac.h
file path=usr/include/libavutil/hwcontext.h
file path=usr/include/libavutil/hwcontext_cuda.h
file path=usr/include/libavutil/hwcontext_d3d11va.h
file path=usr/include/libavutil/hwcontext_drm.h
file path=usr/include/libavutil/hwcontext_dxva2.h
file path=usr/include/libavutil/hwcontext_mediacodec.h
file path=usr/include/libavutil/hwcontext_opencl.h
file path=usr/include/libavutil/hwcontext_qsv.h
file path=usr/include/libavutil/hwcontext_vaapi.h
file path=usr/include/libavutil/hwcontext_vdpau.h
file path=usr/include/libavutil/hwcontext_videotoolbox.h
file path=usr/include/libavutil/hwcontext_vulkan.h
file path=usr/include/libavutil/imgutils.h
file path=usr/include/libavutil/intfloat.h
file path=usr/include/libavutil/intreadwrite.h
@@ -123,6 +135,7 @@
file path=usr/include/libavutil/samplefmt.h
file path=usr/include/libavutil/sha.h
file path=usr/include/libavutil/sha512.h
file path=usr/include/libavutil/spherical.h
file path=usr/include/libavutil/stereo3d.h
file path=usr/include/libavutil/tea.h
file path=usr/include/libavutil/threadmessage.h
@@ -131,7 +144,9 @@
file path=usr/include/libavutil/timestamp.h
file path=usr/include/libavutil/tree.h
file path=usr/include/libavutil/twofish.h
file path=usr/include/libavutil/tx.h
file path=usr/include/libavutil/version.h
file path=usr/include/libavutil/video_enc_params.h
file path=usr/include/libavutil/xtea.h
file path=usr/include/libpostproc/postprocess.h
file path=usr/include/libpostproc/version.h
@@ -139,74 +154,66 @@
file path=usr/include/libswresample/version.h
file path=usr/include/libswscale/swscale.h
file path=usr/include/libswscale/version.h
link path=usr/lib/$(MACH64)/libavcodec.so target=libavcodec.so.57.64.101
link path=usr/lib/$(MACH64)/libavcodec.so.57 target=libavcodec.so.57.64.101
file path=usr/lib/$(MACH64)/libavcodec.so.57.64.101
link path=usr/lib/$(MACH64)/libavdevice.so target=libavdevice.so.57.1.100
link path=usr/lib/$(MACH64)/libavdevice.so.57 target=libavdevice.so.57.1.100
file path=usr/lib/$(MACH64)/libavdevice.so.57.1.100
link path=usr/lib/$(MACH64)/libavfilter.so target=libavfilter.so.6.65.100
link path=usr/lib/$(MACH64)/libavfilter.so.6 target=libavfilter.so.6.65.100
file path=usr/lib/$(MACH64)/libavfilter.so.6.65.100
link path=usr/lib/$(MACH64)/libavformat.so target=libavformat.so.57.56.101
link path=usr/lib/$(MACH64)/libavformat.so.57 target=libavformat.so.57.56.101
file path=usr/lib/$(MACH64)/libavformat.so.57.56.101
link path=usr/lib/$(MACH64)/libavresample.so target=libavresample.so.3.1.0
link path=usr/lib/$(MACH64)/libavresample.so.3 target=libavresample.so.3.1.0
file path=usr/lib/$(MACH64)/libavresample.so.3.1.0
link path=usr/lib/$(MACH64)/libavutil.so target=libavutil.so.55.34.101
link path=usr/lib/$(MACH64)/libavutil.so.55 target=libavutil.so.55.34.101
file path=usr/lib/$(MACH64)/libavutil.so.55.34.101
link path=usr/lib/$(MACH64)/libpostproc.so target=libpostproc.so.54.1.100
link path=usr/lib/$(MACH64)/libpostproc.so.54 target=libpostproc.so.54.1.100
file path=usr/lib/$(MACH64)/libpostproc.so.54.1.100
link path=usr/lib/$(MACH64)/libswresample.so target=libswresample.so.2.3.100
link path=usr/lib/$(MACH64)/libswresample.so.2 target=libswresample.so.2.3.100
file path=usr/lib/$(MACH64)/libswresample.so.2.3.100
link path=usr/lib/$(MACH64)/libswscale.so target=libswscale.so.4.2.100
link path=usr/lib/$(MACH64)/libswscale.so.4 target=libswscale.so.4.2.100
file path=usr/lib/$(MACH64)/libswscale.so.4.2.100
link path=usr/lib/$(MACH64)/libavcodec.so target=libavcodec.so.58.134.100
link path=usr/lib/$(MACH64)/libavcodec.so.58 target=libavcodec.so.58.134.100
file path=usr/lib/$(MACH64)/libavcodec.so.58.134.100
link path=usr/lib/$(MACH64)/libavdevice.so target=libavdevice.so.58.13.100
link path=usr/lib/$(MACH64)/libavdevice.so.58 target=libavdevice.so.58.13.100
file path=usr/lib/$(MACH64)/libavdevice.so.58.13.100
link path=usr/lib/$(MACH64)/libavfilter.so target=libavfilter.so.7.110.100
link path=usr/lib/$(MACH64)/libavfilter.so.7 target=libavfilter.so.7.110.100
file path=usr/lib/$(MACH64)/libavfilter.so.7.110.100
link path=usr/lib/$(MACH64)/libavformat.so target=libavformat.so.58.76.100
link path=usr/lib/$(MACH64)/libavformat.so.58 target=libavformat.so.58.76.100
file path=usr/lib/$(MACH64)/libavformat.so.58.76.100
link path=usr/lib/$(MACH64)/libavutil.so target=libavutil.so.56.70.100
link path=usr/lib/$(MACH64)/libavutil.so.56 target=libavutil.so.56.70.100
file path=usr/lib/$(MACH64)/libavutil.so.56.70.100
link path=usr/lib/$(MACH64)/libpostproc.so target=libpostproc.so.55.9.100
link path=usr/lib/$(MACH64)/libpostproc.so.55 target=libpostproc.so.55.9.100
file path=usr/lib/$(MACH64)/libpostproc.so.55.9.100
link path=usr/lib/$(MACH64)/libswresample.so target=libswresample.so.3.9.100
link path=usr/lib/$(MACH64)/libswresample.so.3 target=libswresample.so.3.9.100
file path=usr/lib/$(MACH64)/libswresample.so.3.9.100
link path=usr/lib/$(MACH64)/libswscale.so target=libswscale.so.5.9.100
link path=usr/lib/$(MACH64)/libswscale.so.5 target=libswscale.so.5.9.100
file path=usr/lib/$(MACH64)/libswscale.so.5.9.100
file path=usr/lib/$(MACH64)/pkgconfig/libavcodec.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavdevice.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavfilter.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavformat.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavresample.pc
file path=usr/lib/$(MACH64)/pkgconfig/libavutil.pc
file path=usr/lib/$(MACH64)/pkgconfig/libpostproc.pc
file path=usr/lib/$(MACH64)/pkgconfig/libswresample.pc
file path=usr/lib/$(MACH64)/pkgconfig/libswscale.pc
link path=usr/lib/libavcodec.so target=libavcodec.so.57.64.101
link path=usr/lib/libavcodec.so.57 target=libavcodec.so.57.64.101
file path=usr/lib/libavcodec.so.57.64.101
link path=usr/lib/libavdevice.so target=libavdevice.so.57.1.100
link path=usr/lib/libavdevice.so.57 target=libavdevice.so.57.1.100
file path=usr/lib/libavdevice.so.57.1.100
link path=usr/lib/libavfilter.so target=libavfilter.so.6.65.100
link path=usr/lib/libavfilter.so.6 target=libavfilter.so.6.65.100
file path=usr/lib/libavfilter.so.6.65.100
link path=usr/lib/libavformat.so target=libavformat.so.57.56.101
link path=usr/lib/libavformat.so.57 target=libavformat.so.57.56.101
file path=usr/lib/libavformat.so.57.56.101
link path=usr/lib/libavresample.so target=libavresample.so.3.1.0
link path=usr/lib/libavresample.so.3 target=libavresample.so.3.1.0
file path=usr/lib/libavresample.so.3.1.0
link path=usr/lib/libavutil.so target=libavutil.so.55.34.101
link path=usr/lib/libavutil.so.55 target=libavutil.so.55.34.101
file path=usr/lib/libavutil.so.55.34.101
link path=usr/lib/libpostproc.so target=libpostproc.so.54.1.100
link path=usr/lib/libpostproc.so.54 target=libpostproc.so.54.1.100
file path=usr/lib/libpostproc.so.54.1.100
link path=usr/lib/libswresample.so target=libswresample.so.2.3.100
link path=usr/lib/libswresample.so.2 target=libswresample.so.2.3.100
file path=usr/lib/libswresample.so.2.3.100
link path=usr/lib/libswscale.so target=libswscale.so.4.2.100
link path=usr/lib/libswscale.so.4 target=libswscale.so.4.2.100
file path=usr/lib/libswscale.so.4.2.100
link path=usr/lib/libavcodec.so target=libavcodec.so.58.134.100
link path=usr/lib/libavcodec.so.58 target=libavcodec.so.58.134.100
file path=usr/lib/libavcodec.so.58.134.100
link path=usr/lib/libavdevice.so target=libavdevice.so.58.13.100
link path=usr/lib/libavdevice.so.58 target=libavdevice.so.58.13.100
file path=usr/lib/libavdevice.so.58.13.100
link path=usr/lib/libavfilter.so target=libavfilter.so.7.110.100
link path=usr/lib/libavfilter.so.7 target=libavfilter.so.7.110.100
file path=usr/lib/libavfilter.so.7.110.100
link path=usr/lib/libavformat.so target=libavformat.so.58.76.100
link path=usr/lib/libavformat.so.58 target=libavformat.so.58.76.100
file path=usr/lib/libavformat.so.58.76.100
link path=usr/lib/libavutil.so target=libavutil.so.56.70.100
link path=usr/lib/libavutil.so.56 target=libavutil.so.56.70.100
file path=usr/lib/libavutil.so.56.70.100
link path=usr/lib/libpostproc.so target=libpostproc.so.55.9.100
link path=usr/lib/libpostproc.so.55 target=libpostproc.so.55.9.100
file path=usr/lib/libpostproc.so.55.9.100
link path=usr/lib/libswresample.so target=libswresample.so.3.9.100
link path=usr/lib/libswresample.so.3 target=libswresample.so.3.9.100
file path=usr/lib/libswresample.so.3.9.100
link path=usr/lib/libswscale.so target=libswscale.so.5.9.100
link path=usr/lib/libswscale.so.5 target=libswscale.so.5.9.100
file path=usr/lib/libswscale.so.5.9.100
file path=usr/lib/pkgconfig/libavcodec.pc
file path=usr/lib/pkgconfig/libavdevice.pc
file path=usr/lib/pkgconfig/libavfilter.pc
file path=usr/lib/pkgconfig/libavformat.pc
file path=usr/lib/pkgconfig/libavresample.pc
file path=usr/lib/pkgconfig/libavutil.pc
file path=usr/lib/pkgconfig/libpostproc.pc
file path=usr/lib/pkgconfig/libswresample.pc
@@ -229,8 +236,6 @@
file path=usr/share/doc/ffmpeg/ffplay.html
file path=usr/share/doc/ffmpeg/ffprobe-all.html
file path=usr/share/doc/ffmpeg/ffprobe.html
file path=usr/share/doc/ffmpeg/ffserver-all.html
file path=usr/share/doc/ffmpeg/ffserver.html
file path=usr/share/doc/ffmpeg/general.html
file path=usr/share/doc/ffmpeg/git-howto.html
file path=usr/share/doc/ffmpeg/libavcodec.html
@@ -240,19 +245,24 @@
file path=usr/share/doc/ffmpeg/libavutil.html
file path=usr/share/doc/ffmpeg/libswresample.html
file path=usr/share/doc/ffmpeg/libswscale.html
file path=usr/share/doc/ffmpeg/mailing-list-faq.html
file path=usr/share/doc/ffmpeg/nut.html
file path=usr/share/doc/ffmpeg/platform.html
file path=usr/share/ffmpeg/examples/Makefile
file path=usr/share/ffmpeg/examples/README
file path=usr/share/ffmpeg/examples/avio_dir_cmd.c
file path=usr/share/ffmpeg/examples/avio_list_dir.c
file path=usr/share/ffmpeg/examples/avio_reading.c
file path=usr/share/ffmpeg/examples/decoding_encoding.c
file path=usr/share/ffmpeg/examples/decode_audio.c
file path=usr/share/ffmpeg/examples/decode_video.c
file path=usr/share/ffmpeg/examples/demuxing_decoding.c
file path=usr/share/ffmpeg/examples/encode_audio.c
file path=usr/share/ffmpeg/examples/encode_video.c
file path=usr/share/ffmpeg/examples/extract_mvs.c
file path=usr/share/ffmpeg/examples/filter_audio.c
file path=usr/share/ffmpeg/examples/filtering_audio.c
file path=usr/share/ffmpeg/examples/filtering_video.c
file path=usr/share/ffmpeg/examples/http_multiclient.c
file path=usr/share/ffmpeg/examples/hw_decode.c
file path=usr/share/ffmpeg/examples/metadata.c
file path=usr/share/ffmpeg/examples/muxing.c
file path=usr/share/ffmpeg/examples/qsvdec.c
@@ -261,6 +271,8 @@
file path=usr/share/ffmpeg/examples/scaling_video.c
file path=usr/share/ffmpeg/examples/transcode_aac.c
file path=usr/share/ffmpeg/examples/transcoding.c
file path=usr/share/ffmpeg/examples/vaapi_encode.c
file path=usr/share/ffmpeg/examples/vaapi_transcode.c
file path=usr/share/ffmpeg/ffprobe.xsd
file path=usr/share/ffmpeg/libvpx-1080p.ffpreset
file path=usr/share/ffmpeg/libvpx-1080p50_60.ffpreset
@@ -282,8 +294,6 @@
file path=usr/share/man/man1/ffplay.1
file path=usr/share/man/man1/ffprobe-all.1
file path=usr/share/man/man1/ffprobe.1
file path=usr/share/man/man1/ffserver-all.1
file path=usr/share/man/man1/ffserver.1
file path=usr/share/man/man3/libavcodec.3
file path=usr/share/man/man3/libavdevice.3
file path=usr/share/man/man3/libavfilter.3
components/encumbered/ffmpeg/patches/01-add-sys_videodev2_h.patch
File was deleted
components/encumbered/ffmpeg/patches/02-openjpeg23.patch
File was deleted
components/encumbered/ffmpeg/patches/03-test-awk.patch
@@ -1,17 +1,23 @@
--- ffmpeg-2.8.10/tests/fate/filter-video.mak.orig    2016-12-12 20:08:08.259752860 +0100
+++ ffmpeg-2.8.10/tests/fate/filter-video.mak    2016-12-12 20:08:18.680896002 +0100
@@ -482,7 +482,7 @@
Updated version of Alexander Pyhalov's patch from earlier builds, switches
all instances of 'awk' to 'gawk' in the FATE test suite.
diff -ur ffmpeg-4.4.1.orig/tests/fate/filter-video.mak ffmpeg-4.4.1/tests/fate/filter-video.mak
--- ffmpeg-4.4.1.orig/tests/fate/filter-video.mak    2021-10-24 15:47:07.000000000 +0000
+++ ffmpeg-4.4.1/tests/fate/filter-video.mak    2021-10-30 03:21:58.297307078 +0000
@@ -677,7 +677,7 @@
 tests/pixfmts.mak: TAG = GEN
 tests/pixfmts.mak: ffmpeg$(EXESUF)
 tests/pixfmts.mak: ffmpeg$(PROGSSUF)$(EXESUF) | tests
     $(M)printf "PIXFMTS = " > $@
-    $(Q)$(TARGET_EXEC) $(TARGET_PATH)/$< -pix_fmts list 2> /dev/null | awk 'NR > 8 && /^IO/ { printf $$2 " " }' >> $@
+    $(Q)$(TARGET_EXEC) $(TARGET_PATH)/$< -pix_fmts list 2> /dev/null | gawk 'NR > 8 && /^IO/ { printf $$2 " " }' >> $@
     $(Q)printf "\n" >> $@
 
 RUNNING_PIXFMTS_TESTS := $(filter check fate fate-list fate-filter fate-vfilter fate-filter-pixdesc%,$(MAKECMDGOALS))
--- ffmpeg-2.8.10/tests/fate-run.sh.orig    2016-12-12 20:20:57.968486091 +0100
+++ ffmpeg-2.8.10/tests/fate-run.sh    2016-12-12 20:14:43.434323816 +0100
@@ -39,7 +39,7 @@
diff -ur ffmpeg-4.4.1.orig/tests/fate-run.sh ffmpeg-4.4.1/tests/fate-run.sh
--- ffmpeg-4.4.1.orig/tests/fate-run.sh    2021-10-24 15:47:07.000000000 +0000
+++ ffmpeg-4.4.1/tests/fate-run.sh    2021-10-30 03:20:43.642561202 +0000
@@ -41,7 +41,7 @@
 # $1=value1, $2=value2, $3=threshold
 # prints 0 if absolute difference between value1 and value2 is <= threshold
 compare(){
@@ -20,7 +26,25 @@
 }
 
 do_tiny_psnr(){
@@ -204,11 +204,11 @@
@@ -159,7 +159,7 @@
     encfile="${outdir}/${test}.out"
     cleanfiles="$cleanfiles $encfile"
     ffmpeg -y "$@" $(target_path $encfile) || return
-    do_md5sum $encfile | awk '{print $1}'
+    do_md5sum $encfile | gawk '{print $1}'
 }
 pcm(){
@@ -368,7 +368,7 @@
     fuzz=${3:-0.001}
     ffmpeg $FLAGS $ENC_OPTS \
         -lavfi "testsrc2=size=300x200:rate=1:duration=5,format=${pixfmt},split[ref][tmp];[tmp]avgblur=4[enc];[enc][ref]${refcmp},metadata=print:file=-" \
-        -f null /dev/null | awk -v ref=${ref} -v fuzz=${fuzz} -f ${base}/refcmp-metadata.awk -
+        -f null /dev/null | gawk -v ref=${ref} -v fuzz=${fuzz} -f ${base}/refcmp-metadata.awk -
 }
 pixfmt_conversion(){
@@ -406,11 +406,11 @@
     in_fmts=${outfile}_in_fmts
 
     # exclude pixel formats which are not supported as input
@@ -35,3 +59,12 @@
     pix_fmts=$(comm -12 $scale_exclude_fmts $in_fmts)
 
     outertest=$test
@@ -481,7 +481,7 @@
     packetfile="${outdir}/${test}.ffprobe"
     cleanfiles="$concatfile $packetfile"
-    awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile
+    gawk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile
     if [ "$mode" = "md5" ]; then
         run ffprobe${PROGSUF}${EXECSUF} -bitexact -show_streams -show_packets -safe 0 $extra_args $(target_path $concatfile) | tr -d '\r' > $packetfile
components/encumbered/ffmpeg/pkg5
@@ -2,6 +2,7 @@
    "dependencies": [
        "SUNWcs",
        "audio/lame",
        "codec/dav1d",
        "codec/libtheora",
        "codec/speex",
        "compress/bzip2",
@@ -14,7 +15,6 @@
        "library/sdl2",
        "library/security/openssl-11",
        "library/video/libass",
        "library/video/libschroedinger",
        "library/video/libvpx",
        "library/video/x264",
        "library/video/x265",
components/encumbered/ffmpeg/test/results-32.master
New file
@@ -0,0 +1,1642 @@
TEST    checkasm-aacpsdsp
TEST    checkasm-af_afir
TEST    checkasm-alacdsp
TEST    checkasm-audiodsp
TEST    checkasm-blockdsp
TEST    checkasm-bswapdsp
TEST    checkasm-exrdsp
TEST    checkasm-fixed_dsp
TEST    checkasm-flacdsp
TEST    checkasm-float_dsp
TEST    checkasm-fmtconvert
TEST    checkasm-g722dsp
TEST    checkasm-h264dsp
TEST    checkasm-h264pred
TEST    checkasm-h264qpel
TEST    checkasm-hevc_add_res
TEST    checkasm-hevc_idct
TEST    checkasm-hevc_sao
TEST    checkasm-jpeg2000dsp
TEST    checkasm-llviddsp
TEST    checkasm-llviddspenc
TEST    checkasm-opusdsp
TEST    checkasm-pixblockdsp
TEST    checkasm-sbrdsp
TEST    checkasm-synth_filter
TEST    checkasm-sw_rgb
TEST    checkasm-sw_scale
TEST    checkasm-v210dec
TEST    checkasm-v210enc
TEST    checkasm-vf_blend
TEST    checkasm-vf_colorspace
TEST    checkasm-vf_eq
TEST    checkasm-vf_gblur
TEST    checkasm-vf_hflip
TEST    checkasm-vf_threshold
TEST    checkasm-videodsp
TEST    checkasm-vp8dsp
TEST    checkasm-vp9dsp
TEST    source
IGNORE    source
TEST    api-threadmessage
TEST    api-flac
TEST    lavf-flv
TEST    api-seek
TEST    lavf-mxf
TEST    concat-demuxer-simple1-lavf-mxf
TEST    lavf-mxf_d10
TEST    concat-demuxer-simple1-lavf-mxf_d10
TEST    lavf-ts
TEST    concat-demuxer-simple2-lavf-ts
TEST    concat-demuxer-extended-lavf-mxf
TEST    concat-demuxer-extended-lavf-mxf_d10
TEST    dnn-layer-pad
TEST    dnn-layer-conv2d
TEST    dnn-layer-dense
TEST    dnn-layer-depth2space
TEST    dnn-layer-mathbinary
TEST    dnn-layer-maximum
TEST    dnn-layer-mathunary
TEST    dnn-layer-avgpool
TEST    dct1d-4
TEST    idct1d-4
TEST    dct1d-5
TEST    idct1d-5
TEST    dct1d-6
TEST    idct1d-6
TEST    dct1d-7
TEST    idct1d-7
TEST    dct1d-8
TEST    idct1d-8
TEST    dct1d-9
TEST    idct1d-9
TEST    dct1d-10
TEST    idct1d-10
TEST    dct1d-11
TEST    idct1d-11
TEST    dct1d-12
TEST    idct1d-12
TEST    fft-4
TEST    ifft-4
TEST    fft-5
TEST    ifft-5
TEST    fft-6
TEST    ifft-6
TEST    fft-7
TEST    ifft-7
TEST    fft-8
TEST    ifft-8
TEST    fft-9
TEST    ifft-9
TEST    fft-10
TEST    ifft-10
TEST    fft-11
TEST    ifft-11
TEST    fft-12
TEST    ifft-12
TEST    mdct-4
TEST    imdct-4
TEST    mdct-5
TEST    imdct-5
TEST    mdct-6
TEST    imdct-6
TEST    mdct-7
TEST    imdct-7
TEST    mdct-8
TEST    imdct-8
TEST    mdct-9
TEST    imdct-9
TEST    mdct-10
TEST    imdct-10
TEST    mdct-11
TEST    imdct-11
TEST    mdct-12
TEST    imdct-12
TEST    rdft-4
TEST    irdft-4
TEST    rdft-5
TEST    irdft-5
TEST    rdft-6
TEST    irdft-6
TEST    rdft-7
TEST    irdft-7
TEST    rdft-8
TEST    irdft-8
TEST    rdft-9
TEST    irdft-9
TEST    rdft-10
TEST    irdft-10
TEST    rdft-11
TEST    irdft-11
TEST    rdft-12
TEST    irdft-12
TEST    fft-fixed32-4
TEST    ifft-fixed32-4
TEST    mdct-fixed32-4
TEST    imdct-fixed32-4
TEST    fft-fixed32-5
TEST    ifft-fixed32-5
TEST    mdct-fixed32-5
TEST    imdct-fixed32-5
TEST    fft-fixed32-6
TEST    ifft-fixed32-6
TEST    mdct-fixed32-6
TEST    imdct-fixed32-6
TEST    fft-fixed32-7
TEST    ifft-fixed32-7
TEST    mdct-fixed32-7
TEST    imdct-fixed32-7
TEST    fft-fixed32-8
TEST    ifft-fixed32-8
TEST    mdct-fixed32-8
TEST    imdct-fixed32-8
TEST    fft-fixed32-9
TEST    ifft-fixed32-9
TEST    mdct-fixed32-9
TEST    imdct-fixed32-9
TEST    fft-fixed32-10
TEST    ifft-fixed32-10
TEST    mdct-fixed32-10
TEST    imdct-fixed32-10
TEST    fft-fixed32-11
TEST    ifft-fixed32-11
TEST    mdct-fixed32-11
TEST    imdct-fixed32-11
TEST    fft-fixed32-12
TEST    ifft-fixed32-12
TEST    mdct-fixed32-12
TEST    imdct-fixed32-12
TEST    av-dct1d-4
TEST    av-idct1d-4
TEST    av-dct1d-5
TEST    av-idct1d-5
TEST    av-dct1d-6
TEST    av-idct1d-6
TEST    av-dct1d-7
TEST    av-idct1d-7
TEST    av-dct1d-8
TEST    av-idct1d-8
TEST    av-dct1d-9
TEST    av-idct1d-9
TEST    av-dct1d-10
TEST    av-idct1d-10
TEST    av-dct1d-11
TEST    av-idct1d-11
TEST    av-dct1d-12
TEST    av-idct1d-12
TEST    av-fft-4
TEST    av-ifft-4
TEST    av-fft-5
TEST    av-ifft-5
TEST    av-fft-6
TEST    av-ifft-6
TEST    av-fft-7
TEST    av-ifft-7
TEST    av-fft-8
TEST    av-ifft-8
TEST    av-fft-9
TEST    av-ifft-9
TEST    av-fft-10
TEST    av-ifft-10
TEST    av-fft-11
TEST    av-ifft-11
TEST    av-fft-12
TEST    av-ifft-12
TEST    av-mdct-4
TEST    av-imdct-4
TEST    av-mdct-5
TEST    av-imdct-5
TEST    av-mdct-6
TEST    av-imdct-6
TEST    av-mdct-7
TEST    av-imdct-7
TEST    av-mdct-8
TEST    av-imdct-8
TEST    av-mdct-9
TEST    av-imdct-9
TEST    av-mdct-10
TEST    av-imdct-10
TEST    av-mdct-11
TEST    av-imdct-11
TEST    av-mdct-12
TEST    av-imdct-12
TEST    av-rdft-4
TEST    av-irdft-4
TEST    av-rdft-5
TEST    av-irdft-5
TEST    av-rdft-6
TEST    av-irdft-6
TEST    av-rdft-7
TEST    av-irdft-7
TEST    av-rdft-8
TEST    av-irdft-8
TEST    av-rdft-9
TEST    av-irdft-9
TEST    av-rdft-10
TEST    av-irdft-10
TEST    av-rdft-11
TEST    av-irdft-11
TEST    av-rdft-12
TEST    av-irdft-12
TEST    avpacket
TEST    cabac
TEST    celp_math
TEST    codec_desc
TEST    golomb
TEST    idct8x8-0
TEST    idct8x8-1
TEST    idct8x8-2
TEST    idct248
TEST    dct8x8
TEST    h264-levels
TEST    h265-levels
TEST    iirfilter
TEST    mpeg12framerate
TEST    rangecoder
TEST    mathops
TEST    j2k-dwt
TEST    libavcodec-utils
TEST    libavcodec-huffman
TEST    libavcodec-htmlsubtitles
TEST    noproxy
TEST    srtp
TEST    url
TEST    movenc
TEST    adler32
TEST    aes
TEST    aes_ctr
TEST    camellia
TEST    cast5
TEST    audio_fifo
TEST    avstring
TEST    base64
TEST    blowfish
TEST    bprint
TEST    cpu
TEST    crc
TEST    color_utils
TEST    des
TEST    dict
TEST    encryption-info
TEST    eval
TEST    fifo
TEST    hash
TEST    hmac
TEST    imgutils
TEST    integer
TEST    lfg
TEST    md5
TEST    murmur3
TEST    parseutils
TEST    pixfmt_best
TEST    display
TEST    random_seed
TEST    ripemd
TEST    sha
TEST    sha512
TEST    tree
TEST    twofish
TEST    xtea
TEST    tea
TEST    opt
TEST    cpu_init
TEST    pixelutils
TEST    sws-pixdesc-query
TEST    sws-floatimg-cmp
TEST    mapchan-6ch-extract-2
TEST    mapchan-6ch-extract-2-downmix-mono
TEST    mapchan-silent-mono
TEST    mapchan-2ch-extract-ch0-ch2-trailing
TEST    mapchan-3ch-extract-ch0-ch2-trailing
TEST    fifo-muxer-tst
TEST    filter-adelay
TEST    filter-aecho
TEST    filter-aemphasis-50fm
TEST    filter-aemphasis-75kf
TEST    filter-afade-qsin
TEST    filter-afade-iqsin
TEST    filter-afade-esin
TEST    filter-afade-hsin
TEST    filter-afade-exp
TEST    filter-afade-log
TEST    filter-agate
TEST    filter-alimiter
TEST    filter-amerge
TEST    filter-apad
TEST    filter-anequalizer
TEST    filter-asetnsamples-pad
TEST    filter-asetnsamples-nopad
TEST    filter-asetrate
TEST    filter-chorus
TEST    filter-dcshift
TEST    filter-earwax
TEST    filter-extrastereo
TEST    filter-firequalizer
TEST    filter-pan-mono1
TEST    filter-pan-mono2
TEST    filter-pan-stereo1
TEST    filter-pan-stereo2
TEST    filter-pan-stereo3
TEST    filter-pan-stereo4
TEST    filter-pan-upmix1
TEST    filter-pan-upmix2
TEST    filter-pan-downmix1
TEST    filter-pan-downmix2
TEST    filter-compand
TEST    filter-hls
TEST    filter-hls-append
TEST    filter-atrim-duration
TEST    filter-atrim-mixed
TEST    filter-atrim-samples
TEST    filter-atrim-time
TEST    filter-channelmap-one-int
TEST    filter-channelmap-one-str
TEST    filter-channelsplit
TEST    filter-join
TEST    filter-volume
TEST    filter-formats
TEST    flv-add_keyframe_index
TEST    filter-lavd-life
TEST    filter-lavd-testsrc
TEST    filter-testsrc2-yuv420p
TEST    filter-testsrc2-yuv444p
TEST    filter-testsrc2-rgb24
TEST    filter-testsrc2-rgba
TEST    filter-allrgb
TEST    filter-allyuv
TEST    filter-pal75bars
TEST    filter-pal100bars
TEST    filter-rgbtestsrc
TEST    filter-smptebars
TEST    filter-smptehdbars
TEST    filter-yuvtestsrc-yuv444p
TEST    filter-yuvtestsrc-yuv444p12
TEST    filter-lavd-scalenorm
TEST    filter-framerate-up
TEST    filter-framerate-down
TEST    filter-framerate-12bit-up
TEST    filter-framerate-12bit-down
TEST    filter-minterpolate-up
TEST    filter-minterpolate-down
TEST    filter-untile
TEST    filter-concat
TEST    filter-concat-vfr
TEST    filter-mpdecimate
TEST    filter-fps-up
TEST    filter-fps-up-round-down
TEST    filter-fps-up-round-up
TEST    filter-fps-down
TEST    filter-fps-down-round-down
TEST    filter-fps-down-round-up
TEST    filter-fps-down-eof-pass
TEST    filter-fps-start-drop
TEST    filter-fps-start-fill
TEST    swr-resample-s16p-2626-8000
TEST    swr-resample-s16p-2626-44100
TEST    swr-resample-s16p-2626-48000
TEST    swr-resample-s16p-2626-96000
TEST    swr-resample-s16p-8000-2626
TEST    swr-resample-s16p-8000-44100
TEST    swr-resample-s16p-8000-48000
TEST    swr-resample-s16p-8000-96000
TEST    swr-resample-s16p-44100-2626
TEST    swr-resample-s16p-44100-8000
TEST    swr-resample-s16p-44100-48000
TEST    swr-resample-s16p-44100-96000
TEST    swr-resample-s16p-48000-2626
TEST    swr-resample-s16p-48000-8000
TEST    swr-resample-s16p-48000-44100
TEST    swr-resample-s16p-48000-96000
TEST    swr-resample-s16p-96000-2626
TEST    swr-resample-s16p-96000-8000
TEST    swr-resample-s16p-96000-44100
TEST    swr-resample-s16p-96000-48000
TEST    swr-resample-s32p-2626-8000
TEST    swr-resample-s32p-2626-44100
TEST    swr-resample-s32p-2626-48000
TEST    swr-resample-s32p-2626-96000
TEST    swr-resample-s32p-8000-2626
TEST    swr-resample-s32p-8000-44100
TEST    swr-resample-s32p-8000-48000
TEST    swr-resample-s32p-8000-96000
TEST    swr-resample-s32p-44100-2626
TEST    swr-resample-s32p-44100-8000
TEST    swr-resample-s32p-44100-48000
TEST    swr-resample-s32p-44100-96000
TEST    swr-resample-s32p-48000-2626
TEST    swr-resample-s32p-48000-8000
TEST    swr-resample-s32p-48000-44100
TEST    swr-resample-s32p-48000-96000
TEST    swr-resample-s32p-96000-2626
TEST    swr-resample-s32p-96000-8000
TEST    swr-resample-s32p-96000-44100
TEST    swr-resample-s32p-96000-48000
TEST    swr-resample-fltp-2626-8000
TEST    swr-resample-fltp-2626-44100
TEST    swr-resample-fltp-2626-48000
TEST    swr-resample-fltp-2626-96000
TEST    swr-resample-fltp-8000-2626
TEST    swr-resample-fltp-8000-44100
TEST    swr-resample-fltp-8000-48000
TEST    swr-resample-fltp-8000-96000
TEST    swr-resample-fltp-44100-2626
TEST    swr-resample-fltp-44100-8000
TEST    swr-resample-fltp-44100-48000
TEST    swr-resample-fltp-44100-96000
TEST    swr-resample-fltp-48000-2626
TEST    swr-resample-fltp-48000-8000
TEST    swr-resample-fltp-48000-44100
TEST    swr-resample-fltp-48000-96000
TEST    swr-resample-fltp-96000-2626
TEST    swr-resample-fltp-96000-8000
TEST    swr-resample-fltp-96000-44100
TEST    swr-resample-fltp-96000-48000
TEST    swr-resample-dblp-2626-8000
TEST    swr-resample-dblp-2626-44100
TEST    swr-resample-dblp-2626-48000
TEST    swr-resample-dblp-2626-96000
TEST    swr-resample-dblp-8000-2626
TEST    swr-resample-dblp-8000-44100
TEST    swr-resample-dblp-8000-48000
TEST    swr-resample-dblp-8000-96000
TEST    swr-resample-dblp-44100-2626
TEST    swr-resample-dblp-44100-8000
TEST    swr-resample-dblp-44100-48000
TEST    swr-resample-dblp-44100-96000
TEST    swr-resample-dblp-48000-2626
TEST    swr-resample-dblp-48000-8000
TEST    swr-resample-dblp-48000-44100
TEST    swr-resample-dblp-48000-96000
TEST    swr-resample-dblp-96000-2626
TEST    swr-resample-dblp-96000-8000
TEST    swr-resample-dblp-96000-44100
TEST    swr-resample-dblp-96000-48000
TEST    swr-resample_lin-s16p-8000-44100
TEST    swr-resample_lin-s16p-8000-48000
TEST    swr-resample_lin-s16p-44100-8000
TEST    swr-resample_lin-s16p-44100-48000
TEST    swr-resample_lin-s16p-48000-8000
TEST    swr-resample_lin-s16p-48000-44100
TEST    swr-resample_lin-fltp-8000-44100
TEST    swr-resample_lin-fltp-8000-48000
TEST    swr-resample_lin-fltp-44100-8000
TEST    swr-resample_lin-fltp-44100-48000
TEST    swr-resample_lin-fltp-48000-8000
TEST    swr-resample_lin-fltp-48000-44100
TEST    swr-resample_lin-dblp-8000-44100
TEST    swr-resample_lin-dblp-8000-48000
TEST    swr-resample_lin-dblp-44100-8000
TEST    swr-resample_lin-dblp-44100-48000
TEST    swr-resample_lin-dblp-48000-8000
TEST    swr-resample_lin-dblp-48000-44100
TEST    swr-resample_nn-s16p-8000-44100
TEST    swr-resample_nn-s16p-44100-8000
TEST    swr-resample_nn-fltp-8000-44100
TEST    swr-resample_nn-fltp-44100-8000
TEST    swr-resample_async-s16p-8000-44100
TEST    swr-resample_async-s16p-44100-8000
TEST    swr-resample_async-fltp-8000-44100
TEST    swr-resample_async-fltp-44100-8000
TEST    swr-resample_exact-s16p-2626-8000
TEST    swr-resample_exact-s16p-2626-44100
TEST    swr-resample_exact-s16p-2626-48000
TEST    swr-resample_exact-s16p-2626-96000
TEST    swr-resample_exact-s16p-8000-2626
TEST    swr-resample_exact-s16p-8000-44100
TEST    swr-resample_exact-s16p-8000-48000
TEST    swr-resample_exact-s16p-8000-96000
TEST    swr-resample_exact-s16p-44100-2626
TEST    swr-resample_exact-s16p-44100-8000
TEST    swr-resample_exact-s16p-44100-48000
TEST    swr-resample_exact-s16p-44100-96000
TEST    swr-resample_exact-s16p-48000-2626
TEST    swr-resample_exact-s16p-48000-8000
TEST    swr-resample_exact-s16p-48000-44100
TEST    swr-resample_exact-s16p-48000-96000
TEST    swr-resample_exact-s16p-96000-2626
TEST    swr-resample_exact-s16p-96000-8000
TEST    swr-resample_exact-s16p-96000-44100
TEST    swr-resample_exact-s16p-96000-48000
TEST    swr-resample_exact-s32p-2626-8000
TEST    swr-resample_exact-s32p-2626-44100
TEST    swr-resample_exact-s32p-2626-48000
TEST    swr-resample_exact-s32p-2626-96000
TEST    swr-resample_exact-s32p-8000-2626
TEST    swr-resample_exact-s32p-8000-44100
TEST    swr-resample_exact-s32p-8000-48000
TEST    swr-resample_exact-s32p-8000-96000
TEST    swr-resample_exact-s32p-44100-2626
TEST    swr-resample_exact-s32p-44100-8000
TEST    swr-resample_exact-s32p-44100-48000
TEST    swr-resample_exact-s32p-44100-96000
TEST    swr-resample_exact-s32p-48000-2626
TEST    swr-resample_exact-s32p-48000-8000
TEST    swr-resample_exact-s32p-48000-44100
TEST    swr-resample_exact-s32p-48000-96000
TEST    swr-resample_exact-s32p-96000-2626
TEST    swr-resample_exact-s32p-96000-8000
TEST    swr-resample_exact-s32p-96000-44100
TEST    swr-resample_exact-s32p-96000-48000
TEST    swr-resample_exact-fltp-2626-8000
TEST    swr-resample_exact-fltp-2626-44100
TEST    swr-resample_exact-fltp-2626-48000
TEST    swr-resample_exact-fltp-2626-96000
TEST    swr-resample_exact-fltp-8000-2626
TEST    swr-resample_exact-fltp-8000-44100
TEST    swr-resample_exact-fltp-8000-48000
TEST    swr-resample_exact-fltp-8000-96000
TEST    swr-resample_exact-fltp-44100-2626
TEST    swr-resample_exact-fltp-44100-8000
TEST    swr-resample_exact-fltp-44100-48000
TEST    swr-resample_exact-fltp-44100-96000
TEST    swr-resample_exact-fltp-48000-2626
TEST    swr-resample_exact-fltp-48000-8000
TEST    swr-resample_exact-fltp-48000-44100
TEST    swr-resample_exact-fltp-48000-96000
TEST    swr-resample_exact-fltp-96000-2626
TEST    swr-resample_exact-fltp-96000-8000
TEST    swr-resample_exact-fltp-96000-44100
TEST    swr-resample_exact-fltp-96000-48000
TEST    swr-resample_exact-dblp-2626-8000
TEST    swr-resample_exact-dblp-2626-44100
TEST    swr-resample_exact-dblp-2626-48000
TEST    swr-resample_exact-dblp-2626-96000
TEST    swr-resample_exact-dblp-8000-2626
TEST    swr-resample_exact-dblp-8000-44100
TEST    swr-resample_exact-dblp-8000-48000
TEST    swr-resample_exact-dblp-8000-96000
TEST    swr-resample_exact-dblp-44100-2626
TEST    swr-resample_exact-dblp-44100-8000
TEST    swr-resample_exact-dblp-44100-48000
TEST    swr-resample_exact-dblp-44100-96000
TEST    swr-resample_exact-dblp-48000-2626
TEST    swr-resample_exact-dblp-48000-8000
TEST    swr-resample_exact-dblp-48000-44100
TEST    swr-resample_exact-dblp-48000-96000
TEST    swr-resample_exact-dblp-96000-2626
TEST    swr-resample_exact-dblp-96000-8000
TEST    swr-resample_exact-dblp-96000-44100
TEST    swr-resample_exact-dblp-96000-48000
TEST    swr-resample_exact_async-s16p-8000-44100
TEST    swr-resample_exact_async-s16p-8000-48000
TEST    swr-resample_exact_async-s16p-44100-8000
TEST    swr-resample_exact_async-s16p-44100-48000
TEST    swr-resample_exact_async-s16p-48000-8000
TEST    swr-resample_exact_async-s16p-48000-44100
TEST    swr-resample_exact_async-s32p-8000-44100
TEST    swr-resample_exact_async-s32p-8000-48000
TEST    swr-resample_exact_async-s32p-44100-8000
TEST    swr-resample_exact_async-s32p-44100-48000
TEST    swr-resample_exact_async-s32p-48000-8000
TEST    swr-resample_exact_async-s32p-48000-44100
TEST    swr-resample_exact_async-fltp-8000-44100
TEST    swr-resample_exact_async-fltp-8000-48000
TEST    swr-resample_exact_async-fltp-44100-8000
TEST    swr-resample_exact_async-fltp-44100-48000
TEST    swr-resample_exact_async-fltp-48000-8000
TEST    swr-resample_exact_async-fltp-48000-44100
TEST    swr-resample_exact_async-dblp-8000-44100
TEST    swr-resample_exact_async-dblp-8000-48000
TEST    swr-resample_exact_async-dblp-44100-8000
TEST    swr-resample_exact_async-dblp-44100-48000
TEST    swr-resample_exact_async-dblp-48000-8000
TEST    swr-resample_exact_async-dblp-48000-44100
TEST    swr-resample_exact_lin-s16p-2626-8000
TEST    swr-resample_exact_lin-s16p-2626-44100
TEST    swr-resample_exact_lin-s16p-2626-48000
TEST    swr-resample_exact_lin-s16p-2626-96000
TEST    swr-resample_exact_lin-s16p-8000-2626
TEST    swr-resample_exact_lin-s16p-8000-44100
TEST    swr-resample_exact_lin-s16p-8000-48000
TEST    swr-resample_exact_lin-s16p-8000-96000
TEST    swr-resample_exact_lin-s16p-44100-2626
TEST    swr-resample_exact_lin-s16p-44100-8000
TEST    swr-resample_exact_lin-s16p-44100-48000
TEST    swr-resample_exact_lin-s16p-44100-96000
TEST    swr-resample_exact_lin-s16p-48000-2626
TEST    swr-resample_exact_lin-s16p-48000-8000
TEST    swr-resample_exact_lin-s16p-48000-44100
TEST    swr-resample_exact_lin-s16p-48000-96000
TEST    swr-resample_exact_lin-s16p-96000-2626
TEST    swr-resample_exact_lin-s16p-96000-8000
TEST    swr-resample_exact_lin-s16p-96000-44100
TEST    swr-resample_exact_lin-s16p-96000-48000
TEST    swr-resample_exact_lin-s32p-2626-8000
TEST    swr-resample_exact_lin-s32p-2626-44100
TEST    swr-resample_exact_lin-s32p-2626-48000
TEST    swr-resample_exact_lin-s32p-2626-96000
TEST    swr-resample_exact_lin-s32p-8000-2626
TEST    swr-resample_exact_lin-s32p-8000-44100
TEST    swr-resample_exact_lin-s32p-8000-48000
TEST    swr-resample_exact_lin-s32p-8000-96000
TEST    swr-resample_exact_lin-s32p-44100-2626
TEST    swr-resample_exact_lin-s32p-44100-8000
TEST    swr-resample_exact_lin-s32p-44100-48000
TEST    swr-resample_exact_lin-s32p-44100-96000
TEST    swr-resample_exact_lin-s32p-48000-2626
TEST    swr-resample_exact_lin-s32p-48000-8000
TEST    swr-resample_exact_lin-s32p-48000-44100
TEST    swr-resample_exact_lin-s32p-48000-96000
TEST    swr-resample_exact_lin-s32p-96000-2626
TEST    swr-resample_exact_lin-s32p-96000-8000
TEST    swr-resample_exact_lin-s32p-96000-44100
TEST    swr-resample_exact_lin-s32p-96000-48000
TEST    swr-resample_exact_lin-fltp-2626-8000
TEST    swr-resample_exact_lin-fltp-2626-44100
TEST    swr-resample_exact_lin-fltp-2626-48000
TEST    swr-resample_exact_lin-fltp-2626-96000
TEST    swr-resample_exact_lin-fltp-8000-2626
TEST    swr-resample_exact_lin-fltp-8000-44100
TEST    swr-resample_exact_lin-fltp-8000-48000
TEST    swr-resample_exact_lin-fltp-8000-96000
TEST    swr-resample_exact_lin-fltp-44100-2626
TEST    swr-resample_exact_lin-fltp-44100-8000
TEST    swr-resample_exact_lin-fltp-44100-48000
TEST    swr-resample_exact_lin-fltp-44100-96000
TEST    swr-resample_exact_lin-fltp-48000-2626
TEST    swr-resample_exact_lin-fltp-48000-8000
TEST    swr-resample_exact_lin-fltp-48000-44100
TEST    swr-resample_exact_lin-fltp-48000-96000
TEST    swr-resample_exact_lin-fltp-96000-2626
TEST    swr-resample_exact_lin-fltp-96000-8000
TEST    swr-resample_exact_lin-fltp-96000-44100
TEST    swr-resample_exact_lin-fltp-96000-48000
TEST    swr-resample_exact_lin-dblp-2626-8000
TEST    swr-resample_exact_lin-dblp-2626-44100
TEST    swr-resample_exact_lin-dblp-2626-48000
TEST    swr-resample_exact_lin-dblp-2626-96000
TEST    swr-resample_exact_lin-dblp-8000-2626
TEST    swr-resample_exact_lin-dblp-8000-44100
TEST    swr-resample_exact_lin-dblp-8000-48000
TEST    swr-resample_exact_lin-dblp-8000-96000
TEST    swr-resample_exact_lin-dblp-44100-2626
TEST    swr-resample_exact_lin-dblp-44100-8000
TEST    swr-resample_exact_lin-dblp-44100-48000
TEST    swr-resample_exact_lin-dblp-44100-96000
TEST    swr-resample_exact_lin-dblp-48000-2626
TEST    swr-resample_exact_lin-dblp-48000-8000
TEST    swr-resample_exact_lin-dblp-48000-44100
TEST    swr-resample_exact_lin-dblp-48000-96000
TEST    swr-resample_exact_lin-dblp-96000-2626
TEST    swr-resample_exact_lin-dblp-96000-8000
TEST    swr-resample_exact_lin-dblp-96000-44100
TEST    swr-resample_exact_lin-dblp-96000-48000
TEST    swr-resample_exact_lin_async-s16p-8000-44100
TEST    swr-resample_exact_lin_async-s16p-8000-48000
TEST    swr-resample_exact_lin_async-s16p-44100-8000
TEST    swr-resample_exact_lin_async-s16p-44100-48000
TEST    swr-resample_exact_lin_async-s16p-48000-8000
TEST    swr-resample_exact_lin_async-s16p-48000-44100
TEST    swr-resample_exact_lin_async-s32p-8000-44100
TEST    swr-resample_exact_lin_async-s32p-8000-48000
TEST    swr-resample_exact_lin_async-s32p-44100-8000
TEST    swr-resample_exact_lin_async-s32p-44100-48000
TEST    swr-resample_exact_lin_async-s32p-48000-8000
TEST    swr-resample_exact_lin_async-s32p-48000-44100
TEST    swr-resample_exact_lin_async-fltp-8000-44100
TEST    swr-resample_exact_lin_async-fltp-8000-48000
TEST    swr-resample_exact_lin_async-fltp-44100-8000
TEST    swr-resample_exact_lin_async-fltp-44100-48000
TEST    swr-resample_exact_lin_async-fltp-48000-8000
TEST    swr-resample_exact_lin_async-fltp-48000-44100
TEST    swr-resample_exact_lin_async-dblp-8000-44100
TEST    swr-resample_exact_lin_async-dblp-8000-48000
TEST    swr-resample_exact_lin_async-dblp-44100-8000
TEST    swr-resample_exact_lin_async-dblp-44100-48000
TEST    swr-resample_exact_lin_async-dblp-48000-8000
TEST    swr-resample_exact_lin_async-dblp-48000-44100
TEST    swr-audioconvert
TEST    dcinema-encode
TEST    ffmpeg-filter_complex
TEST    ffmpeg-filter_complex_audio
TEST    ffmpeg-lavfi
TEST    unknown_layout-pcm
TEST    unknown_layout-ac3
TEST    acodec-pcm-alaw
TEST    acodec-pcm-mulaw
TEST    acodec-pcm-s8
TEST    acodec-pcm-u8
TEST    acodec-pcm-s16be
TEST    acodec-pcm-s16le
TEST    acodec-pcm-u16be
TEST    acodec-pcm-u16le
TEST    acodec-pcm-s24be
TEST    acodec-pcm-s24le
TEST    acodec-pcm-u24be
TEST    acodec-pcm-u24le
TEST    acodec-pcm-s32be
TEST    acodec-pcm-s32le
TEST    acodec-pcm-u32be
TEST    acodec-pcm-u32le
TEST    acodec-pcm-f32be
TEST    acodec-pcm-f32le
TEST    acodec-pcm-f64be
TEST    acodec-pcm-f64le
TEST    acodec-pcm-s8_planar
TEST    acodec-pcm-s16be_planar
TEST    acodec-pcm-s16le_planar
TEST    acodec-pcm-s24le_planar
TEST    acodec-pcm-s32le_planar
TEST    acodec-adpcm-adx
TEST    acodec-adpcm-argo
TEST    acodec-adpcm-ima_apm
TEST    acodec-adpcm-ima_alp
TEST    acodec-adpcm-ima_qt
TEST    acodec-adpcm-ima_ssi
TEST    acodec-adpcm-ima_wav
TEST    acodec-adpcm-ms
TEST    acodec-adpcm-swf
TEST    acodec-adpcm-swf-wav
TEST    acodec-adpcm-yamaha
TEST    acodec-adpcm-adx-trellis
TEST    acodec-adpcm-ima_qt-trellis
TEST    acodec-adpcm-ima_wav-trellis
TEST    acodec-adpcm-ms-trellis
TEST    acodec-adpcm-swf-trellis
TEST    acodec-adpcm-yamaha-trellis
TEST    acodec-mp2
TEST    acodec-mp2fixed
TEST    acodec-alac
TEST    acodec-dca
TEST    acodec-dca2
TEST    acodec-flac
TEST    acodec-flac-exact-rice
TEST    acodec-g723_1
TEST    acodec-ra144
TEST    acodec-roqaudio
TEST    acodec-s302m
TEST    acodec-wavpack
TEST    acodec-tta
TEST    vsynth1-amv
TEST    vsynth1-asv1
TEST    vsynth1-asv2
TEST    vsynth1-cinepak
TEST    vsynth1-cljr
TEST    vsynth1-dnxhd-720p
TEST    vsynth1-dnxhd-720p-rd
TEST    vsynth1-dnxhd-720p-10bit
TEST    vsynth1-dnxhd-720p-hr-lb
TEST    vsynth1-dnxhd-edge1-hr
TEST    vsynth1-dnxhd-edge2-hr
TEST    vsynth1-dnxhd-edge3-hr
TEST    vsynth1-dnxhd-4k-hr-lb
TEST    vsynth1-dnxhd-2k-hr-hq
TEST    vsynth1-dnxhd-uhd-hr-sq
TEST    vsynth1-vc2-420p
TEST    vsynth1-vc2-420p10
TEST    vsynth1-vc2-420p12
TEST    vsynth1-vc2-422p
TEST    vsynth1-vc2-422p10
TEST    vsynth1-vc2-422p12
TEST    vsynth1-vc2-444p
TEST    vsynth1-vc2-444p10
TEST    vsynth1-vc2-444p12
TEST    vsynth1-vc2-thaar
TEST    vsynth1-vc2-t5_3
TEST    vsynth1-dnxhd-1080i
TEST    vsynth1-dnxhd-1080i-10bit
TEST    vsynth1-dnxhd-1080i-colr
TEST    vsynth1-dnxhd-hr-lb-mov
TEST    vsynth1-dnxhd-hr-sq-mov
TEST    vsynth1-dnxhd-hr-hq-mov
TEST    vsynth1-dv
TEST    vsynth1-dv-411
TEST    vsynth1-dv-50
TEST    vsynth1-dv-hd
TEST    vsynth1-dv-fhd
TEST    vsynth1-ffv1
TEST    vsynth1-ffv1-v0
TEST    vsynth1-ffv1-v3-yuv420p
TEST    vsynth1-ffv1-v3-yuv422p10
TEST    vsynth1-ffv1-v3-yuv444p16
TEST    vsynth1-ffv1-v3-bgr0
TEST    vsynth1-ffv1-v3-rgb48
TEST    vsynth1-ffvhuff
TEST    vsynth1-ffvhuff444
TEST    vsynth1-ffvhuff420p12
TEST    vsynth1-ffvhuff422p10left
TEST    vsynth1-ffvhuff444p16
TEST    vsynth1-flashsv
TEST    vsynth1-flashsv2
TEST    vsynth1-flv
TEST    vsynth1-h261
TEST    vsynth1-h261-trellis
TEST    vsynth1-h263
TEST    vsynth1-h263-obmc
TEST    vsynth1-h263p
TEST    vsynth1-huffyuv
TEST    vsynth1-huffyuvbgr24
TEST    vsynth1-huffyuvbgra
TEST    vsynth1-jpegls
TEST    vsynth1-jpeg2000
TEST    vsynth1-jpeg2000-97
TEST    vsynth1-ljpeg
TEST    vsynth1-mjpeg
TEST    vsynth1-mjpeg-422
TEST    vsynth1-mjpeg-444
TEST    vsynth1-mjpeg-trell
TEST    vsynth1-mjpeg-huffman
TEST    vsynth1-mjpeg-trell-huffman
TEST    vsynth1-mpeg1
TEST    vsynth1-mpeg1b
TEST    vsynth1-mpeg2
TEST    vsynth1-mpeg2-422
TEST    vsynth1-mpeg2-idct-int
TEST    vsynth1-mpeg2-ilace
TEST    vsynth1-mpeg2-ivlc-qprd
TEST    vsynth1-mpeg2-thread
TEST    vsynth1-mpeg2-thread-ivlc
TEST    vsynth1-mpeg4
TEST    vsynth1-mpeg4-rc
TEST    vsynth1-mpeg4-adv
TEST    vsynth1-mpeg4-qprd
TEST    vsynth1-mpeg4-adap
TEST    vsynth1-mpeg4-qpel
TEST    vsynth1-mpeg4-thread
TEST    vsynth1-mpeg4-error
TEST    vsynth1-mpeg4-nr
TEST    vsynth1-mpeg4-nsse
TEST    vsynth1-msmpeg4
TEST    vsynth1-msmpeg4v2
TEST    vsynth1-mpng
TEST    vsynth1-msvideo1
TEST    vsynth1-prores
TEST    vsynth1-prores_int
TEST    vsynth1-prores_444
TEST    vsynth1-prores_444_int
TEST    vsynth1-prores_ks
TEST    vsynth1-qtrle
TEST    vsynth1-qtrlegray
TEST    vsynth1-rgb
TEST    vsynth1-bpp1
TEST    vsynth1-bpp15
TEST    vsynth1-mov-bgr24
TEST    vsynth1-mov-bpp15
TEST    vsynth1-mov-bpp16
TEST    vsynth1-roqvideo
TEST    vsynth1-rv10
TEST    vsynth1-rv20
TEST    vsynth1-snow
TEST    vsynth1-snow-hpel
TEST    vsynth1-snow-ll
TEST    vsynth1-svq1
TEST    vsynth1-r210
TEST    vsynth1-v210
TEST    vsynth1-v210-10
TEST    vsynth1-v308
TEST    vsynth1-v408
TEST    vsynth1-avui
TEST    vsynth1-wmv1
TEST    vsynth1-wmv2
TEST    vsynth1-yuv
TEST    vsynth1-xface
TEST    vsynth1-yuv4
TEST    vsynth1-y41p
TEST    vsynth1-zlib
TEST    vsynth2-amv
TEST    vsynth2-asv1
TEST    vsynth2-asv2
TEST    vsynth2-cinepak
TEST    vsynth2-cljr
TEST    vsynth2-dnxhd-720p
TEST    vsynth2-dnxhd-720p-rd
TEST    vsynth2-dnxhd-720p-10bit
TEST    vsynth2-dnxhd-720p-hr-lb
TEST    vsynth2-dnxhd-edge1-hr
TEST    vsynth2-dnxhd-edge2-hr
TEST    vsynth2-dnxhd-edge3-hr
TEST    vsynth2-dnxhd-4k-hr-lb
TEST    vsynth2-dnxhd-2k-hr-hq
TEST    vsynth2-dnxhd-uhd-hr-sq
TEST    vsynth2-vc2-420p
TEST    vsynth2-vc2-420p10
TEST    vsynth2-vc2-420p12
TEST    vsynth2-vc2-422p
TEST    vsynth2-vc2-422p10
TEST    vsynth2-vc2-422p12
TEST    vsynth2-vc2-444p
TEST    vsynth2-vc2-444p10
TEST    vsynth2-vc2-444p12
TEST    vsynth2-vc2-thaar
TEST    vsynth2-vc2-t5_3
TEST    vsynth2-dnxhd-1080i
TEST    vsynth2-dnxhd-1080i-10bit
TEST    vsynth2-dnxhd-1080i-colr
TEST    vsynth2-dnxhd-hr-lb-mov
TEST    vsynth2-dnxhd-hr-sq-mov
TEST    vsynth2-dnxhd-hr-hq-mov
TEST    vsynth2-dv
TEST    vsynth2-dv-411
TEST    vsynth2-dv-50
TEST    vsynth2-dv-hd
TEST    vsynth2-dv-fhd
TEST    vsynth2-ffv1
TEST    vsynth2-ffv1-v0
TEST    vsynth2-ffv1-v3-yuv420p
TEST    vsynth2-ffv1-v3-yuv422p10
TEST    vsynth2-ffv1-v3-yuv444p16
TEST    vsynth2-ffv1-v3-bgr0
TEST    vsynth2-ffv1-v3-rgb48
TEST    vsynth2-ffvhuff
TEST    vsynth2-ffvhuff444
TEST    vsynth2-ffvhuff420p12
TEST    vsynth2-ffvhuff422p10left
TEST    vsynth2-ffvhuff444p16
TEST    vsynth2-flashsv
TEST    vsynth2-flashsv2
TEST    vsynth2-flv
TEST    vsynth2-h261
TEST    vsynth2-h261-trellis
TEST    vsynth2-h263
TEST    vsynth2-h263-obmc
TEST    vsynth2-h263p
TEST    vsynth2-huffyuv
TEST    vsynth2-huffyuvbgr24
TEST    vsynth2-huffyuvbgra
TEST    vsynth2-jpegls
TEST    vsynth2-jpeg2000
TEST    vsynth2-jpeg2000-97
TEST    vsynth2-ljpeg
TEST    vsynth2-mjpeg
TEST    vsynth2-mjpeg-422
TEST    vsynth2-mjpeg-444
TEST    vsynth2-mjpeg-trell
TEST    vsynth2-mjpeg-huffman
TEST    vsynth2-mjpeg-trell-huffman
TEST    vsynth2-mpeg1
TEST    vsynth2-mpeg1b
TEST    vsynth2-mpeg2
TEST    vsynth2-mpeg2-422
TEST    vsynth2-mpeg2-idct-int
TEST    vsynth2-mpeg2-ilace
TEST    vsynth2-mpeg2-ivlc-qprd
TEST    vsynth2-mpeg2-thread
TEST    vsynth2-mpeg2-thread-ivlc
TEST    vsynth2-mpeg4
TEST    vsynth2-mpeg4-rc
TEST    vsynth2-mpeg4-adv
TEST    vsynth2-mpeg4-qprd
TEST    vsynth2-mpeg4-adap
TEST    vsynth2-mpeg4-qpel
TEST    vsynth2-mpeg4-thread
TEST    vsynth2-mpeg4-error
TEST    vsynth2-mpeg4-nr
TEST    vsynth2-mpeg4-nsse
TEST    vsynth2-msmpeg4
TEST    vsynth2-msmpeg4v2
TEST    vsynth2-mpng
TEST    vsynth2-msvideo1
TEST    vsynth2-prores
TEST    vsynth2-prores_int
TEST    vsynth2-prores_444
TEST    vsynth2-prores_444_int
TEST    vsynth2-prores_ks
TEST    vsynth2-qtrle
TEST    vsynth2-qtrlegray
TEST    vsynth2-rgb
TEST    vsynth2-bpp1
TEST    vsynth2-bpp15
TEST    vsynth2-mov-bgr24
TEST    vsynth2-mov-bpp15
TEST    vsynth2-mov-bpp16
TEST    vsynth2-roqvideo
TEST    vsynth2-rv10
TEST    vsynth2-rv20
TEST    vsynth2-snow
TEST    vsynth2-snow-hpel
TEST    vsynth2-snow-ll
TEST    vsynth2-svq1
TEST    vsynth2-r210
TEST    vsynth2-v210
TEST    vsynth2-v210-10
TEST    vsynth2-v308
TEST    vsynth2-v408
TEST    vsynth2-avui
TEST    vsynth2-wmv1
TEST    vsynth2-wmv2
TEST    vsynth2-yuv
TEST    vsynth2-xface
TEST    vsynth2-yuv4
TEST    vsynth2-y41p
TEST    vsynth2-zlib
TEST    vsynth3-amv
TEST    vsynth3-asv1
TEST    vsynth3-asv2
TEST    vsynth3-cljr
TEST    vsynth3-dnxhd-720p-hr-lb
TEST    vsynth3-dnxhd-edge1-hr
TEST    vsynth3-dnxhd-edge2-hr
TEST    vsynth3-dnxhd-edge3-hr
TEST    vsynth3-dnxhd-4k-hr-lb
TEST    vsynth3-dnxhd-2k-hr-hq
TEST    vsynth3-dnxhd-uhd-hr-sq
TEST    vsynth3-dnxhd-1080i-10bit
TEST    vsynth3-dnxhd-1080i-colr
TEST    vsynth3-dnxhd-hr-lb-mov
TEST    vsynth3-dnxhd-hr-sq-mov
TEST    vsynth3-dnxhd-hr-hq-mov
TEST    vsynth3-dv-hd
TEST    vsynth3-dv-fhd
TEST    vsynth3-ffv1
TEST    vsynth3-ffv1-v0
TEST    vsynth3-ffv1-v3-yuv420p
TEST    vsynth3-ffv1-v3-yuv422p10
TEST    vsynth3-ffv1-v3-yuv444p16
TEST    vsynth3-ffv1-v3-bgr0
TEST    vsynth3-ffv1-v3-rgb48
TEST    vsynth3-ffvhuff
TEST    vsynth3-ffvhuff444
TEST    vsynth3-ffvhuff420p12
TEST    vsynth3-ffvhuff422p10left
TEST    vsynth3-ffvhuff444p16
TEST    vsynth3-flashsv
TEST    vsynth3-flashsv2
TEST    vsynth3-flv
TEST    vsynth3-huffyuv
TEST    vsynth3-huffyuvbgr24
TEST    vsynth3-huffyuvbgra
TEST    vsynth3-jpegls
TEST    vsynth3-jpeg2000
TEST    vsynth3-jpeg2000-97
TEST    vsynth3-ljpeg
TEST    vsynth3-mjpeg
TEST    vsynth3-mjpeg-422
TEST    vsynth3-mjpeg-444
TEST    vsynth3-mjpeg-trell
TEST    vsynth3-mjpeg-huffman
TEST    vsynth3-mjpeg-trell-huffman
TEST    vsynth3-mpeg1
TEST    vsynth3-mpeg1b
TEST    vsynth3-mpeg2
TEST    vsynth3-mpeg2-422
TEST    vsynth3-mpeg2-idct-int
TEST    vsynth3-mpeg2-ilace
TEST    vsynth3-mpeg2-ivlc-qprd
TEST    vsynth3-mpeg2-thread
TEST    vsynth3-mpeg2-thread-ivlc
TEST    vsynth3-mpeg4
TEST    vsynth3-mpeg4-rc
TEST    vsynth3-mpeg4-adv
TEST    vsynth3-mpeg4-qprd
TEST    vsynth3-mpeg4-adap
TEST    vsynth3-mpeg4-qpel
TEST    vsynth3-mpeg4-thread
TEST    vsynth3-mpeg4-error
TEST    vsynth3-mpeg4-nr
TEST    vsynth3-mpeg4-nsse
TEST    vsynth3-msmpeg4
TEST    vsynth3-msmpeg4v2
TEST    vsynth3-mpng
TEST    vsynth3-prores
TEST    vsynth3-prores_int
TEST    vsynth3-prores_444
TEST    vsynth3-prores_444_int
TEST    vsynth3-prores_ks
TEST    vsynth3-qtrle
TEST    vsynth3-rgb
TEST    vsynth3-bpp1
TEST    vsynth3-bpp15
TEST    vsynth3-mov-bgr24
TEST    vsynth3-mov-bpp15
TEST    vsynth3-mov-bpp16
TEST    vsynth3-svq1
TEST    vsynth3-r210
TEST    vsynth3-v210
TEST    vsynth3-v210-10
TEST    vsynth3-v308
TEST    vsynth3-v408
TEST    vsynth3-wmv1
TEST    vsynth3-wmv2
TEST    vsynth3-yuv
TEST    vsynth3-xface
TEST    vsynth3-yuv4
TEST    vsynth3-zlib
TEST    lavf-aiff
TEST    lavf-al
TEST    lavf-ast
TEST    lavf-au
TEST    lavf-caf
TEST    lavf-mmf
TEST    lavf-ogg
TEST    lavf-rso
TEST    lavf-sox
TEST    lavf-ul
TEST    lavf-voc
TEST    lavf-ircam
TEST    lavf-s16.voc
TEST    lavf-wav
TEST    lavf-peak.wav
TEST    lavf-peak_only.wav
TEST    lavf-w64
TEST    lavf-tta
TEST    lavf-mka
TEST    lavf-wv
TEST    lavf-asf
TEST    lavf-avi
TEST    lavf-dv
TEST    lavf-dv_pal
TEST    lavf-dv_ntsc
TEST    lavf-flm
TEST    lavf-gxf
TEST    lavf-gxf_pal
TEST    lavf-gxf_ntsc
TEST    lavf-mkv
TEST    lavf-mkv_attachment
TEST    lavf-mov
TEST    lavf-mov_rtphint
TEST    lavf-ismv
TEST    lavf-mp4
TEST    lavf-mpg
TEST    lavf-mxf_dv25
TEST    lavf-mxf_dvcpro50
TEST    lavf-mxf_opatom
TEST    lavf-mxf_opatom_audio
TEST    lavf-nut
TEST    lavf-rm
TEST    lavf-smjpeg
TEST    lavf-swf
TEST    lavf-wtv
TEST    lavf-bmp
TEST    lavf-dpx
TEST    lavf-gbrp10le.dpx
TEST    lavf-gbrp12le.dpx
TEST    lavf-rgb48le.dpx
TEST    lavf-rgb48le_10.dpx
TEST    lavf-rgba64le.dpx
TEST    lavf-jpg
TEST    lavf-pam
TEST    lavf-rgba.pam
TEST    lavf-gray.pam
TEST    lavf-gray16be.pam
TEST    lavf-rgb48be.pam
TEST    lavf-monob.pam
TEST    lavf-pcx
TEST    lavf-pgm
TEST    lavf-png
TEST    lavf-gray16be.png
TEST    lavf-rgb48be.png
TEST    lavf-ppm
TEST    lavf-sgi
TEST    lavf-sun
TEST    lavf-tga
TEST    lavf-tiff
TEST    lavf-xbm
TEST    lavf-xwd
TEST    lavf-rgba.xwd
TEST    lavf-rgb565be.xwd
TEST    lavf-rgb555be.xwd
TEST    lavf-rgb8.xwd
TEST    lavf-rgb4_byte.xwd
TEST    lavf-gray.xwd
TEST    lavf-monow.xwd
TEST    lavf-pbmpipe
TEST    lavf-pgmpipe
TEST    lavf-ppmpipe
TEST    lavf-apng
TEST    lavf-apng.png
TEST    lavf-gray.fits
TEST    lavf-gray16be.fits
TEST    lavf-gbrp.fits
TEST    lavf-gbrap.fits
TEST    lavf-gbrp16be.fits
TEST    lavf-gbrap16be.fits
TEST    lavf-gif
TEST    lavf-y4m
TEST    seek-acodec-adpcm-ima_qt
TEST    seek-acodec-adpcm-ima_qt-trellis
TEST    seek-acodec-adpcm-ima_wav
TEST    seek-acodec-adpcm-ima_wav-trellis
TEST    seek-acodec-adpcm-ms
TEST    seek-acodec-adpcm-ms-trellis
TEST    seek-acodec-adpcm-swf
TEST    seek-acodec-adpcm-swf-trellis
TEST    seek-acodec-adpcm-yamaha
TEST    seek-acodec-adpcm-yamaha-trellis
TEST    seek-acodec-alac
TEST    seek-acodec-flac
TEST    seek-acodec-mp2
TEST    seek-acodec-pcm-alaw
TEST    seek-acodec-pcm-mulaw
TEST    seek-acodec-pcm-s8
TEST    seek-acodec-pcm-u8
TEST    seek-acodec-pcm-s16be
TEST    seek-acodec-pcm-s16le
TEST    seek-acodec-pcm-s24be
TEST    seek-acodec-pcm-s24le
TEST    seek-acodec-pcm-s32be
TEST    seek-acodec-pcm-s32le
TEST    seek-acodec-pcm-f32be
TEST    seek-acodec-pcm-f32le
TEST    seek-acodec-pcm-f64be
TEST    seek-acodec-pcm-f64le
TEST    seek-lavf-aiff
TEST    seek-lavf-al
TEST    seek-lavf-asf
TEST    seek-lavf-au
TEST    seek-lavf-avi
TEST    seek-lavf-bmp
TEST    seek-lavf-dv
TEST    seek-lavf-flv
TEST    seek-lavf-gif
TEST    seek-lavf-gxf
TEST    seek-lavf-jpg
TEST    seek-lavf-mkv
TEST    seek-lavf-mmf
TEST    seek-lavf-mov
TEST    seek-lavf-mpg
TEST    seek-lavf-ul
TEST    seek-lavf-mxf
TEST    seek-lavf-mxf_d10
TEST    seek-lavf-mxf_dv25
TEST    seek-lavf-mxf_dvcpro50
TEST    seek-lavf-mxf_opatom
TEST    seek-lavf-mxf_opatom_audio
TEST    seek-lavf-nut
TEST    seek-lavf-ogg
TEST    seek-lavf-pbmpipe
TEST    seek-lavf-pcx
TEST    seek-lavf-pgm
TEST    seek-lavf-pgmpipe
TEST    seek-lavf-ppm
TEST    seek-lavf-ppmpipe
TEST    seek-lavf-rm
TEST    seek-lavf-sgi
TEST    seek-lavf-swf
TEST    seek-lavf-tga
TEST    seek-lavf-tiff
TEST    seek-lavf-ts
TEST    seek-lavf-voc
TEST    seek-lavf-wav
TEST    seek-lavf-wtv
TEST    seek-lavf-y4m
TEST    pixfmt-bgr24
TEST    pixfmt-gray
TEST    pixfmt-monob
TEST    pixfmt-monow
TEST    pixfmt-rgb24
TEST    pixfmt-rgb32
TEST    pixfmt-rgb555
TEST    pixfmt-rgb565
TEST    pixfmt-yuv410p
TEST    pixfmt-yuv411p
TEST    pixfmt-yuv420p
TEST    pixfmt-yuv422p
TEST    pixfmt-yuv440p
TEST    pixfmt-yuv444p
TEST    pixfmt-yuvj420p
TEST    pixfmt-yuvj422p
TEST    pixfmt-yuvj440p
TEST    pixfmt-yuvj444p
TEST    pixfmt-yuyv422
TEST    filter-boxblur
TEST    filter-colorchannelmixer
TEST    filter-drawbox
TEST    filter-fade
TEST    filter-fieldorder
TEST    filter-framepack-columns
TEST    filter-framepack-frameseq
TEST    filter-framepack-lines
TEST    filter-framepack-sbs
TEST    filter-framepack-tab
TEST    filter-gradfun
TEST    filter-hqdn3d
TEST    filter-interlace
TEST    filter-interlace-complex
TEST    filter-negate
TEST    filter-histogram-levels
TEST    filter-waveform_column
TEST    filter-waveform_row
TEST    filter-waveform_envelope
TEST    filter-waveform_uv
TEST    filter-vectorscope_gray
TEST    filter-vectorscope_color
TEST    filter-vectorscope_color2
TEST    filter-vectorscope_color3
TEST    filter-vectorscope_color4
TEST    filter-vectorscope_xy
TEST    filter-mergeplanes
TEST    filter-hstack
TEST    filter-vstack
TEST    filter-overlay
TEST    filter-overlay_rgb
TEST    filter-overlay_yuv420
TEST    filter-overlay_yuv420p10
TEST    filter-overlay_nv12
TEST    filter-overlay_nv21
TEST    filter-overlay_yuv422
TEST    filter-overlay_yuv422p10
TEST    filter-overlay_yuv444
TEST    filter-phase
TEST    filter-removegrain-mode-00
TEST    filter-removegrain-mode-01
TEST    filter-removegrain-mode-02
TEST    filter-removegrain-mode-03
TEST    filter-removegrain-mode-04
TEST    filter-removegrain-mode-05
TEST    filter-removegrain-mode-06
TEST    filter-removegrain-mode-07
TEST    filter-removegrain-mode-08
TEST    filter-removegrain-mode-09
TEST    filter-removegrain-mode-10
TEST    filter-removegrain-mode-11
TEST    filter-removegrain-mode-12
TEST    filter-removegrain-mode-13
TEST    filter-removegrain-mode-14
TEST    filter-removegrain-mode-15
TEST    filter-removegrain-mode-16
TEST    filter-removegrain-mode-17
TEST    filter-removegrain-mode-18
TEST    filter-removegrain-mode-19
TEST    filter-removegrain-mode-20
TEST    filter-removegrain-mode-21
TEST    filter-removegrain-mode-22
TEST    filter-removegrain-mode-23
TEST    filter-removegrain-mode-24
TEST    filter-separatefields
TEST    filter-weave
TEST    filter-select-alternate
TEST    filter-setpts
TEST    filter-shuffleframes
TEST    filter-shuffleplanes-dup-luma
TEST    filter-shuffleplanes-swapuv
TEST    filter-swaprect
TEST    filter-tblend
TEST    filter-telecine
TEST    filter-transpose
TEST    filter-trim-duration
TEST    filter-trim-frame
TEST    filter-trim-mixed
TEST    filter-trim-time
TEST    filter-unsharp
TEST    filter-unsharp-yuv420p10
TEST    filter-alphaextract_alphamerge_rgb
TEST    filter-alphaextract_alphamerge_yuv
TEST    filter-crop
TEST    filter-crop_scale
TEST    filter-crop_scale_vflip
TEST    filter-crop_vflip
TEST    filter-null
TEST    filter-scale200
TEST    filter-scale500
TEST    filter-scale2ref_keep_aspect
TEST    filter-scalechroma
TEST    filter-vflip
TEST    filter-colorlevels
TEST    filter-colorlevels-16
TEST    filter-colorbalance
TEST    filter-colorbalance-gbrap
TEST    filter-colorbalance-rgba64
TEST    filter-colorbalance-gbrap-16
TEST    filter-colormatrix1
TEST    filter-colormatrix2
TEST    filter-vflip_crop
TEST    filter-vflip_vflip
TEST    filter-edgedetect
TEST    filter-edgedetect-colormix
TEST    filter-hue1
TEST    filter-hue2
TEST    filter-hue3
TEST    filter-hue4
TEST    filter-idet
TEST    filter-pad
TEST    filter-pp
TEST    filter-pp1
TEST    filter-pp2
TEST    filter-pp3
TEST    filter-pp4
TEST    filter-pp5
TEST    filter-pp6
TEST    filter-pp7
TEST    filter-spp
TEST    filter-codecview
TEST    filter-qp
TEST    filter-select
TEST    filter-setdar
TEST    filter-setsar
TEST    filter-stereo3d-al-sbsl
TEST    filter-stereo3d-ar-abl
TEST    filter-stereo3d-abr-mr
TEST    filter-stereo3d-abr-ml
TEST    filter-stereo3d-sbsl-abl
TEST    filter-stereo3d-sbsl-abr
TEST    filter-stereo3d-sbsl-al
TEST    filter-stereo3d-sbsl-sbsr
TEST    filter-stereo3d-sbsl-agmc
TEST    filter-stereo3d-sbsl-agmd
TEST    filter-stereo3d-sbsl-agmg
TEST    filter-stereo3d-sbsl-agmh
TEST    filter-stereo3d-sbsl-arbg
TEST    filter-stereo3d-sbsl-arcc
TEST    filter-stereo3d-sbsl-arcd
TEST    filter-stereo3d-sbsl-arcg
TEST    filter-stereo3d-sbsl-arch
TEST    filter-stereo3d-sbsl-argg
TEST    filter-stereo3d-sbsl-aybc
TEST    filter-stereo3d-sbsl-aybd
TEST    filter-stereo3d-sbsl-aybg
TEST    filter-stereo3d-sbsl-aybh
TEST    filter-thumbnail
TEST    filter-tile
TEST    filter-pixdesc-yuv420p
TEST    filter-pixdesc-yuyv422
TEST    filter-pixdesc-rgb24
TEST    filter-pixdesc-bgr24
TEST    filter-pixdesc-yuv422p
TEST    filter-pixdesc-yuv444p
TEST    filter-pixdesc-yuv410p
TEST    filter-pixdesc-yuv411p
TEST    filter-pixdesc-gray
TEST    filter-pixdesc-monow
TEST    filter-pixdesc-monob
TEST    filter-pixdesc-yuvj420p
TEST    filter-pixdesc-yuvj422p
TEST    filter-pixdesc-yuvj444p
TEST    filter-pixdesc-uyvy422
TEST    filter-pixdesc-bgr8
TEST    filter-pixdesc-bgr4_byte
TEST    filter-pixdesc-rgb8
TEST    filter-pixdesc-rgb4_byte
TEST    filter-pixdesc-nv12
TEST    filter-pixdesc-nv21
TEST    filter-pixdesc-argb
TEST    filter-pixdesc-rgba
TEST    filter-pixdesc-abgr
TEST    filter-pixdesc-bgra
TEST    filter-pixdesc-gray16be
TEST    filter-pixdesc-gray16le
TEST    filter-pixdesc-yuv440p
TEST    filter-pixdesc-yuvj440p
TEST    filter-pixdesc-yuva420p
TEST    filter-pixdesc-rgb48be
TEST    filter-pixdesc-rgb48le
TEST    filter-pixdesc-rgb565be
TEST    filter-pixdesc-rgb565le
TEST    filter-pixdesc-rgb555be
TEST    filter-pixdesc-rgb555le
TEST    filter-pixdesc-bgr565be
TEST    filter-pixdesc-bgr565le
TEST    filter-pixdesc-bgr555be
TEST    filter-pixdesc-bgr555le
TEST    filter-pixdesc-yuv420p16le
TEST    filter-pixdesc-yuv420p16be
TEST    filter-pixdesc-yuv422p16le
TEST    filter-pixdesc-yuv422p16be
TEST    filter-pixdesc-yuv444p16le
TEST    filter-pixdesc-yuv444p16be
TEST    filter-pixdesc-rgb444le
TEST    filter-pixdesc-rgb444be
TEST    filter-pixdesc-bgr444le
TEST    filter-pixdesc-bgr444be
TEST    filter-pixdesc-ya8
TEST    filter-pixdesc-bgr48be
TEST    filter-pixdesc-bgr48le
TEST    filter-pixdesc-yuv420p9be
TEST    filter-pixdesc-yuv420p9le
TEST    filter-pixdesc-yuv420p10be
TEST    filter-pixdesc-yuv420p10le
TEST    filter-pixdesc-yuv422p10be
TEST    filter-pixdesc-yuv422p10le
TEST    filter-pixdesc-yuv444p9be
TEST    filter-pixdesc-yuv444p9le
TEST    filter-pixdesc-yuv444p10be
TEST    filter-pixdesc-yuv444p10le
TEST    filter-pixdesc-yuv422p9be
TEST    filter-pixdesc-yuv422p9le
TEST    filter-pixdesc-gbrp
TEST    filter-pixdesc-gbrp9be
TEST    filter-pixdesc-gbrp9le
TEST    filter-pixdesc-gbrp10be
TEST    filter-pixdesc-gbrp10le
TEST    filter-pixdesc-gbrp16be
TEST    filter-pixdesc-gbrp16le
TEST    filter-pixdesc-yuva422p
TEST    filter-pixdesc-yuva444p
TEST    filter-pixdesc-yuva420p9be
TEST    filter-pixdesc-yuva420p9le
TEST    filter-pixdesc-yuva422p9be
TEST    filter-pixdesc-yuva422p9le
TEST    filter-pixdesc-yuva444p9be
TEST    filter-pixdesc-yuva444p9le
TEST    filter-pixdesc-yuva420p10be
TEST    filter-pixdesc-yuva420p10le
TEST    filter-pixdesc-yuva422p10be
TEST    filter-pixdesc-yuva422p10le
TEST    filter-pixdesc-yuva444p10be
TEST    filter-pixdesc-yuva444p10le
TEST    filter-pixdesc-yuva420p16be
TEST    filter-pixdesc-yuva420p16le
TEST    filter-pixdesc-yuva422p16be
TEST    filter-pixdesc-yuva422p16le
TEST    filter-pixdesc-yuva444p16be
TEST    filter-pixdesc-yuva444p16le
TEST    filter-pixdesc-xyz12le
TEST    filter-pixdesc-xyz12be
TEST    filter-pixdesc-rgba64be
TEST    filter-pixdesc-rgba64le
TEST    filter-pixdesc-bgra64be
TEST    filter-pixdesc-bgra64le
TEST    filter-pixdesc-yvyu422
TEST    filter-pixdesc-ya16be
TEST    filter-pixdesc-ya16le
TEST    filter-pixdesc-gbrap
TEST    filter-pixdesc-gbrap16be
TEST    filter-pixdesc-gbrap16le
TEST    filter-pixdesc-0rgb
TEST    filter-pixdesc-rgb0
TEST    filter-pixdesc-0bgr
TEST    filter-pixdesc-bgr0
TEST    filter-pixdesc-yuv420p12be
TEST    filter-pixdesc-yuv420p12le
TEST    filter-pixdesc-yuv420p14be
TEST    filter-pixdesc-yuv420p14le
TEST    filter-pixdesc-yuv422p12be
TEST    filter-pixdesc-yuv422p12le
TEST    filter-pixdesc-yuv422p14be
TEST    filter-pixdesc-yuv422p14le
TEST    filter-pixdesc-yuv444p12be
TEST    filter-pixdesc-yuv444p12le
TEST    filter-pixdesc-yuv444p14be
TEST    filter-pixdesc-yuv444p14le
TEST    filter-pixdesc-gbrp12be
TEST    filter-pixdesc-gbrp12le
TEST    filter-pixdesc-gbrp14be
TEST    filter-pixdesc-gbrp14le
TEST    filter-pixdesc-yuvj411p
TEST    filter-pixdesc-yuv440p10le
TEST    filter-pixdesc-yuv440p10be
TEST    filter-pixdesc-yuv440p12le
TEST    filter-pixdesc-yuv440p12be
TEST    filter-pixdesc-ayuv64le
TEST    filter-pixdesc-p010le
TEST    filter-pixdesc-p010be
TEST    filter-pixdesc-gbrap12be
TEST    filter-pixdesc-gbrap12le
TEST    filter-pixdesc-gbrap10be
TEST    filter-pixdesc-gbrap10le
TEST    filter-pixdesc-gray12be
TEST    filter-pixdesc-gray12le
TEST    filter-pixdesc-gray10be
TEST    filter-pixdesc-gray10le
TEST    filter-pixdesc-p016le
TEST    filter-pixdesc-p016be
TEST    filter-pixdesc-gray9be
TEST    filter-pixdesc-gray9le
TEST    filter-pixdesc-gbrpf32be
TEST    filter-pixdesc-gbrpf32le
TEST    filter-pixdesc-gbrapf32be
TEST    filter-pixdesc-gbrapf32le
TEST    filter-pixdesc-gray14be
TEST    filter-pixdesc-gray14le
TEST    filter-pixdesc-grayf32be
TEST    filter-pixdesc-grayf32le
TEST    filter-pixdesc-yuva422p12be
TEST    filter-pixdesc-yuva422p12le
TEST    filter-pixdesc-yuva444p12be
TEST    filter-pixdesc-yuva444p12le
TEST    filter-pixdesc-nv24
TEST    filter-pixdesc-nv42
TEST    filter-pixdesc-x2rgb10le
TEST    filter-pixfmts-copy
TEST    filter-pixfmts-crop
TEST    filter-pixfmts-field
TEST    filter-pixfmts-fieldmatch
TEST    filter-pixfmts-fieldorder
TEST    filter-pixfmts-hflip
TEST    filter-pixfmts-il
TEST    filter-pixfmts-kerndeint
TEST    filter-pixfmts-lut
TEST    filter-pixfmts-null
TEST    filter-pixfmts-pad
TEST    filter-pixfmts-pullup
TEST    filter-pixfmts-rotate
TEST    filter-pixfmts-scale
TEST    filter-pixfmts-super2xsai
TEST    filter-pixfmts-swapuv
TEST    filter-pixfmts-tinterlace_cvlpf
TEST    filter-pixfmts-tinterlace_merge
TEST    filter-pixfmts-tinterlace_pad
TEST    filter-pixfmts-tinterlace_vlpf
TEST    filter-pixfmts-transpose
TEST    filter-pixfmts-vflip
TEST    utvideoenc_rgba_left
TEST    utvideoenc_rgba_median
TEST    utvideoenc_rgba_none
TEST    utvideoenc_rgb_left
TEST    utvideoenc_rgb_median
TEST    utvideoenc_rgb_none
TEST    utvideoenc_yuv420_left
TEST    utvideoenc_yuv420_median
TEST    utvideoenc_yuv420_none
TEST    utvideoenc_yuv422_left
TEST    utvideoenc_yuv422_median
TEST    utvideoenc_yuv422_none
TEST    utvideoenc_yuv444_left
TEST    utvideoenc_yuv444_median
TEST    utvideoenc_yuv444_none
TEST    ffprobe_compact
TEST    ffprobe_csv
TEST    ffprobe_default
TEST    ffprobe_flat
TEST    ffprobe_ini
TEST    ffprobe_json
TEST    ffprobe_xml
components/encumbered/ffmpeg/test/results-64.master
New file
@@ -0,0 +1,1642 @@
TEST    checkasm-aacpsdsp
TEST    checkasm-af_afir
TEST    checkasm-alacdsp
TEST    checkasm-audiodsp
TEST    checkasm-blockdsp
TEST    checkasm-bswapdsp
TEST    checkasm-exrdsp
TEST    checkasm-fixed_dsp
TEST    checkasm-flacdsp
TEST    checkasm-float_dsp
TEST    checkasm-fmtconvert
TEST    checkasm-g722dsp
TEST    checkasm-h264dsp
TEST    checkasm-h264pred
TEST    checkasm-h264qpel
TEST    checkasm-hevc_add_res
TEST    checkasm-hevc_idct
TEST    checkasm-hevc_sao
TEST    checkasm-jpeg2000dsp
TEST    checkasm-llviddsp
TEST    checkasm-llviddspenc
TEST    checkasm-opusdsp
TEST    checkasm-pixblockdsp
TEST    checkasm-sbrdsp
TEST    checkasm-synth_filter
TEST    checkasm-sw_rgb
TEST    checkasm-sw_scale
TEST    checkasm-v210dec
TEST    checkasm-v210enc
TEST    checkasm-vf_blend
TEST    checkasm-vf_colorspace
TEST    checkasm-vf_eq
TEST    checkasm-vf_gblur
TEST    checkasm-vf_hflip
TEST    checkasm-vf_threshold
TEST    checkasm-videodsp
TEST    checkasm-vp8dsp
TEST    checkasm-vp9dsp
TEST    source
IGNORE    source
TEST    api-threadmessage
TEST    api-flac
TEST    lavf-flv
TEST    api-seek
TEST    lavf-mxf
TEST    concat-demuxer-simple1-lavf-mxf
TEST    lavf-mxf_d10
TEST    concat-demuxer-simple1-lavf-mxf_d10
TEST    lavf-ts
TEST    concat-demuxer-simple2-lavf-ts
TEST    concat-demuxer-extended-lavf-mxf
TEST    concat-demuxer-extended-lavf-mxf_d10
TEST    dnn-layer-pad
TEST    dnn-layer-conv2d
TEST    dnn-layer-dense
TEST    dnn-layer-depth2space
TEST    dnn-layer-mathbinary
TEST    dnn-layer-maximum
TEST    dnn-layer-mathunary
TEST    dnn-layer-avgpool
TEST    dct1d-4
TEST    idct1d-4
TEST    dct1d-5
TEST    idct1d-5
TEST    dct1d-6
TEST    idct1d-6
TEST    dct1d-7
TEST    idct1d-7
TEST    dct1d-8
TEST    idct1d-8
TEST    dct1d-9
TEST    idct1d-9
TEST    dct1d-10
TEST    idct1d-10
TEST    dct1d-11
TEST    idct1d-11
TEST    dct1d-12
TEST    idct1d-12
TEST    fft-4
TEST    ifft-4
TEST    fft-5
TEST    ifft-5
TEST    fft-6
TEST    ifft-6
TEST    fft-7
TEST    ifft-7
TEST    fft-8
TEST    ifft-8
TEST    fft-9
TEST    ifft-9
TEST    fft-10
TEST    ifft-10
TEST    fft-11
TEST    ifft-11
TEST    fft-12
TEST    ifft-12
TEST    mdct-4
TEST    imdct-4
TEST    mdct-5
TEST    imdct-5
TEST    mdct-6
TEST    imdct-6
TEST    mdct-7
TEST    imdct-7
TEST    mdct-8
TEST    imdct-8
TEST    mdct-9
TEST    imdct-9
TEST    mdct-10
TEST    imdct-10
TEST    mdct-11
TEST    imdct-11
TEST    mdct-12
TEST    imdct-12
TEST    rdft-4
TEST    irdft-4
TEST    rdft-5
TEST    irdft-5
TEST    rdft-6
TEST    irdft-6
TEST    rdft-7
TEST    irdft-7
TEST    rdft-8
TEST    irdft-8
TEST    rdft-9
TEST    irdft-9
TEST    rdft-10
TEST    irdft-10
TEST    rdft-11
TEST    irdft-11
TEST    rdft-12
TEST    irdft-12
TEST    fft-fixed32-4
TEST    ifft-fixed32-4
TEST    mdct-fixed32-4
TEST    imdct-fixed32-4
TEST    fft-fixed32-5
TEST    ifft-fixed32-5
TEST    mdct-fixed32-5
TEST    imdct-fixed32-5
TEST    fft-fixed32-6
TEST    ifft-fixed32-6
TEST    mdct-fixed32-6
TEST    imdct-fixed32-6
TEST    fft-fixed32-7
TEST    ifft-fixed32-7
TEST    mdct-fixed32-7
TEST    imdct-fixed32-7
TEST    fft-fixed32-8
TEST    ifft-fixed32-8
TEST    mdct-fixed32-8
TEST    imdct-fixed32-8
TEST    fft-fixed32-9
TEST    ifft-fixed32-9
TEST    mdct-fixed32-9
TEST    imdct-fixed32-9
TEST    fft-fixed32-10
TEST    ifft-fixed32-10
TEST    mdct-fixed32-10
TEST    imdct-fixed32-10
TEST    fft-fixed32-11
TEST    ifft-fixed32-11
TEST    mdct-fixed32-11
TEST    imdct-fixed32-11
TEST    fft-fixed32-12
TEST    ifft-fixed32-12
TEST    mdct-fixed32-12
TEST    imdct-fixed32-12
TEST    av-dct1d-4
TEST    av-idct1d-4
TEST    av-dct1d-5
TEST    av-idct1d-5
TEST    av-dct1d-6
TEST    av-idct1d-6
TEST    av-dct1d-7
TEST    av-idct1d-7
TEST    av-dct1d-8
TEST    av-idct1d-8
TEST    av-dct1d-9
TEST    av-idct1d-9
TEST    av-dct1d-10
TEST    av-idct1d-10
TEST    av-dct1d-11
TEST    av-idct1d-11
TEST    av-dct1d-12
TEST    av-idct1d-12
TEST    av-fft-4
TEST    av-ifft-4
TEST    av-fft-5
TEST    av-ifft-5
TEST    av-fft-6
TEST    av-ifft-6
TEST    av-fft-7
TEST    av-ifft-7
TEST    av-fft-8
TEST    av-ifft-8
TEST    av-fft-9
TEST    av-ifft-9
TEST    av-fft-10
TEST    av-ifft-10
TEST    av-fft-11
TEST    av-ifft-11
TEST    av-fft-12
TEST    av-ifft-12
TEST    av-mdct-4
TEST    av-imdct-4
TEST    av-mdct-5
TEST    av-imdct-5
TEST    av-mdct-6
TEST    av-imdct-6
TEST    av-mdct-7
TEST    av-imdct-7
TEST    av-mdct-8
TEST    av-imdct-8
TEST    av-mdct-9
TEST    av-imdct-9
TEST    av-mdct-10
TEST    av-imdct-10
TEST    av-mdct-11
TEST    av-imdct-11
TEST    av-mdct-12
TEST    av-imdct-12
TEST    av-rdft-4
TEST    av-irdft-4
TEST    av-rdft-5
TEST    av-irdft-5
TEST    av-rdft-6
TEST    av-irdft-6
TEST    av-rdft-7
TEST    av-irdft-7
TEST    av-rdft-8
TEST    av-irdft-8
TEST    av-rdft-9
TEST    av-irdft-9
TEST    av-rdft-10
TEST    av-irdft-10
TEST    av-rdft-11
TEST    av-irdft-11
TEST    av-rdft-12
TEST    av-irdft-12
TEST    avpacket
TEST    cabac
TEST    celp_math
TEST    codec_desc
TEST    golomb
TEST    idct8x8-0
TEST    idct8x8-1
TEST    idct8x8-2
TEST    idct248
TEST    dct8x8
TEST    h264-levels
TEST    h265-levels
TEST    iirfilter
TEST    mpeg12framerate
TEST    rangecoder
TEST    mathops
TEST    j2k-dwt
TEST    libavcodec-utils
TEST    libavcodec-huffman
TEST    libavcodec-htmlsubtitles
TEST    noproxy
TEST    srtp
TEST    url
TEST    movenc
TEST    adler32
TEST    aes
TEST    aes_ctr
TEST    camellia
TEST    cast5
TEST    audio_fifo
TEST    avstring
TEST    base64
TEST    blowfish
TEST    bprint
TEST    cpu
TEST    crc
TEST    color_utils
TEST    des
TEST    dict
TEST    encryption-info
TEST    eval
TEST    fifo
TEST    hash
TEST    hmac
TEST    imgutils
TEST    integer
TEST    lfg
TEST    md5
TEST    murmur3
TEST    parseutils
TEST    pixfmt_best
TEST    display
TEST    random_seed
TEST    ripemd
TEST    sha
TEST    sha512
TEST    tree
TEST    twofish
TEST    xtea
TEST    tea
TEST    opt
TEST    cpu_init
TEST    pixelutils
TEST    sws-pixdesc-query
TEST    sws-floatimg-cmp
TEST    mapchan-6ch-extract-2
TEST    mapchan-6ch-extract-2-downmix-mono
TEST    mapchan-silent-mono
TEST    mapchan-2ch-extract-ch0-ch2-trailing
TEST    mapchan-3ch-extract-ch0-ch2-trailing
TEST    fifo-muxer-tst
TEST    filter-adelay
TEST    filter-aecho
TEST    filter-aemphasis-50fm
TEST    filter-aemphasis-75kf
TEST    filter-afade-qsin
TEST    filter-afade-iqsin
TEST    filter-afade-esin
TEST    filter-afade-hsin
TEST    filter-afade-exp
TEST    filter-afade-log
TEST    filter-agate
TEST    filter-alimiter
TEST    filter-amerge
TEST    filter-apad
TEST    filter-anequalizer
TEST    filter-asetnsamples-pad
TEST    filter-asetnsamples-nopad
TEST    filter-asetrate
TEST    filter-chorus
TEST    filter-dcshift
TEST    filter-earwax
TEST    filter-extrastereo
TEST    filter-firequalizer
TEST    filter-pan-mono1
TEST    filter-pan-mono2
TEST    filter-pan-stereo1
TEST    filter-pan-stereo2
TEST    filter-pan-stereo3
TEST    filter-pan-stereo4
TEST    filter-pan-upmix1
TEST    filter-pan-upmix2
TEST    filter-pan-downmix1
TEST    filter-pan-downmix2
TEST    filter-compand
TEST    filter-hls
TEST    filter-hls-append
TEST    filter-atrim-duration
TEST    filter-atrim-mixed
TEST    filter-atrim-samples
TEST    filter-atrim-time
TEST    filter-channelmap-one-int
TEST    filter-channelmap-one-str
TEST    filter-channelsplit
TEST    filter-join
TEST    filter-volume
TEST    filter-formats
TEST    flv-add_keyframe_index
TEST    filter-lavd-life
TEST    filter-lavd-testsrc
TEST    filter-testsrc2-yuv420p
TEST    filter-testsrc2-yuv444p
TEST    filter-testsrc2-rgb24
TEST    filter-testsrc2-rgba
TEST    filter-allrgb
TEST    filter-allyuv
TEST    filter-pal75bars
TEST    filter-pal100bars
TEST    filter-rgbtestsrc
TEST    filter-smptebars
TEST    filter-smptehdbars
TEST    filter-yuvtestsrc-yuv444p
TEST    filter-yuvtestsrc-yuv444p12
TEST    filter-lavd-scalenorm
TEST    filter-framerate-up
TEST    filter-framerate-down
TEST    filter-framerate-12bit-up
TEST    filter-framerate-12bit-down
TEST    filter-minterpolate-up
TEST    filter-minterpolate-down
TEST    filter-untile
TEST    filter-concat
TEST    filter-concat-vfr
TEST    filter-mpdecimate
TEST    filter-fps-up
TEST    filter-fps-up-round-down
TEST    filter-fps-up-round-up
TEST    filter-fps-down
TEST    filter-fps-down-round-down
TEST    filter-fps-down-round-up
TEST    filter-fps-down-eof-pass
TEST    filter-fps-start-drop
TEST    filter-fps-start-fill
TEST    swr-resample-s16p-2626-8000
TEST    swr-resample-s16p-2626-44100
TEST    swr-resample-s16p-2626-48000
TEST    swr-resample-s16p-2626-96000
TEST    swr-resample-s16p-8000-2626
TEST    swr-resample-s16p-8000-44100
TEST    swr-resample-s16p-8000-48000
TEST    swr-resample-s16p-8000-96000
TEST    swr-resample-s16p-44100-2626
TEST    swr-resample-s16p-44100-8000
TEST    swr-resample-s16p-44100-48000
TEST    swr-resample-s16p-44100-96000
TEST    swr-resample-s16p-48000-2626
TEST    swr-resample-s16p-48000-8000
TEST    swr-resample-s16p-48000-44100
TEST    swr-resample-s16p-48000-96000
TEST    swr-resample-s16p-96000-2626
TEST    swr-resample-s16p-96000-8000
TEST    swr-resample-s16p-96000-44100
TEST    swr-resample-s16p-96000-48000
TEST    swr-resample-s32p-2626-8000
TEST    swr-resample-s32p-2626-44100
TEST    swr-resample-s32p-2626-48000
TEST    swr-resample-s32p-2626-96000
TEST    swr-resample-s32p-8000-2626
TEST    swr-resample-s32p-8000-44100
TEST    swr-resample-s32p-8000-48000
TEST    swr-resample-s32p-8000-96000
TEST    swr-resample-s32p-44100-2626
TEST    swr-resample-s32p-44100-8000
TEST    swr-resample-s32p-44100-48000
TEST    swr-resample-s32p-44100-96000
TEST    swr-resample-s32p-48000-2626
TEST    swr-resample-s32p-48000-8000
TEST    swr-resample-s32p-48000-44100
TEST    swr-resample-s32p-48000-96000
TEST    swr-resample-s32p-96000-2626
TEST    swr-resample-s32p-96000-8000
TEST    swr-resample-s32p-96000-44100
TEST    swr-resample-s32p-96000-48000
TEST    swr-resample-fltp-2626-8000
TEST    swr-resample-fltp-2626-44100
TEST    swr-resample-fltp-2626-48000
TEST    swr-resample-fltp-2626-96000
TEST    swr-resample-fltp-8000-2626
TEST    swr-resample-fltp-8000-44100
TEST    swr-resample-fltp-8000-48000
TEST    swr-resample-fltp-8000-96000
TEST    swr-resample-fltp-44100-2626
TEST    swr-resample-fltp-44100-8000
TEST    swr-resample-fltp-44100-48000
TEST    swr-resample-fltp-44100-96000
TEST    swr-resample-fltp-48000-2626
TEST    swr-resample-fltp-48000-8000
TEST    swr-resample-fltp-48000-44100
TEST    swr-resample-fltp-48000-96000
TEST    swr-resample-fltp-96000-2626
TEST    swr-resample-fltp-96000-8000
TEST    swr-resample-fltp-96000-44100
TEST    swr-resample-fltp-96000-48000
TEST    swr-resample-dblp-2626-8000
TEST    swr-resample-dblp-2626-44100
TEST    swr-resample-dblp-2626-48000
TEST    swr-resample-dblp-2626-96000
TEST    swr-resample-dblp-8000-2626
TEST    swr-resample-dblp-8000-44100
TEST    swr-resample-dblp-8000-48000
TEST    swr-resample-dblp-8000-96000
TEST    swr-resample-dblp-44100-2626
TEST    swr-resample-dblp-44100-8000
TEST    swr-resample-dblp-44100-48000
TEST    swr-resample-dblp-44100-96000
TEST    swr-resample-dblp-48000-2626
TEST    swr-resample-dblp-48000-8000
TEST    swr-resample-dblp-48000-44100
TEST    swr-resample-dblp-48000-96000
TEST    swr-resample-dblp-96000-2626
TEST    swr-resample-dblp-96000-8000
TEST    swr-resample-dblp-96000-44100
TEST    swr-resample-dblp-96000-48000
TEST    swr-resample_lin-s16p-8000-44100
TEST    swr-resample_lin-s16p-8000-48000
TEST    swr-resample_lin-s16p-44100-8000
TEST    swr-resample_lin-s16p-44100-48000
TEST    swr-resample_lin-s16p-48000-8000
TEST    swr-resample_lin-s16p-48000-44100
TEST    swr-resample_lin-fltp-8000-44100
TEST    swr-resample_lin-fltp-8000-48000
TEST    swr-resample_lin-fltp-44100-8000
TEST    swr-resample_lin-fltp-44100-48000
TEST    swr-resample_lin-fltp-48000-8000
TEST    swr-resample_lin-fltp-48000-44100
TEST    swr-resample_lin-dblp-8000-44100
TEST    swr-resample_lin-dblp-8000-48000
TEST    swr-resample_lin-dblp-44100-8000
TEST    swr-resample_lin-dblp-44100-48000
TEST    swr-resample_lin-dblp-48000-8000
TEST    swr-resample_lin-dblp-48000-44100
TEST    swr-resample_nn-s16p-8000-44100
TEST    swr-resample_nn-s16p-44100-8000
TEST    swr-resample_nn-fltp-8000-44100
TEST    swr-resample_nn-fltp-44100-8000
TEST    swr-resample_async-s16p-8000-44100
TEST    swr-resample_async-s16p-44100-8000
TEST    swr-resample_async-fltp-8000-44100
TEST    swr-resample_async-fltp-44100-8000
TEST    swr-resample_exact-s16p-2626-8000
TEST    swr-resample_exact-s16p-2626-44100
TEST    swr-resample_exact-s16p-2626-48000
TEST    swr-resample_exact-s16p-2626-96000
TEST    swr-resample_exact-s16p-8000-2626
TEST    swr-resample_exact-s16p-8000-44100
TEST    swr-resample_exact-s16p-8000-48000
TEST    swr-resample_exact-s16p-8000-96000
TEST    swr-resample_exact-s16p-44100-2626
TEST    swr-resample_exact-s16p-44100-8000
TEST    swr-resample_exact-s16p-44100-48000
TEST    swr-resample_exact-s16p-44100-96000
TEST    swr-resample_exact-s16p-48000-2626
TEST    swr-resample_exact-s16p-48000-8000
TEST    swr-resample_exact-s16p-48000-44100
TEST    swr-resample_exact-s16p-48000-96000
TEST    swr-resample_exact-s16p-96000-2626
TEST    swr-resample_exact-s16p-96000-8000
TEST    swr-resample_exact-s16p-96000-44100
TEST    swr-resample_exact-s16p-96000-48000
TEST    swr-resample_exact-s32p-2626-8000
TEST    swr-resample_exact-s32p-2626-44100
TEST    swr-resample_exact-s32p-2626-48000
TEST    swr-resample_exact-s32p-2626-96000
TEST    swr-resample_exact-s32p-8000-2626
TEST    swr-resample_exact-s32p-8000-44100
TEST    swr-resample_exact-s32p-8000-48000
TEST    swr-resample_exact-s32p-8000-96000
TEST    swr-resample_exact-s32p-44100-2626
TEST    swr-resample_exact-s32p-44100-8000
TEST    swr-resample_exact-s32p-44100-48000
TEST    swr-resample_exact-s32p-44100-96000
TEST    swr-resample_exact-s32p-48000-2626
TEST    swr-resample_exact-s32p-48000-8000
TEST    swr-resample_exact-s32p-48000-44100
TEST    swr-resample_exact-s32p-48000-96000
TEST    swr-resample_exact-s32p-96000-2626
TEST    swr-resample_exact-s32p-96000-8000
TEST    swr-resample_exact-s32p-96000-44100
TEST    swr-resample_exact-s32p-96000-48000
TEST    swr-resample_exact-fltp-2626-8000
TEST    swr-resample_exact-fltp-2626-44100
TEST    swr-resample_exact-fltp-2626-48000
TEST    swr-resample_exact-fltp-2626-96000
TEST    swr-resample_exact-fltp-8000-2626
TEST    swr-resample_exact-fltp-8000-44100
TEST    swr-resample_exact-fltp-8000-48000
TEST    swr-resample_exact-fltp-8000-96000
TEST    swr-resample_exact-fltp-44100-2626
TEST    swr-resample_exact-fltp-44100-8000
TEST    swr-resample_exact-fltp-44100-48000
TEST    swr-resample_exact-fltp-44100-96000
TEST    swr-resample_exact-fltp-48000-2626
TEST    swr-resample_exact-fltp-48000-8000
TEST    swr-resample_exact-fltp-48000-44100
TEST    swr-resample_exact-fltp-48000-96000
TEST    swr-resample_exact-fltp-96000-2626
TEST    swr-resample_exact-fltp-96000-8000
TEST    swr-resample_exact-fltp-96000-44100
TEST    swr-resample_exact-fltp-96000-48000
TEST    swr-resample_exact-dblp-2626-8000
TEST    swr-resample_exact-dblp-2626-44100
TEST    swr-resample_exact-dblp-2626-48000
TEST    swr-resample_exact-dblp-2626-96000
TEST    swr-resample_exact-dblp-8000-2626
TEST    swr-resample_exact-dblp-8000-44100
TEST    swr-resample_exact-dblp-8000-48000
TEST    swr-resample_exact-dblp-8000-96000
TEST    swr-resample_exact-dblp-44100-2626
TEST    swr-resample_exact-dblp-44100-8000
TEST    swr-resample_exact-dblp-44100-48000
TEST    swr-resample_exact-dblp-44100-96000
TEST    swr-resample_exact-dblp-48000-2626
TEST    swr-resample_exact-dblp-48000-8000
TEST    swr-resample_exact-dblp-48000-44100
TEST    swr-resample_exact-dblp-48000-96000
TEST    swr-resample_exact-dblp-96000-2626
TEST    swr-resample_exact-dblp-96000-8000
TEST    swr-resample_exact-dblp-96000-44100
TEST    swr-resample_exact-dblp-96000-48000
TEST    swr-resample_exact_async-s16p-8000-44100
TEST    swr-resample_exact_async-s16p-8000-48000
TEST    swr-resample_exact_async-s16p-44100-8000
TEST    swr-resample_exact_async-s16p-44100-48000
TEST    swr-resample_exact_async-s16p-48000-8000
TEST    swr-resample_exact_async-s16p-48000-44100
TEST    swr-resample_exact_async-s32p-8000-44100
TEST    swr-resample_exact_async-s32p-8000-48000
TEST    swr-resample_exact_async-s32p-44100-8000
TEST    swr-resample_exact_async-s32p-44100-48000
TEST    swr-resample_exact_async-s32p-48000-8000
TEST    swr-resample_exact_async-s32p-48000-44100
TEST    swr-resample_exact_async-fltp-8000-44100
TEST    swr-resample_exact_async-fltp-8000-48000
TEST    swr-resample_exact_async-fltp-44100-8000
TEST    swr-resample_exact_async-fltp-44100-48000
TEST    swr-resample_exact_async-fltp-48000-8000
TEST    swr-resample_exact_async-fltp-48000-44100
TEST    swr-resample_exact_async-dblp-8000-44100
TEST    swr-resample_exact_async-dblp-8000-48000
TEST    swr-resample_exact_async-dblp-44100-8000
TEST    swr-resample_exact_async-dblp-44100-48000
TEST    swr-resample_exact_async-dblp-48000-8000
TEST    swr-resample_exact_async-dblp-48000-44100
TEST    swr-resample_exact_lin-s16p-2626-8000
TEST    swr-resample_exact_lin-s16p-2626-44100
TEST    swr-resample_exact_lin-s16p-2626-48000
TEST    swr-resample_exact_lin-s16p-2626-96000
TEST    swr-resample_exact_lin-s16p-8000-2626
TEST    swr-resample_exact_lin-s16p-8000-44100
TEST    swr-resample_exact_lin-s16p-8000-48000
TEST    swr-resample_exact_lin-s16p-8000-96000
TEST    swr-resample_exact_lin-s16p-44100-2626
TEST    swr-resample_exact_lin-s16p-44100-8000
TEST    swr-resample_exact_lin-s16p-44100-48000
TEST    swr-resample_exact_lin-s16p-44100-96000
TEST    swr-resample_exact_lin-s16p-48000-2626
TEST    swr-resample_exact_lin-s16p-48000-8000
TEST    swr-resample_exact_lin-s16p-48000-44100
TEST    swr-resample_exact_lin-s16p-48000-96000
TEST    swr-resample_exact_lin-s16p-96000-2626
TEST    swr-resample_exact_lin-s16p-96000-8000
TEST    swr-resample_exact_lin-s16p-96000-44100
TEST    swr-resample_exact_lin-s16p-96000-48000
TEST    swr-resample_exact_lin-s32p-2626-8000
TEST    swr-resample_exact_lin-s32p-2626-44100
TEST    swr-resample_exact_lin-s32p-2626-48000
TEST    swr-resample_exact_lin-s32p-2626-96000
TEST    swr-resample_exact_lin-s32p-8000-2626
TEST    swr-resample_exact_lin-s32p-8000-44100
TEST    swr-resample_exact_lin-s32p-8000-48000
TEST    swr-resample_exact_lin-s32p-8000-96000
TEST    swr-resample_exact_lin-s32p-44100-2626
TEST    swr-resample_exact_lin-s32p-44100-8000
TEST    swr-resample_exact_lin-s32p-44100-48000
TEST    swr-resample_exact_lin-s32p-44100-96000
TEST    swr-resample_exact_lin-s32p-48000-2626
TEST    swr-resample_exact_lin-s32p-48000-8000
TEST    swr-resample_exact_lin-s32p-48000-44100
TEST    swr-resample_exact_lin-s32p-48000-96000
TEST    swr-resample_exact_lin-s32p-96000-2626
TEST    swr-resample_exact_lin-s32p-96000-8000
TEST    swr-resample_exact_lin-s32p-96000-44100
TEST    swr-resample_exact_lin-s32p-96000-48000
TEST    swr-resample_exact_lin-fltp-2626-8000
TEST    swr-resample_exact_lin-fltp-2626-44100
TEST    swr-resample_exact_lin-fltp-2626-48000
TEST    swr-resample_exact_lin-fltp-2626-96000
TEST    swr-resample_exact_lin-fltp-8000-2626
TEST    swr-resample_exact_lin-fltp-8000-44100
TEST    swr-resample_exact_lin-fltp-8000-48000
TEST    swr-resample_exact_lin-fltp-8000-96000
TEST    swr-resample_exact_lin-fltp-44100-2626
TEST    swr-resample_exact_lin-fltp-44100-8000
TEST    swr-resample_exact_lin-fltp-44100-48000
TEST    swr-resample_exact_lin-fltp-44100-96000
TEST    swr-resample_exact_lin-fltp-48000-2626
TEST    swr-resample_exact_lin-fltp-48000-8000
TEST    swr-resample_exact_lin-fltp-48000-44100
TEST    swr-resample_exact_lin-fltp-48000-96000
TEST    swr-resample_exact_lin-fltp-96000-2626
TEST    swr-resample_exact_lin-fltp-96000-8000
TEST    swr-resample_exact_lin-fltp-96000-44100
TEST    swr-resample_exact_lin-fltp-96000-48000
TEST    swr-resample_exact_lin-dblp-2626-8000
TEST    swr-resample_exact_lin-dblp-2626-44100
TEST    swr-resample_exact_lin-dblp-2626-48000
TEST    swr-resample_exact_lin-dblp-2626-96000
TEST    swr-resample_exact_lin-dblp-8000-2626
TEST    swr-resample_exact_lin-dblp-8000-44100
TEST    swr-resample_exact_lin-dblp-8000-48000
TEST    swr-resample_exact_lin-dblp-8000-96000
TEST    swr-resample_exact_lin-dblp-44100-2626
TEST    swr-resample_exact_lin-dblp-44100-8000
TEST    swr-resample_exact_lin-dblp-44100-48000
TEST    swr-resample_exact_lin-dblp-44100-96000
TEST    swr-resample_exact_lin-dblp-48000-2626
TEST    swr-resample_exact_lin-dblp-48000-8000
TEST    swr-resample_exact_lin-dblp-48000-44100
TEST    swr-resample_exact_lin-dblp-48000-96000
TEST    swr-resample_exact_lin-dblp-96000-2626
TEST    swr-resample_exact_lin-dblp-96000-8000
TEST    swr-resample_exact_lin-dblp-96000-44100
TEST    swr-resample_exact_lin-dblp-96000-48000
TEST    swr-resample_exact_lin_async-s16p-8000-44100
TEST    swr-resample_exact_lin_async-s16p-8000-48000
TEST    swr-resample_exact_lin_async-s16p-44100-8000
TEST    swr-resample_exact_lin_async-s16p-44100-48000
TEST    swr-resample_exact_lin_async-s16p-48000-8000
TEST    swr-resample_exact_lin_async-s16p-48000-44100
TEST    swr-resample_exact_lin_async-s32p-8000-44100
TEST    swr-resample_exact_lin_async-s32p-8000-48000
TEST    swr-resample_exact_lin_async-s32p-44100-8000
TEST    swr-resample_exact_lin_async-s32p-44100-48000
TEST    swr-resample_exact_lin_async-s32p-48000-8000
TEST    swr-resample_exact_lin_async-s32p-48000-44100
TEST    swr-resample_exact_lin_async-fltp-8000-44100
TEST    swr-resample_exact_lin_async-fltp-8000-48000
TEST    swr-resample_exact_lin_async-fltp-44100-8000
TEST    swr-resample_exact_lin_async-fltp-44100-48000
TEST    swr-resample_exact_lin_async-fltp-48000-8000
TEST    swr-resample_exact_lin_async-fltp-48000-44100
TEST    swr-resample_exact_lin_async-dblp-8000-44100
TEST    swr-resample_exact_lin_async-dblp-8000-48000
TEST    swr-resample_exact_lin_async-dblp-44100-8000
TEST    swr-resample_exact_lin_async-dblp-44100-48000
TEST    swr-resample_exact_lin_async-dblp-48000-8000
TEST    swr-resample_exact_lin_async-dblp-48000-44100
TEST    swr-audioconvert
TEST    dcinema-encode
TEST    ffmpeg-filter_complex
TEST    ffmpeg-filter_complex_audio
TEST    ffmpeg-lavfi
TEST    unknown_layout-pcm
TEST    unknown_layout-ac3
TEST    acodec-pcm-alaw
TEST    acodec-pcm-mulaw
TEST    acodec-pcm-s8
TEST    acodec-pcm-u8
TEST    acodec-pcm-s16be
TEST    acodec-pcm-s16le
TEST    acodec-pcm-u16be
TEST    acodec-pcm-u16le
TEST    acodec-pcm-s24be
TEST    acodec-pcm-s24le
TEST    acodec-pcm-u24be
TEST    acodec-pcm-u24le
TEST    acodec-pcm-s32be
TEST    acodec-pcm-s32le
TEST    acodec-pcm-u32be
TEST    acodec-pcm-u32le
TEST    acodec-pcm-f32be
TEST    acodec-pcm-f32le
TEST    acodec-pcm-f64be
TEST    acodec-pcm-f64le
TEST    acodec-pcm-s8_planar
TEST    acodec-pcm-s16be_planar
TEST    acodec-pcm-s16le_planar
TEST    acodec-pcm-s24le_planar
TEST    acodec-pcm-s32le_planar
TEST    acodec-adpcm-adx
TEST    acodec-adpcm-argo
TEST    acodec-adpcm-ima_apm
TEST    acodec-adpcm-ima_alp
TEST    acodec-adpcm-ima_qt
TEST    acodec-adpcm-ima_ssi
TEST    acodec-adpcm-ima_wav
TEST    acodec-adpcm-ms
TEST    acodec-adpcm-swf
TEST    acodec-adpcm-swf-wav
TEST    acodec-adpcm-yamaha
TEST    acodec-adpcm-adx-trellis
TEST    acodec-adpcm-ima_qt-trellis
TEST    acodec-adpcm-ima_wav-trellis
TEST    acodec-adpcm-ms-trellis
TEST    acodec-adpcm-swf-trellis
TEST    acodec-adpcm-yamaha-trellis
TEST    acodec-mp2
TEST    acodec-mp2fixed
TEST    acodec-alac
TEST    acodec-dca
TEST    acodec-dca2
TEST    acodec-flac
TEST    acodec-flac-exact-rice
TEST    acodec-g723_1
TEST    acodec-ra144
TEST    acodec-roqaudio
TEST    acodec-s302m
TEST    acodec-wavpack
TEST    acodec-tta
TEST    vsynth1-amv
TEST    vsynth1-asv1
TEST    vsynth1-asv2
TEST    vsynth1-cinepak
TEST    vsynth1-cljr
TEST    vsynth1-dnxhd-720p
TEST    vsynth1-dnxhd-720p-rd
TEST    vsynth1-dnxhd-720p-10bit
TEST    vsynth1-dnxhd-720p-hr-lb
TEST    vsynth1-dnxhd-edge1-hr
TEST    vsynth1-dnxhd-edge2-hr
TEST    vsynth1-dnxhd-edge3-hr
TEST    vsynth1-dnxhd-4k-hr-lb
TEST    vsynth1-dnxhd-2k-hr-hq
TEST    vsynth1-dnxhd-uhd-hr-sq
TEST    vsynth1-vc2-420p
TEST    vsynth1-vc2-420p10
TEST    vsynth1-vc2-420p12
TEST    vsynth1-vc2-422p
TEST    vsynth1-vc2-422p10
TEST    vsynth1-vc2-422p12
TEST    vsynth1-vc2-444p
TEST    vsynth1-vc2-444p10
TEST    vsynth1-vc2-444p12
TEST    vsynth1-vc2-thaar
TEST    vsynth1-vc2-t5_3
TEST    vsynth1-dnxhd-1080i
TEST    vsynth1-dnxhd-1080i-10bit
TEST    vsynth1-dnxhd-1080i-colr
TEST    vsynth1-dnxhd-hr-lb-mov
TEST    vsynth1-dnxhd-hr-sq-mov
TEST    vsynth1-dnxhd-hr-hq-mov
TEST    vsynth1-dv
TEST    vsynth1-dv-411
TEST    vsynth1-dv-50
TEST    vsynth1-dv-hd
TEST    vsynth1-dv-fhd
TEST    vsynth1-ffv1
TEST    vsynth1-ffv1-v0
TEST    vsynth1-ffv1-v3-yuv420p
TEST    vsynth1-ffv1-v3-yuv422p10
TEST    vsynth1-ffv1-v3-yuv444p16
TEST    vsynth1-ffv1-v3-bgr0
TEST    vsynth1-ffv1-v3-rgb48
TEST    vsynth1-ffvhuff
TEST    vsynth1-ffvhuff444
TEST    vsynth1-ffvhuff420p12
TEST    vsynth1-ffvhuff422p10left
TEST    vsynth1-ffvhuff444p16
TEST    vsynth1-flashsv
TEST    vsynth1-flashsv2
TEST    vsynth1-flv
TEST    vsynth1-h261
TEST    vsynth1-h261-trellis
TEST    vsynth1-h263
TEST    vsynth1-h263-obmc
TEST    vsynth1-h263p
TEST    vsynth1-huffyuv
TEST    vsynth1-huffyuvbgr24
TEST    vsynth1-huffyuvbgra
TEST    vsynth1-jpegls
TEST    vsynth1-jpeg2000
TEST    vsynth1-jpeg2000-97
TEST    vsynth1-ljpeg
TEST    vsynth1-mjpeg
TEST    vsynth1-mjpeg-422
TEST    vsynth1-mjpeg-444
TEST    vsynth1-mjpeg-trell
TEST    vsynth1-mjpeg-huffman
TEST    vsynth1-mjpeg-trell-huffman
TEST    vsynth1-mpeg1
TEST    vsynth1-mpeg1b
TEST    vsynth1-mpeg2
TEST    vsynth1-mpeg2-422
TEST    vsynth1-mpeg2-idct-int
TEST    vsynth1-mpeg2-ilace
TEST    vsynth1-mpeg2-ivlc-qprd
TEST    vsynth1-mpeg2-thread
TEST    vsynth1-mpeg2-thread-ivlc
TEST    vsynth1-mpeg4
TEST    vsynth1-mpeg4-rc
TEST    vsynth1-mpeg4-adv
TEST    vsynth1-mpeg4-qprd
TEST    vsynth1-mpeg4-adap
TEST    vsynth1-mpeg4-qpel
TEST    vsynth1-mpeg4-thread
TEST    vsynth1-mpeg4-error
TEST    vsynth1-mpeg4-nr
TEST    vsynth1-mpeg4-nsse
TEST    vsynth1-msmpeg4
TEST    vsynth1-msmpeg4v2
TEST    vsynth1-mpng
TEST    vsynth1-msvideo1
TEST    vsynth1-prores
TEST    vsynth1-prores_int
TEST    vsynth1-prores_444
TEST    vsynth1-prores_444_int
TEST    vsynth1-prores_ks
TEST    vsynth1-qtrle
TEST    vsynth1-qtrlegray
TEST    vsynth1-rgb
TEST    vsynth1-bpp1
TEST    vsynth1-bpp15
TEST    vsynth1-mov-bgr24
TEST    vsynth1-mov-bpp15
TEST    vsynth1-mov-bpp16
TEST    vsynth1-roqvideo
TEST    vsynth1-rv10
TEST    vsynth1-rv20
TEST    vsynth1-snow
TEST    vsynth1-snow-hpel
TEST    vsynth1-snow-ll
TEST    vsynth1-svq1
TEST    vsynth1-r210
TEST    vsynth1-v210
TEST    vsynth1-v210-10
TEST    vsynth1-v308
TEST    vsynth1-v408
TEST    vsynth1-avui
TEST    vsynth1-wmv1
TEST    vsynth1-wmv2
TEST    vsynth1-yuv
TEST    vsynth1-xface
TEST    vsynth1-yuv4
TEST    vsynth1-y41p
TEST    vsynth1-zlib
TEST    vsynth2-amv
TEST    vsynth2-asv1
TEST    vsynth2-asv2
TEST    vsynth2-cinepak
TEST    vsynth2-cljr
TEST    vsynth2-dnxhd-720p
TEST    vsynth2-dnxhd-720p-rd
TEST    vsynth2-dnxhd-720p-10bit
TEST    vsynth2-dnxhd-720p-hr-lb
TEST    vsynth2-dnxhd-edge1-hr
TEST    vsynth2-dnxhd-edge2-hr
TEST    vsynth2-dnxhd-edge3-hr
TEST    vsynth2-dnxhd-4k-hr-lb
TEST    vsynth2-dnxhd-2k-hr-hq
TEST    vsynth2-dnxhd-uhd-hr-sq
TEST    vsynth2-vc2-420p
TEST    vsynth2-vc2-420p10
TEST    vsynth2-vc2-420p12
TEST    vsynth2-vc2-422p
TEST    vsynth2-vc2-422p10
TEST    vsynth2-vc2-422p12
TEST    vsynth2-vc2-444p
TEST    vsynth2-vc2-444p10
TEST    vsynth2-vc2-444p12
TEST    vsynth2-vc2-thaar
TEST    vsynth2-vc2-t5_3
TEST    vsynth2-dnxhd-1080i
TEST    vsynth2-dnxhd-1080i-10bit
TEST    vsynth2-dnxhd-1080i-colr
TEST    vsynth2-dnxhd-hr-lb-mov
TEST    vsynth2-dnxhd-hr-sq-mov
TEST    vsynth2-dnxhd-hr-hq-mov
TEST    vsynth2-dv
TEST    vsynth2-dv-411
TEST    vsynth2-dv-50
TEST    vsynth2-dv-hd
TEST    vsynth2-dv-fhd
TEST    vsynth2-ffv1
TEST    vsynth2-ffv1-v0
TEST    vsynth2-ffv1-v3-yuv420p
TEST    vsynth2-ffv1-v3-yuv422p10
TEST    vsynth2-ffv1-v3-yuv444p16
TEST    vsynth2-ffv1-v3-bgr0
TEST    vsynth2-ffv1-v3-rgb48
TEST    vsynth2-ffvhuff
TEST    vsynth2-ffvhuff444
TEST    vsynth2-ffvhuff420p12
TEST    vsynth2-ffvhuff422p10left
TEST    vsynth2-ffvhuff444p16
TEST    vsynth2-flashsv
TEST    vsynth2-flashsv2
TEST    vsynth2-flv
TEST    vsynth2-h261
TEST    vsynth2-h261-trellis
TEST    vsynth2-h263
TEST    vsynth2-h263-obmc
TEST    vsynth2-h263p
TEST    vsynth2-huffyuv
TEST    vsynth2-huffyuvbgr24
TEST    vsynth2-huffyuvbgra
TEST    vsynth2-jpegls
TEST    vsynth2-jpeg2000
TEST    vsynth2-jpeg2000-97
TEST    vsynth2-ljpeg
TEST    vsynth2-mjpeg
TEST    vsynth2-mjpeg-422
TEST    vsynth2-mjpeg-444
TEST    vsynth2-mjpeg-trell
TEST    vsynth2-mjpeg-huffman
TEST    vsynth2-mjpeg-trell-huffman
TEST    vsynth2-mpeg1
TEST    vsynth2-mpeg1b
TEST    vsynth2-mpeg2
TEST    vsynth2-mpeg2-422
TEST    vsynth2-mpeg2-idct-int
TEST    vsynth2-mpeg2-ilace
TEST    vsynth2-mpeg2-ivlc-qprd
TEST    vsynth2-mpeg2-thread
TEST    vsynth2-mpeg2-thread-ivlc
TEST    vsynth2-mpeg4
TEST    vsynth2-mpeg4-rc
TEST    vsynth2-mpeg4-adv
TEST    vsynth2-mpeg4-qprd
TEST    vsynth2-mpeg4-adap
TEST    vsynth2-mpeg4-qpel
TEST    vsynth2-mpeg4-thread
TEST    vsynth2-mpeg4-error
TEST    vsynth2-mpeg4-nr
TEST    vsynth2-mpeg4-nsse
TEST    vsynth2-msmpeg4
TEST    vsynth2-msmpeg4v2
TEST    vsynth2-mpng
TEST    vsynth2-msvideo1
TEST    vsynth2-prores
TEST    vsynth2-prores_int
TEST    vsynth2-prores_444
TEST    vsynth2-prores_444_int
TEST    vsynth2-prores_ks
TEST    vsynth2-qtrle
TEST    vsynth2-qtrlegray
TEST    vsynth2-rgb
TEST    vsynth2-bpp1
TEST    vsynth2-bpp15
TEST    vsynth2-mov-bgr24
TEST    vsynth2-mov-bpp15
TEST    vsynth2-mov-bpp16
TEST    vsynth2-roqvideo
TEST    vsynth2-rv10
TEST    vsynth2-rv20
TEST    vsynth2-snow
TEST    vsynth2-snow-hpel
TEST    vsynth2-snow-ll
TEST    vsynth2-svq1
TEST    vsynth2-r210
TEST    vsynth2-v210
TEST    vsynth2-v210-10
TEST    vsynth2-v308
TEST    vsynth2-v408
TEST    vsynth2-avui
TEST    vsynth2-wmv1
TEST    vsynth2-wmv2
TEST    vsynth2-yuv
TEST    vsynth2-xface
TEST    vsynth2-yuv4
TEST    vsynth2-y41p
TEST    vsynth2-zlib
TEST    vsynth3-amv
TEST    vsynth3-asv1
TEST    vsynth3-asv2
TEST    vsynth3-cljr
TEST    vsynth3-dnxhd-720p-hr-lb
TEST    vsynth3-dnxhd-edge1-hr
TEST    vsynth3-dnxhd-edge2-hr
TEST    vsynth3-dnxhd-edge3-hr
TEST    vsynth3-dnxhd-4k-hr-lb
TEST    vsynth3-dnxhd-2k-hr-hq
TEST    vsynth3-dnxhd-uhd-hr-sq
TEST    vsynth3-dnxhd-1080i-10bit
TEST    vsynth3-dnxhd-1080i-colr
TEST    vsynth3-dnxhd-hr-lb-mov
TEST    vsynth3-dnxhd-hr-sq-mov
TEST    vsynth3-dnxhd-hr-hq-mov
TEST    vsynth3-dv-hd
TEST    vsynth3-dv-fhd
TEST    vsynth3-ffv1
TEST    vsynth3-ffv1-v0
TEST    vsynth3-ffv1-v3-yuv420p
TEST    vsynth3-ffv1-v3-yuv422p10
TEST    vsynth3-ffv1-v3-yuv444p16
TEST    vsynth3-ffv1-v3-bgr0
TEST    vsynth3-ffv1-v3-rgb48
TEST    vsynth3-ffvhuff
TEST    vsynth3-ffvhuff444
TEST    vsynth3-ffvhuff420p12
TEST    vsynth3-ffvhuff422p10left
TEST    vsynth3-ffvhuff444p16
TEST    vsynth3-flashsv
TEST    vsynth3-flashsv2
TEST    vsynth3-flv
TEST    vsynth3-huffyuv
TEST    vsynth3-huffyuvbgr24
TEST    vsynth3-huffyuvbgra
TEST    vsynth3-jpegls
TEST    vsynth3-jpeg2000
TEST    vsynth3-jpeg2000-97
TEST    vsynth3-ljpeg
TEST    vsynth3-mjpeg
TEST    vsynth3-mjpeg-422
TEST    vsynth3-mjpeg-444
TEST    vsynth3-mjpeg-trell
TEST    vsynth3-mjpeg-huffman
TEST    vsynth3-mjpeg-trell-huffman
TEST    vsynth3-mpeg1
TEST    vsynth3-mpeg1b
TEST    vsynth3-mpeg2
TEST    vsynth3-mpeg2-422
TEST    vsynth3-mpeg2-idct-int
TEST    vsynth3-mpeg2-ilace
TEST    vsynth3-mpeg2-ivlc-qprd
TEST    vsynth3-mpeg2-thread
TEST    vsynth3-mpeg2-thread-ivlc
TEST    vsynth3-mpeg4
TEST    vsynth3-mpeg4-rc
TEST    vsynth3-mpeg4-adv
TEST    vsynth3-mpeg4-qprd
TEST    vsynth3-mpeg4-adap
TEST    vsynth3-mpeg4-qpel
TEST    vsynth3-mpeg4-thread
TEST    vsynth3-mpeg4-error
TEST    vsynth3-mpeg4-nr
TEST    vsynth3-mpeg4-nsse
TEST    vsynth3-msmpeg4
TEST    vsynth3-msmpeg4v2
TEST    vsynth3-mpng
TEST    vsynth3-prores
TEST    vsynth3-prores_int
TEST    vsynth3-prores_444
TEST    vsynth3-prores_444_int
TEST    vsynth3-prores_ks
TEST    vsynth3-qtrle
TEST    vsynth3-rgb
TEST    vsynth3-bpp1
TEST    vsynth3-bpp15
TEST    vsynth3-mov-bgr24
TEST    vsynth3-mov-bpp15
TEST    vsynth3-mov-bpp16
TEST    vsynth3-svq1
TEST    vsynth3-r210
TEST    vsynth3-v210
TEST    vsynth3-v210-10
TEST    vsynth3-v308
TEST    vsynth3-v408
TEST    vsynth3-wmv1
TEST    vsynth3-wmv2
TEST    vsynth3-yuv
TEST    vsynth3-xface
TEST    vsynth3-yuv4
TEST    vsynth3-zlib
TEST    lavf-aiff
TEST    lavf-al
TEST    lavf-ast
TEST    lavf-au
TEST    lavf-caf
TEST    lavf-mmf
TEST    lavf-ogg
TEST    lavf-rso
TEST    lavf-sox
TEST    lavf-ul
TEST    lavf-voc
TEST    lavf-ircam
TEST    lavf-s16.voc
TEST    lavf-wav
TEST    lavf-peak.wav
TEST    lavf-peak_only.wav
TEST    lavf-w64
TEST    lavf-tta
TEST    lavf-mka
TEST    lavf-wv
TEST    lavf-asf
TEST    lavf-avi
TEST    lavf-dv
TEST    lavf-dv_pal
TEST    lavf-dv_ntsc
TEST    lavf-flm
TEST    lavf-gxf
TEST    lavf-gxf_pal
TEST    lavf-gxf_ntsc
TEST    lavf-mkv
TEST    lavf-mkv_attachment
TEST    lavf-mov
TEST    lavf-mov_rtphint
TEST    lavf-ismv
TEST    lavf-mp4
TEST    lavf-mpg
TEST    lavf-mxf_dv25
TEST    lavf-mxf_dvcpro50
TEST    lavf-mxf_opatom
TEST    lavf-mxf_opatom_audio
TEST    lavf-nut
TEST    lavf-rm
TEST    lavf-smjpeg
TEST    lavf-swf
TEST    lavf-wtv
TEST    lavf-bmp
TEST    lavf-dpx
TEST    lavf-gbrp10le.dpx
TEST    lavf-gbrp12le.dpx
TEST    lavf-rgb48le.dpx
TEST    lavf-rgb48le_10.dpx
TEST    lavf-rgba64le.dpx
TEST    lavf-jpg
TEST    lavf-pam
TEST    lavf-rgba.pam
TEST    lavf-gray.pam
TEST    lavf-gray16be.pam
TEST    lavf-rgb48be.pam
TEST    lavf-monob.pam
TEST    lavf-pcx
TEST    lavf-pgm
TEST    lavf-png
TEST    lavf-gray16be.png
TEST    lavf-rgb48be.png
TEST    lavf-ppm
TEST    lavf-sgi
TEST    lavf-sun
TEST    lavf-tga
TEST    lavf-tiff
TEST    lavf-xbm
TEST    lavf-xwd
TEST    lavf-rgba.xwd
TEST    lavf-rgb565be.xwd
TEST    lavf-rgb555be.xwd
TEST    lavf-rgb8.xwd
TEST    lavf-rgb4_byte.xwd
TEST    lavf-gray.xwd
TEST    lavf-monow.xwd
TEST    lavf-pbmpipe
TEST    lavf-pgmpipe
TEST    lavf-ppmpipe
TEST    lavf-apng
TEST    lavf-apng.png
TEST    lavf-gray.fits
TEST    lavf-gray16be.fits
TEST    lavf-gbrp.fits
TEST    lavf-gbrap.fits
TEST    lavf-gbrp16be.fits
TEST    lavf-gbrap16be.fits
TEST    lavf-gif
TEST    lavf-y4m
TEST    seek-acodec-adpcm-ima_qt
TEST    seek-acodec-adpcm-ima_qt-trellis
TEST    seek-acodec-adpcm-ima_wav
TEST    seek-acodec-adpcm-ima_wav-trellis
TEST    seek-acodec-adpcm-ms
TEST    seek-acodec-adpcm-ms-trellis
TEST    seek-acodec-adpcm-swf
TEST    seek-acodec-adpcm-swf-trellis
TEST    seek-acodec-adpcm-yamaha
TEST    seek-acodec-adpcm-yamaha-trellis
TEST    seek-acodec-alac
TEST    seek-acodec-flac
TEST    seek-acodec-mp2
TEST    seek-acodec-pcm-alaw
TEST    seek-acodec-pcm-mulaw
TEST    seek-acodec-pcm-s8
TEST    seek-acodec-pcm-u8
TEST    seek-acodec-pcm-s16be
TEST    seek-acodec-pcm-s16le
TEST    seek-acodec-pcm-s24be
TEST    seek-acodec-pcm-s24le
TEST    seek-acodec-pcm-s32be
TEST    seek-acodec-pcm-s32le
TEST    seek-acodec-pcm-f32be
TEST    seek-acodec-pcm-f32le
TEST    seek-acodec-pcm-f64be
TEST    seek-acodec-pcm-f64le
TEST    seek-lavf-aiff
TEST    seek-lavf-al
TEST    seek-lavf-asf
TEST    seek-lavf-au
TEST    seek-lavf-avi
TEST    seek-lavf-bmp
TEST    seek-lavf-dv
TEST    seek-lavf-flv
TEST    seek-lavf-gif
TEST    seek-lavf-gxf
TEST    seek-lavf-jpg
TEST    seek-lavf-mkv
TEST    seek-lavf-mmf
TEST    seek-lavf-mov
TEST    seek-lavf-mpg
TEST    seek-lavf-ul
TEST    seek-lavf-mxf
TEST    seek-lavf-mxf_d10
TEST    seek-lavf-mxf_dv25
TEST    seek-lavf-mxf_dvcpro50
TEST    seek-lavf-mxf_opatom
TEST    seek-lavf-mxf_opatom_audio
TEST    seek-lavf-nut
TEST    seek-lavf-ogg
TEST    seek-lavf-pbmpipe
TEST    seek-lavf-pcx
TEST    seek-lavf-pgm
TEST    seek-lavf-pgmpipe
TEST    seek-lavf-ppm
TEST    seek-lavf-ppmpipe
TEST    seek-lavf-rm
TEST    seek-lavf-sgi
TEST    seek-lavf-swf
TEST    seek-lavf-tga
TEST    seek-lavf-tiff
TEST    seek-lavf-ts
TEST    seek-lavf-voc
TEST    seek-lavf-wav
TEST    seek-lavf-wtv
TEST    seek-lavf-y4m
TEST    pixfmt-bgr24
TEST    pixfmt-gray
TEST    pixfmt-monob
TEST    pixfmt-monow
TEST    pixfmt-rgb24
TEST    pixfmt-rgb32
TEST    pixfmt-rgb555
TEST    pixfmt-rgb565
TEST    pixfmt-yuv410p
TEST    pixfmt-yuv411p
TEST    pixfmt-yuv420p
TEST    pixfmt-yuv422p
TEST    pixfmt-yuv440p
TEST    pixfmt-yuv444p
TEST    pixfmt-yuvj420p
TEST    pixfmt-yuvj422p
TEST    pixfmt-yuvj440p
TEST    pixfmt-yuvj444p
TEST    pixfmt-yuyv422
TEST    filter-boxblur
TEST    filter-colorchannelmixer
TEST    filter-drawbox
TEST    filter-fade
TEST    filter-fieldorder
TEST    filter-framepack-columns
TEST    filter-framepack-frameseq
TEST    filter-framepack-lines
TEST    filter-framepack-sbs
TEST    filter-framepack-tab
TEST    filter-gradfun
TEST    filter-hqdn3d
TEST    filter-interlace
TEST    filter-interlace-complex
TEST    filter-negate
TEST    filter-histogram-levels
TEST    filter-waveform_column
TEST    filter-waveform_row
TEST    filter-waveform_envelope
TEST    filter-waveform_uv
TEST    filter-vectorscope_gray
TEST    filter-vectorscope_color
TEST    filter-vectorscope_color2
TEST    filter-vectorscope_color3
TEST    filter-vectorscope_color4
TEST    filter-vectorscope_xy
TEST    filter-mergeplanes
TEST    filter-hstack
TEST    filter-vstack
TEST    filter-overlay
TEST    filter-overlay_rgb
TEST    filter-overlay_yuv420
TEST    filter-overlay_yuv420p10
TEST    filter-overlay_nv12
TEST    filter-overlay_nv21
TEST    filter-overlay_yuv422
TEST    filter-overlay_yuv422p10
TEST    filter-overlay_yuv444
TEST    filter-phase
TEST    filter-removegrain-mode-00
TEST    filter-removegrain-mode-01
TEST    filter-removegrain-mode-02
TEST    filter-removegrain-mode-03
TEST    filter-removegrain-mode-04
TEST    filter-removegrain-mode-05
TEST    filter-removegrain-mode-06
TEST    filter-removegrain-mode-07
TEST    filter-removegrain-mode-08
TEST    filter-removegrain-mode-09
TEST    filter-removegrain-mode-10
TEST    filter-removegrain-mode-11
TEST    filter-removegrain-mode-12
TEST    filter-removegrain-mode-13
TEST    filter-removegrain-mode-14
TEST    filter-removegrain-mode-15
TEST    filter-removegrain-mode-16
TEST    filter-removegrain-mode-17
TEST    filter-removegrain-mode-18
TEST    filter-removegrain-mode-19
TEST    filter-removegrain-mode-20
TEST    filter-removegrain-mode-21
TEST    filter-removegrain-mode-22
TEST    filter-removegrain-mode-23
TEST    filter-removegrain-mode-24
TEST    filter-separatefields
TEST    filter-weave
TEST    filter-select-alternate
TEST    filter-setpts
TEST    filter-shuffleframes
TEST    filter-shuffleplanes-dup-luma
TEST    filter-shuffleplanes-swapuv
TEST    filter-swaprect
TEST    filter-tblend
TEST    filter-telecine
TEST    filter-transpose
TEST    filter-trim-duration
TEST    filter-trim-frame
TEST    filter-trim-mixed
TEST    filter-trim-time
TEST    filter-unsharp
TEST    filter-unsharp-yuv420p10
TEST    filter-alphaextract_alphamerge_rgb
TEST    filter-alphaextract_alphamerge_yuv
TEST    filter-crop
TEST    filter-crop_scale
TEST    filter-crop_scale_vflip
TEST    filter-crop_vflip
TEST    filter-null
TEST    filter-scale200
TEST    filter-scale500
TEST    filter-scale2ref_keep_aspect
TEST    filter-scalechroma
TEST    filter-vflip
TEST    filter-colorlevels
TEST    filter-colorlevels-16
TEST    filter-colorbalance
TEST    filter-colorbalance-gbrap
TEST    filter-colorbalance-rgba64
TEST    filter-colorbalance-gbrap-16
TEST    filter-colormatrix1
TEST    filter-colormatrix2
TEST    filter-vflip_crop
TEST    filter-vflip_vflip
TEST    filter-edgedetect
TEST    filter-edgedetect-colormix
TEST    filter-hue1
TEST    filter-hue2
TEST    filter-hue3
TEST    filter-hue4
TEST    filter-idet
TEST    filter-pad
TEST    filter-pp
TEST    filter-pp1
TEST    filter-pp2
TEST    filter-pp3
TEST    filter-pp4
TEST    filter-pp5
TEST    filter-pp6
TEST    filter-pp7
TEST    filter-spp
TEST    filter-codecview
TEST    filter-qp
TEST    filter-select
TEST    filter-setdar
TEST    filter-setsar
TEST    filter-stereo3d-al-sbsl
TEST    filter-stereo3d-ar-abl
TEST    filter-stereo3d-abr-mr
TEST    filter-stereo3d-abr-ml
TEST    filter-stereo3d-sbsl-abl
TEST    filter-stereo3d-sbsl-abr
TEST    filter-stereo3d-sbsl-al
TEST    filter-stereo3d-sbsl-sbsr
TEST    filter-stereo3d-sbsl-agmc
TEST    filter-stereo3d-sbsl-agmd
TEST    filter-stereo3d-sbsl-agmg
TEST    filter-stereo3d-sbsl-agmh
TEST    filter-stereo3d-sbsl-arbg
TEST    filter-stereo3d-sbsl-arcc
TEST    filter-stereo3d-sbsl-arcd
TEST    filter-stereo3d-sbsl-arcg
TEST    filter-stereo3d-sbsl-arch
TEST    filter-stereo3d-sbsl-argg
TEST    filter-stereo3d-sbsl-aybc
TEST    filter-stereo3d-sbsl-aybd
TEST    filter-stereo3d-sbsl-aybg
TEST    filter-stereo3d-sbsl-aybh
TEST    filter-thumbnail
TEST    filter-tile
TEST    filter-pixdesc-yuv420p
TEST    filter-pixdesc-yuyv422
TEST    filter-pixdesc-rgb24
TEST    filter-pixdesc-bgr24
TEST    filter-pixdesc-yuv422p
TEST    filter-pixdesc-yuv444p
TEST    filter-pixdesc-yuv410p
TEST    filter-pixdesc-yuv411p
TEST    filter-pixdesc-gray
TEST    filter-pixdesc-monow
TEST    filter-pixdesc-monob
TEST    filter-pixdesc-yuvj420p
TEST    filter-pixdesc-yuvj422p
TEST    filter-pixdesc-yuvj444p
TEST    filter-pixdesc-uyvy422
TEST    filter-pixdesc-bgr8
TEST    filter-pixdesc-bgr4_byte
TEST    filter-pixdesc-rgb8
TEST    filter-pixdesc-rgb4_byte
TEST    filter-pixdesc-nv12
TEST    filter-pixdesc-nv21
TEST    filter-pixdesc-argb
TEST    filter-pixdesc-rgba
TEST    filter-pixdesc-abgr
TEST    filter-pixdesc-bgra
TEST    filter-pixdesc-gray16be
TEST    filter-pixdesc-gray16le
TEST    filter-pixdesc-yuv440p
TEST    filter-pixdesc-yuvj440p
TEST    filter-pixdesc-yuva420p
TEST    filter-pixdesc-rgb48be
TEST    filter-pixdesc-rgb48le
TEST    filter-pixdesc-rgb565be
TEST    filter-pixdesc-rgb565le
TEST    filter-pixdesc-rgb555be
TEST    filter-pixdesc-rgb555le
TEST    filter-pixdesc-bgr565be
TEST    filter-pixdesc-bgr565le
TEST    filter-pixdesc-bgr555be
TEST    filter-pixdesc-bgr555le
TEST    filter-pixdesc-yuv420p16le
TEST    filter-pixdesc-yuv420p16be
TEST    filter-pixdesc-yuv422p16le
TEST    filter-pixdesc-yuv422p16be
TEST    filter-pixdesc-yuv444p16le
TEST    filter-pixdesc-yuv444p16be
TEST    filter-pixdesc-rgb444le
TEST    filter-pixdesc-rgb444be
TEST    filter-pixdesc-bgr444le
TEST    filter-pixdesc-bgr444be
TEST    filter-pixdesc-ya8
TEST    filter-pixdesc-bgr48be
TEST    filter-pixdesc-bgr48le
TEST    filter-pixdesc-yuv420p9be
TEST    filter-pixdesc-yuv420p9le
TEST    filter-pixdesc-yuv420p10be
TEST    filter-pixdesc-yuv420p10le
TEST    filter-pixdesc-yuv422p10be
TEST    filter-pixdesc-yuv422p10le
TEST    filter-pixdesc-yuv444p9be
TEST    filter-pixdesc-yuv444p9le
TEST    filter-pixdesc-yuv444p10be
TEST    filter-pixdesc-yuv444p10le
TEST    filter-pixdesc-yuv422p9be
TEST    filter-pixdesc-yuv422p9le
TEST    filter-pixdesc-gbrp
TEST    filter-pixdesc-gbrp9be
TEST    filter-pixdesc-gbrp9le
TEST    filter-pixdesc-gbrp10be
TEST    filter-pixdesc-gbrp10le
TEST    filter-pixdesc-gbrp16be
TEST    filter-pixdesc-gbrp16le
TEST    filter-pixdesc-yuva422p
TEST    filter-pixdesc-yuva444p
TEST    filter-pixdesc-yuva420p9be
TEST    filter-pixdesc-yuva420p9le
TEST    filter-pixdesc-yuva422p9be
TEST    filter-pixdesc-yuva422p9le
TEST    filter-pixdesc-yuva444p9be
TEST    filter-pixdesc-yuva444p9le
TEST    filter-pixdesc-yuva420p10be
TEST    filter-pixdesc-yuva420p10le
TEST    filter-pixdesc-yuva422p10be
TEST    filter-pixdesc-yuva422p10le
TEST    filter-pixdesc-yuva444p10be
TEST    filter-pixdesc-yuva444p10le
TEST    filter-pixdesc-yuva420p16be
TEST    filter-pixdesc-yuva420p16le
TEST    filter-pixdesc-yuva422p16be
TEST    filter-pixdesc-yuva422p16le
TEST    filter-pixdesc-yuva444p16be
TEST    filter-pixdesc-yuva444p16le
TEST    filter-pixdesc-xyz12le
TEST    filter-pixdesc-xyz12be
TEST    filter-pixdesc-rgba64be
TEST    filter-pixdesc-rgba64le
TEST    filter-pixdesc-bgra64be
TEST    filter-pixdesc-bgra64le
TEST    filter-pixdesc-yvyu422
TEST    filter-pixdesc-ya16be
TEST    filter-pixdesc-ya16le
TEST    filter-pixdesc-gbrap
TEST    filter-pixdesc-gbrap16be
TEST    filter-pixdesc-gbrap16le
TEST    filter-pixdesc-0rgb
TEST    filter-pixdesc-rgb0
TEST    filter-pixdesc-0bgr
TEST    filter-pixdesc-bgr0
TEST    filter-pixdesc-yuv420p12be
TEST    filter-pixdesc-yuv420p12le
TEST    filter-pixdesc-yuv420p14be
TEST    filter-pixdesc-yuv420p14le
TEST    filter-pixdesc-yuv422p12be
TEST    filter-pixdesc-yuv422p12le
TEST    filter-pixdesc-yuv422p14be
TEST    filter-pixdesc-yuv422p14le
TEST    filter-pixdesc-yuv444p12be
TEST    filter-pixdesc-yuv444p12le
TEST    filter-pixdesc-yuv444p14be
TEST    filter-pixdesc-yuv444p14le
TEST    filter-pixdesc-gbrp12be
TEST    filter-pixdesc-gbrp12le
TEST    filter-pixdesc-gbrp14be
TEST    filter-pixdesc-gbrp14le
TEST    filter-pixdesc-yuvj411p
TEST    filter-pixdesc-yuv440p10le
TEST    filter-pixdesc-yuv440p10be
TEST    filter-pixdesc-yuv440p12le
TEST    filter-pixdesc-yuv440p12be
TEST    filter-pixdesc-ayuv64le
TEST    filter-pixdesc-p010le
TEST    filter-pixdesc-p010be
TEST    filter-pixdesc-gbrap12be
TEST    filter-pixdesc-gbrap12le
TEST    filter-pixdesc-gbrap10be
TEST    filter-pixdesc-gbrap10le
TEST    filter-pixdesc-gray12be
TEST    filter-pixdesc-gray12le
TEST    filter-pixdesc-gray10be
TEST    filter-pixdesc-gray10le
TEST    filter-pixdesc-p016le
TEST    filter-pixdesc-p016be
TEST    filter-pixdesc-gray9be
TEST    filter-pixdesc-gray9le
TEST    filter-pixdesc-gbrpf32be
TEST    filter-pixdesc-gbrpf32le
TEST    filter-pixdesc-gbrapf32be
TEST    filter-pixdesc-gbrapf32le
TEST    filter-pixdesc-gray14be
TEST    filter-pixdesc-gray14le
TEST    filter-pixdesc-grayf32be
TEST    filter-pixdesc-grayf32le
TEST    filter-pixdesc-yuva422p12be
TEST    filter-pixdesc-yuva422p12le
TEST    filter-pixdesc-yuva444p12be
TEST    filter-pixdesc-yuva444p12le
TEST    filter-pixdesc-nv24
TEST    filter-pixdesc-nv42
TEST    filter-pixdesc-x2rgb10le
TEST    filter-pixfmts-copy
TEST    filter-pixfmts-crop
TEST    filter-pixfmts-field
TEST    filter-pixfmts-fieldmatch
TEST    filter-pixfmts-fieldorder
TEST    filter-pixfmts-hflip
TEST    filter-pixfmts-il
TEST    filter-pixfmts-kerndeint
TEST    filter-pixfmts-lut
TEST    filter-pixfmts-null
TEST    filter-pixfmts-pad
TEST    filter-pixfmts-pullup
TEST    filter-pixfmts-rotate
TEST    filter-pixfmts-scale
TEST    filter-pixfmts-super2xsai
TEST    filter-pixfmts-swapuv
TEST    filter-pixfmts-tinterlace_cvlpf
TEST    filter-pixfmts-tinterlace_merge
TEST    filter-pixfmts-tinterlace_pad
TEST    filter-pixfmts-tinterlace_vlpf
TEST    filter-pixfmts-transpose
TEST    filter-pixfmts-vflip
TEST    utvideoenc_rgba_left
TEST    utvideoenc_rgba_median
TEST    utvideoenc_rgba_none
TEST    utvideoenc_rgb_left
TEST    utvideoenc_rgb_median
TEST    utvideoenc_rgb_none
TEST    utvideoenc_yuv420_left
TEST    utvideoenc_yuv420_median
TEST    utvideoenc_yuv420_none
TEST    utvideoenc_yuv422_left
TEST    utvideoenc_yuv422_median
TEST    utvideoenc_yuv422_none
TEST    utvideoenc_yuv444_left
TEST    utvideoenc_yuv444_median
TEST    utvideoenc_yuv444_none
TEST    ffprobe_compact
TEST    ffprobe_csv
TEST    ffprobe_default
TEST    ffprobe_flat
TEST    ffprobe_ini
TEST    ffprobe_json
TEST    ffprobe_xml
components/encumbered/ffmpeg/test/results.master
File was deleted