├── .gitattributes ├── .gitignore ├── BUILDING.md ├── LICENSE ├── README.md ├── Release notes.txt ├── externals └── sources │ ├── .gitattributes │ ├── .gitignore │ ├── changes.txt │ ├── curl │ ├── CHANGES │ ├── CMake │ │ ├── CMakeConfigurableFile.in │ │ ├── CurlSymbolHiding.cmake │ │ ├── CurlTests.c │ │ ├── FindCARES.cmake │ │ ├── FindGSS.cmake │ │ ├── FindLibSSH2.cmake │ │ ├── FindMbedTLS.cmake │ │ ├── FindNGHTTP2.cmake │ │ ├── Macros.cmake │ │ ├── OtherTests.cmake │ │ ├── Platforms │ │ │ └── WindowsCache.cmake │ │ ├── Utilities.cmake │ │ ├── cmake_uninstall.cmake.in │ │ └── curl-config.cmake │ ├── CMakeLists.txt │ ├── COPYING │ ├── MacOSX-Framework │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── RELEASE-NOTES │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── buildconf │ ├── buildconf.bat │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── curl-config.in │ ├── depcomp │ ├── docs │ │ ├── BINDINGS.md │ │ ├── BUGS │ │ ├── CHECKSRC.md │ │ ├── CIPHERS.md │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CODE_STYLE.md │ │ ├── CONTRIBUTE.md │ │ ├── FAQ │ │ ├── FEATURES │ │ ├── HELP-US.md │ │ ├── HISTORY.md │ │ ├── HTTP-COOKIES.md │ │ ├── HTTP2.md │ │ ├── INSTALL │ │ ├── INSTALL.cmake │ │ ├── INSTALL.md │ │ ├── INTERNALS.md │ │ ├── KNOWN_BUGS │ │ ├── LICENSE-MIXING.md │ │ ├── MAIL-ETIQUETTE │ │ ├── MANUAL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.cmake │ │ ├── README.md │ │ ├── README.netware │ │ ├── README.win32 │ │ ├── RELEASE-PROCEDURE │ │ ├── RESOURCES │ │ ├── ROADMAP.md │ │ ├── SECURITY-PROCESS.md │ │ ├── SSL-PROBLEMS.md │ │ ├── SSLCERTS.md │ │ ├── THANKS │ │ ├── TODO │ │ ├── TheArtOfHttpScripting │ │ ├── VERSIONS │ │ ├── cmdline-opts │ │ │ ├── CMakeLists.txt │ │ │ ├── MANPAGE.md │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── abstract-unix-socket.d │ │ │ ├── anyauth.d │ │ │ ├── append.d │ │ │ ├── basic.d │ │ │ ├── cacert.d │ │ │ ├── capath.d │ │ │ ├── cert-status.d │ │ │ ├── cert-type.d │ │ │ ├── cert.d │ │ │ ├── ciphers.d │ │ │ ├── compressed-ssh.d │ │ │ ├── compressed.d │ │ │ ├── config.d │ │ │ ├── connect-timeout.d │ │ │ ├── connect-to.d │ │ │ ├── continue-at.d │ │ │ ├── cookie-jar.d │ │ │ ├── cookie.d │ │ │ ├── create-dirs.d │ │ │ ├── crlf.d │ │ │ ├── crlfile.d │ │ │ ├── data-ascii.d │ │ │ ├── data-binary.d │ │ │ ├── data-raw.d │ │ │ ├── data-urlencode.d │ │ │ ├── data.d │ │ │ ├── delegation.d │ │ │ ├── digest.d │ │ │ ├── disable-eprt.d │ │ │ ├── disable-epsv.d │ │ │ ├── disable.d │ │ │ ├── dns-interface.d │ │ │ ├── dns-ipv4-addr.d │ │ │ ├── dns-ipv6-addr.d │ │ │ ├── dns-servers.d │ │ │ ├── dump-header.d │ │ │ ├── egd-file.d │ │ │ ├── engine.d │ │ │ ├── expect100-timeout.d │ │ │ ├── fail-early.d │ │ │ ├── fail.d │ │ │ ├── false-start.d │ │ │ ├── form-string.d │ │ │ ├── form.d │ │ │ ├── ftp-account.d │ │ │ ├── ftp-alternative-to-user.d │ │ │ ├── ftp-create-dirs.d │ │ │ ├── ftp-method.d │ │ │ ├── ftp-pasv.d │ │ │ ├── ftp-port.d │ │ │ ├── ftp-pret.d │ │ │ ├── ftp-skip-pasv-ip.d │ │ │ ├── ftp-ssl-ccc-mode.d │ │ │ ├── ftp-ssl-ccc.d │ │ │ ├── ftp-ssl-control.d │ │ │ ├── gen.pl │ │ │ ├── get.d │ │ │ ├── globoff.d │ │ │ ├── happy-eyeballs-timeout-ms.d │ │ │ ├── head.d │ │ │ ├── header.d │ │ │ ├── help.d │ │ │ ├── hostpubmd5.d │ │ │ ├── http1.0.d │ │ │ ├── http1.1.d │ │ │ ├── http2-prior-knowledge.d │ │ │ ├── http2.d │ │ │ ├── ignore-content-length.d │ │ │ ├── include.d │ │ │ ├── insecure.d │ │ │ ├── interface.d │ │ │ ├── ipv4.d │ │ │ ├── ipv6.d │ │ │ ├── junk-session-cookies.d │ │ │ ├── keepalive-time.d │ │ │ ├── key-type.d │ │ │ ├── key.d │ │ │ ├── krb.d │ │ │ ├── libcurl.d │ │ │ ├── limit-rate.d │ │ │ ├── list-only.d │ │ │ ├── local-port.d │ │ │ ├── location-trusted.d │ │ │ ├── location.d │ │ │ ├── login-options.d │ │ │ ├── mail-auth.d │ │ │ ├── mail-from.d │ │ │ ├── mail-rcpt.d │ │ │ ├── manual.d │ │ │ ├── max-filesize.d │ │ │ ├── max-redirs.d │ │ │ ├── max-time.d │ │ │ ├── metalink.d │ │ │ ├── negotiate.d │ │ │ ├── netrc-file.d │ │ │ ├── netrc-optional.d │ │ │ ├── netrc.d │ │ │ ├── next.d │ │ │ ├── no-alpn.d │ │ │ ├── no-buffer.d │ │ │ ├── no-keepalive.d │ │ │ ├── no-npn.d │ │ │ ├── no-sessionid.d │ │ │ ├── noproxy.d │ │ │ ├── ntlm-wb.d │ │ │ ├── ntlm.d │ │ │ ├── oauth2-bearer.d │ │ │ ├── output.d │ │ │ ├── page-footer │ │ │ ├── page-header │ │ │ ├── pass.d │ │ │ ├── path-as-is.d │ │ │ ├── pinnedpubkey.d │ │ │ ├── post301.d │ │ │ ├── post302.d │ │ │ ├── post303.d │ │ │ ├── preproxy.d │ │ │ ├── progress-bar.d │ │ │ ├── proto-default.d │ │ │ ├── proto-redir.d │ │ │ ├── proto.d │ │ │ ├── proxy-anyauth.d │ │ │ ├── proxy-basic.d │ │ │ ├── proxy-cacert.d │ │ │ ├── proxy-capath.d │ │ │ ├── proxy-cert-type.d │ │ │ ├── proxy-cert.d │ │ │ ├── proxy-ciphers.d │ │ │ ├── proxy-crlfile.d │ │ │ ├── proxy-digest.d │ │ │ ├── proxy-header.d │ │ │ ├── proxy-insecure.d │ │ │ ├── proxy-key-type.d │ │ │ ├── proxy-key.d │ │ │ ├── proxy-negotiate.d │ │ │ ├── proxy-ntlm.d │ │ │ ├── proxy-pass.d │ │ │ ├── proxy-pinnedpubkey.d │ │ │ ├── proxy-service-name.d │ │ │ ├── proxy-ssl-allow-beast.d │ │ │ ├── proxy-tlsauthtype.d │ │ │ ├── proxy-tlspassword.d │ │ │ ├── proxy-tlsuser.d │ │ │ ├── proxy-tlsv1.d │ │ │ ├── proxy-user.d │ │ │ ├── proxy.d │ │ │ ├── proxy1.0.d │ │ │ ├── proxytunnel.d │ │ │ ├── pubkey.d │ │ │ ├── quote.d │ │ │ ├── random-file.d │ │ │ ├── range.d │ │ │ ├── raw.d │ │ │ ├── referer.d │ │ │ ├── remote-header-name.d │ │ │ ├── remote-name-all.d │ │ │ ├── remote-name.d │ │ │ ├── remote-time.d │ │ │ ├── request-target.d │ │ │ ├── request.d │ │ │ ├── resolve.d │ │ │ ├── retry-connrefused.d │ │ │ ├── retry-delay.d │ │ │ ├── retry-max-time.d │ │ │ ├── retry.d │ │ │ ├── sasl-ir.d │ │ │ ├── service-name.d │ │ │ ├── show-error.d │ │ │ ├── silent.d │ │ │ ├── socks4.d │ │ │ ├── socks4a.d │ │ │ ├── socks5-basic.d │ │ │ ├── socks5-gssapi-nec.d │ │ │ ├── socks5-gssapi-service.d │ │ │ ├── socks5-gssapi.d │ │ │ ├── socks5-hostname.d │ │ │ ├── socks5.d │ │ │ ├── speed-limit.d │ │ │ ├── speed-time.d │ │ │ ├── ssl-allow-beast.d │ │ │ ├── ssl-no-revoke.d │ │ │ ├── ssl-reqd.d │ │ │ ├── ssl.d │ │ │ ├── sslv2.d │ │ │ ├── sslv3.d │ │ │ ├── stderr.d │ │ │ ├── suppress-connect-headers.d │ │ │ ├── tcp-fastopen.d │ │ │ ├── tcp-nodelay.d │ │ │ ├── telnet-option.d │ │ │ ├── tftp-blksize.d │ │ │ ├── tftp-no-options.d │ │ │ ├── time-cond.d │ │ │ ├── tls-max.d │ │ │ ├── tlsauthtype.d │ │ │ ├── tlspassword.d │ │ │ ├── tlsuser.d │ │ │ ├── tlsv1.0.d │ │ │ ├── tlsv1.1.d │ │ │ ├── tlsv1.2.d │ │ │ ├── tlsv1.3.d │ │ │ ├── tlsv1.d │ │ │ ├── tr-encoding.d │ │ │ ├── trace-ascii.d │ │ │ ├── trace-time.d │ │ │ ├── trace.d │ │ │ ├── unix-socket.d │ │ │ ├── upload-file.d │ │ │ ├── url.d │ │ │ ├── use-ascii.d │ │ │ ├── user-agent.d │ │ │ ├── user.d │ │ │ ├── verbose.d │ │ │ ├── version.d │ │ │ ├── write-out.d │ │ │ └── xattr.d │ │ ├── curl-config.1 │ │ ├── curl.1 │ │ ├── examples │ │ │ ├── 10-at-a-time.c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.example │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.m32 │ │ │ ├── Makefile.netware │ │ │ ├── README │ │ │ ├── anyauthput.c │ │ │ ├── asiohiper.cpp │ │ │ ├── cacertinmem.c │ │ │ ├── certinfo.c │ │ │ ├── chkspeed.c │ │ │ ├── cookie_interface.c │ │ │ ├── curlgtk.c │ │ │ ├── curlx.c │ │ │ ├── debug.c │ │ │ ├── evhiperfifo.c │ │ │ ├── externalsocket.c │ │ │ ├── fileupload.c │ │ │ ├── fopen.c │ │ │ ├── ftp-wildcard.c │ │ │ ├── ftpget.c │ │ │ ├── ftpgetinfo.c │ │ │ ├── ftpgetresp.c │ │ │ ├── ftpsget.c │ │ │ ├── ftpupload.c │ │ │ ├── ftpuploadfrommem.c │ │ │ ├── ftpuploadresume.c │ │ │ ├── getinfo.c │ │ │ ├── getinmemory.c │ │ │ ├── getredirect.c │ │ │ ├── ghiper.c │ │ │ ├── hiperfifo.c │ │ │ ├── href_extractor.c │ │ │ ├── htmltidy.c │ │ │ ├── htmltitle.cpp │ │ │ ├── http-post.c │ │ │ ├── http2-download.c │ │ │ ├── http2-serverpush.c │ │ │ ├── http2-upload.c │ │ │ ├── httpcustomheader.c │ │ │ ├── httpput.c │ │ │ ├── https.c │ │ │ ├── imap-append.c │ │ │ ├── imap-copy.c │ │ │ ├── imap-create.c │ │ │ ├── imap-delete.c │ │ │ ├── imap-examine.c │ │ │ ├── imap-fetch.c │ │ │ ├── imap-list.c │ │ │ ├── imap-lsub.c │ │ │ ├── imap-multi.c │ │ │ ├── imap-noop.c │ │ │ ├── imap-search.c │ │ │ ├── imap-ssl.c │ │ │ ├── imap-store.c │ │ │ ├── imap-tls.c │ │ │ ├── makefile.dj │ │ │ ├── multi-app.c │ │ │ ├── multi-debugcallback.c │ │ │ ├── multi-double.c │ │ │ ├── multi-formadd.c │ │ │ ├── multi-post.c │ │ │ ├── multi-single.c │ │ │ ├── multi-uv.c │ │ │ ├── multithread.c │ │ │ ├── opensslthreadlock.c │ │ │ ├── persistant.c │ │ │ ├── pop3-dele.c │ │ │ ├── pop3-list.c │ │ │ ├── pop3-multi.c │ │ │ ├── pop3-noop.c │ │ │ ├── pop3-retr.c │ │ │ ├── pop3-ssl.c │ │ │ ├── pop3-stat.c │ │ │ ├── pop3-tls.c │ │ │ ├── pop3-top.c │ │ │ ├── pop3-uidl.c │ │ │ ├── post-callback.c │ │ │ ├── postinmemory.c │ │ │ ├── postit2-formadd.c │ │ │ ├── postit2.c │ │ │ ├── progressfunc.c │ │ │ ├── resolve.c │ │ │ ├── rtsp.c │ │ │ ├── sampleconv.c │ │ │ ├── sendrecv.c │ │ │ ├── sepheaders.c │ │ │ ├── sessioninfo.c │ │ │ ├── sftpget.c │ │ │ ├── sftpuploadresume.c │ │ │ ├── shared-connection-cache.c │ │ │ ├── simple.c │ │ │ ├── simplepost.c │ │ │ ├── simplessl.c │ │ │ ├── smooth-gtk-thread.c │ │ │ ├── smtp-expn.c │ │ │ ├── smtp-mail.c │ │ │ ├── smtp-mime.c │ │ │ ├── smtp-multi.c │ │ │ ├── smtp-ssl.c │ │ │ ├── smtp-tls.c │ │ │ ├── smtp-vrfy.c │ │ │ ├── sslbackend.c │ │ │ ├── synctime.c │ │ │ ├── threaded-shared-conn.c │ │ │ ├── threaded-ssl.c │ │ │ ├── url2file.c │ │ │ ├── usercertinmem.c │ │ │ ├── version-check.pl │ │ │ └── xmlstream.c │ │ ├── libcurl │ │ │ ├── ABI │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── curl_easy_cleanup.3 │ │ │ ├── curl_easy_duphandle.3 │ │ │ ├── curl_easy_escape.3 │ │ │ ├── curl_easy_getinfo.3 │ │ │ ├── curl_easy_init.3 │ │ │ ├── curl_easy_pause.3 │ │ │ ├── curl_easy_perform.3 │ │ │ ├── curl_easy_recv.3 │ │ │ ├── curl_easy_reset.3 │ │ │ ├── curl_easy_send.3 │ │ │ ├── curl_easy_setopt.3 │ │ │ ├── curl_easy_strerror.3 │ │ │ ├── curl_easy_unescape.3 │ │ │ ├── curl_escape.3 │ │ │ ├── curl_formadd.3 │ │ │ ├── curl_formfree.3 │ │ │ ├── curl_formget.3 │ │ │ ├── curl_free.3 │ │ │ ├── curl_getdate.3 │ │ │ ├── curl_getenv.3 │ │ │ ├── curl_global_cleanup.3 │ │ │ ├── curl_global_init.3 │ │ │ ├── curl_global_init_mem.3 │ │ │ ├── curl_global_sslset.3 │ │ │ ├── curl_mime_addpart.3 │ │ │ ├── curl_mime_data.3 │ │ │ ├── curl_mime_data_cb.3 │ │ │ ├── curl_mime_encoder.3 │ │ │ ├── curl_mime_filedata.3 │ │ │ ├── curl_mime_filename.3 │ │ │ ├── curl_mime_free.3 │ │ │ ├── curl_mime_headers.3 │ │ │ ├── curl_mime_init.3 │ │ │ ├── curl_mime_name.3 │ │ │ ├── curl_mime_subparts.3 │ │ │ ├── curl_mime_type.3 │ │ │ ├── curl_mprintf.3 │ │ │ ├── curl_multi_add_handle.3 │ │ │ ├── curl_multi_assign.3 │ │ │ ├── curl_multi_cleanup.3 │ │ │ ├── curl_multi_fdset.3 │ │ │ ├── curl_multi_info_read.3 │ │ │ ├── curl_multi_init.3 │ │ │ ├── curl_multi_perform.3 │ │ │ ├── curl_multi_remove_handle.3 │ │ │ ├── curl_multi_setopt.3 │ │ │ ├── curl_multi_socket.3 │ │ │ ├── curl_multi_socket_action.3 │ │ │ ├── curl_multi_socket_all.3 │ │ │ ├── curl_multi_strerror.3 │ │ │ ├── curl_multi_timeout.3 │ │ │ ├── curl_multi_wait.3 │ │ │ ├── curl_share_cleanup.3 │ │ │ ├── curl_share_init.3 │ │ │ ├── curl_share_setopt.3 │ │ │ ├── curl_share_strerror.3 │ │ │ ├── curl_slist_append.3 │ │ │ ├── curl_slist_free_all.3 │ │ │ ├── curl_strequal.3 │ │ │ ├── curl_strnequal.3 │ │ │ ├── curl_unescape.3 │ │ │ ├── curl_version.3 │ │ │ ├── curl_version_info.3 │ │ │ ├── libcurl-easy.3 │ │ │ ├── libcurl-env.3 │ │ │ ├── libcurl-errors.3 │ │ │ ├── libcurl-multi.3 │ │ │ ├── libcurl-security.3 │ │ │ ├── libcurl-share.3 │ │ │ ├── libcurl-symbols.3 │ │ │ ├── libcurl-thread.3 │ │ │ ├── libcurl-tutorial.3 │ │ │ ├── libcurl.3 │ │ │ ├── libcurl.m4 │ │ │ ├── mksymbolsmanpage.pl │ │ │ ├── opts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CURLINFO_ACTIVESOCKET.3 │ │ │ │ ├── CURLINFO_APPCONNECT_TIME.3 │ │ │ │ ├── CURLINFO_CERTINFO.3 │ │ │ │ ├── CURLINFO_CONDITION_UNMET.3 │ │ │ │ ├── CURLINFO_CONNECT_TIME.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_CONTENT_TYPE.3 │ │ │ │ ├── CURLINFO_COOKIELIST.3 │ │ │ │ ├── CURLINFO_EFFECTIVE_URL.3 │ │ │ │ ├── CURLINFO_FILETIME.3 │ │ │ │ ├── CURLINFO_FILETIME_T.3 │ │ │ │ ├── CURLINFO_FTP_ENTRY_PATH.3 │ │ │ │ ├── CURLINFO_HEADER_SIZE.3 │ │ │ │ ├── CURLINFO_HTTPAUTH_AVAIL.3 │ │ │ │ ├── CURLINFO_HTTP_CONNECTCODE.3 │ │ │ │ ├── CURLINFO_HTTP_VERSION.3 │ │ │ │ ├── CURLINFO_LASTSOCKET.3 │ │ │ │ ├── CURLINFO_LOCAL_IP.3 │ │ │ │ ├── CURLINFO_LOCAL_PORT.3 │ │ │ │ ├── CURLINFO_NAMELOOKUP_TIME.3 │ │ │ │ ├── CURLINFO_NUM_CONNECTS.3 │ │ │ │ ├── CURLINFO_OS_ERRNO.3 │ │ │ │ ├── CURLINFO_PRETRANSFER_TIME.3 │ │ │ │ ├── CURLINFO_PRIMARY_IP.3 │ │ │ │ ├── CURLINFO_PRIMARY_PORT.3 │ │ │ │ ├── CURLINFO_PRIVATE.3 │ │ │ │ ├── CURLINFO_PROTOCOL.3 │ │ │ │ ├── CURLINFO_PROXYAUTH_AVAIL.3 │ │ │ │ ├── CURLINFO_PROXY_SSL_VERIFYRESULT.3 │ │ │ │ ├── CURLINFO_REDIRECT_COUNT.3 │ │ │ │ ├── CURLINFO_REDIRECT_TIME.3 │ │ │ │ ├── CURLINFO_REDIRECT_URL.3 │ │ │ │ ├── CURLINFO_REQUEST_SIZE.3 │ │ │ │ ├── CURLINFO_RESPONSE_CODE.3 │ │ │ │ ├── CURLINFO_RTSP_CLIENT_CSEQ.3 │ │ │ │ ├── CURLINFO_RTSP_CSEQ_RECV.3 │ │ │ │ ├── CURLINFO_RTSP_SERVER_CSEQ.3 │ │ │ │ ├── CURLINFO_RTSP_SESSION_ID.3 │ │ │ │ ├── CURLINFO_SCHEME.3 │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_SIZE_UPLOAD.3 │ │ │ │ ├── CURLINFO_SIZE_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_SPEED_UPLOAD.3 │ │ │ │ ├── CURLINFO_SPEED_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_SSL_ENGINES.3 │ │ │ │ ├── CURLINFO_SSL_VERIFYRESULT.3 │ │ │ │ ├── CURLINFO_STARTTRANSFER_TIME.3 │ │ │ │ ├── CURLINFO_TLS_SESSION.3 │ │ │ │ ├── CURLINFO_TLS_SSL_PTR.3 │ │ │ │ ├── CURLINFO_TOTAL_TIME.3 │ │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 │ │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 │ │ │ │ ├── CURLMOPT_MAXCONNECTS.3 │ │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.3 │ │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.3 │ │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.3 │ │ │ │ ├── CURLMOPT_PIPELINING.3 │ │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.3 │ │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.3 │ │ │ │ ├── CURLMOPT_PUSHDATA.3 │ │ │ │ ├── CURLMOPT_PUSHFUNCTION.3 │ │ │ │ ├── CURLMOPT_SOCKETDATA.3 │ │ │ │ ├── CURLMOPT_SOCKETFUNCTION.3 │ │ │ │ ├── CURLMOPT_TIMERDATA.3 │ │ │ │ ├── CURLMOPT_TIMERFUNCTION.3 │ │ │ │ ├── CURLOPT_ABSTRACT_UNIX_SOCKET.3 │ │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_ACCEPT_ENCODING.3 │ │ │ │ ├── CURLOPT_ADDRESS_SCOPE.3 │ │ │ │ ├── CURLOPT_APPEND.3 │ │ │ │ ├── CURLOPT_AUTOREFERER.3 │ │ │ │ ├── CURLOPT_BUFFERSIZE.3 │ │ │ │ ├── CURLOPT_CAINFO.3 │ │ │ │ ├── CURLOPT_CAPATH.3 │ │ │ │ ├── CURLOPT_CERTINFO.3 │ │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.3 │ │ │ │ ├── CURLOPT_CHUNK_DATA.3 │ │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.3 │ │ │ │ ├── CURLOPT_CLOSESOCKETDATA.3 │ │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.3 │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT.3 │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_CONNECT_ONLY.3 │ │ │ │ ├── CURLOPT_CONNECT_TO.3 │ │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 │ │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.3 │ │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.3 │ │ │ │ ├── CURLOPT_COOKIE.3 │ │ │ │ ├── CURLOPT_COOKIEFILE.3 │ │ │ │ ├── CURLOPT_COOKIEJAR.3 │ │ │ │ ├── CURLOPT_COOKIELIST.3 │ │ │ │ ├── CURLOPT_COOKIESESSION.3 │ │ │ │ ├── CURLOPT_COPYPOSTFIELDS.3 │ │ │ │ ├── CURLOPT_CRLF.3 │ │ │ │ ├── CURLOPT_CRLFILE.3 │ │ │ │ ├── CURLOPT_CUSTOMREQUEST.3 │ │ │ │ ├── CURLOPT_DEBUGDATA.3 │ │ │ │ ├── CURLOPT_DEBUGFUNCTION.3 │ │ │ │ ├── CURLOPT_DEFAULT_PROTOCOL.3 │ │ │ │ ├── CURLOPT_DIRLISTONLY.3 │ │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.3 │ │ │ │ ├── CURLOPT_DNS_INTERFACE.3 │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.3 │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.3 │ │ │ │ ├── CURLOPT_DNS_SERVERS.3 │ │ │ │ ├── CURLOPT_DNS_SHUFFLE_ADDRESSES.3 │ │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.3 │ │ │ │ ├── CURLOPT_EGDSOCKET.3 │ │ │ │ ├── CURLOPT_ERRORBUFFER.3 │ │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_FAILONERROR.3 │ │ │ │ ├── CURLOPT_FILETIME.3 │ │ │ │ ├── CURLOPT_FNMATCH_DATA.3 │ │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.3 │ │ │ │ ├── CURLOPT_FOLLOWLOCATION.3 │ │ │ │ ├── CURLOPT_FORBID_REUSE.3 │ │ │ │ ├── CURLOPT_FRESH_CONNECT.3 │ │ │ │ ├── CURLOPT_FTPPORT.3 │ │ │ │ ├── CURLOPT_FTPSSLAUTH.3 │ │ │ │ ├── CURLOPT_FTP_ACCOUNT.3 │ │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.3 │ │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.3 │ │ │ │ ├── CURLOPT_FTP_FILEMETHOD.3 │ │ │ │ ├── CURLOPT_FTP_RESPONSE_TIMEOUT.3 │ │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.3 │ │ │ │ ├── CURLOPT_FTP_SSL_CCC.3 │ │ │ │ ├── CURLOPT_FTP_USE_EPRT.3 │ │ │ │ ├── CURLOPT_FTP_USE_EPSV.3 │ │ │ │ ├── CURLOPT_FTP_USE_PRET.3 │ │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.3 │ │ │ │ ├── CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_HAPROXYPROTOCOL.3 │ │ │ │ ├── CURLOPT_HEADER.3 │ │ │ │ ├── CURLOPT_HEADERDATA.3 │ │ │ │ ├── CURLOPT_HEADERFUNCTION.3 │ │ │ │ ├── CURLOPT_HEADEROPT.3 │ │ │ │ ├── CURLOPT_HTTP200ALIASES.3 │ │ │ │ ├── CURLOPT_HTTPAUTH.3 │ │ │ │ ├── CURLOPT_HTTPGET.3 │ │ │ │ ├── CURLOPT_HTTPHEADER.3 │ │ │ │ ├── CURLOPT_HTTPPOST.3 │ │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.3 │ │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.3 │ │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.3 │ │ │ │ ├── CURLOPT_HTTP_VERSION.3 │ │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.3 │ │ │ │ ├── CURLOPT_INFILESIZE.3 │ │ │ │ ├── CURLOPT_INFILESIZE_LARGE.3 │ │ │ │ ├── CURLOPT_INTERFACE.3 │ │ │ │ ├── CURLOPT_INTERLEAVEDATA.3 │ │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.3 │ │ │ │ ├── CURLOPT_IOCTLDATA.3 │ │ │ │ ├── CURLOPT_IOCTLFUNCTION.3 │ │ │ │ ├── CURLOPT_IPRESOLVE.3 │ │ │ │ ├── CURLOPT_ISSUERCERT.3 │ │ │ │ ├── CURLOPT_KEEP_SENDING_ON_ERROR.3 │ │ │ │ ├── CURLOPT_KEYPASSWD.3 │ │ │ │ ├── CURLOPT_KRBLEVEL.3 │ │ │ │ ├── CURLOPT_LOCALPORT.3 │ │ │ │ ├── CURLOPT_LOCALPORTRANGE.3 │ │ │ │ ├── CURLOPT_LOGIN_OPTIONS.3 │ │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.3 │ │ │ │ ├── CURLOPT_LOW_SPEED_TIME.3 │ │ │ │ ├── CURLOPT_MAIL_AUTH.3 │ │ │ │ ├── CURLOPT_MAIL_FROM.3 │ │ │ │ ├── CURLOPT_MAIL_RCPT.3 │ │ │ │ ├── CURLOPT_MAXCONNECTS.3 │ │ │ │ ├── CURLOPT_MAXFILESIZE.3 │ │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.3 │ │ │ │ ├── CURLOPT_MAXREDIRS.3 │ │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.3 │ │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.3 │ │ │ │ ├── CURLOPT_MIMEPOST.3 │ │ │ │ ├── CURLOPT_NETRC.3 │ │ │ │ ├── CURLOPT_NETRC_FILE.3 │ │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.3 │ │ │ │ ├── CURLOPT_NEW_FILE_PERMS.3 │ │ │ │ ├── CURLOPT_NOBODY.3 │ │ │ │ ├── CURLOPT_NOPROGRESS.3 │ │ │ │ ├── CURLOPT_NOPROXY.3 │ │ │ │ ├── CURLOPT_NOSIGNAL.3 │ │ │ │ ├── CURLOPT_OPENSOCKETDATA.3 │ │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.3 │ │ │ │ ├── CURLOPT_PASSWORD.3 │ │ │ │ ├── CURLOPT_PATH_AS_IS.3 │ │ │ │ ├── CURLOPT_PINNEDPUBLICKEY.3 │ │ │ │ ├── CURLOPT_PIPEWAIT.3 │ │ │ │ ├── CURLOPT_PORT.3 │ │ │ │ ├── CURLOPT_POST.3 │ │ │ │ ├── CURLOPT_POSTFIELDS.3 │ │ │ │ ├── CURLOPT_POSTFIELDSIZE.3 │ │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.3 │ │ │ │ ├── CURLOPT_POSTQUOTE.3 │ │ │ │ ├── CURLOPT_POSTREDIR.3 │ │ │ │ ├── CURLOPT_PREQUOTE.3 │ │ │ │ ├── CURLOPT_PRE_PROXY.3 │ │ │ │ ├── CURLOPT_PRIVATE.3 │ │ │ │ ├── CURLOPT_PROGRESSDATA.3 │ │ │ │ ├── CURLOPT_PROGRESSFUNCTION.3 │ │ │ │ ├── CURLOPT_PROTOCOLS.3 │ │ │ │ ├── CURLOPT_PROXY.3 │ │ │ │ ├── CURLOPT_PROXYAUTH.3 │ │ │ │ ├── CURLOPT_PROXYHEADER.3 │ │ │ │ ├── CURLOPT_PROXYPASSWORD.3 │ │ │ │ ├── CURLOPT_PROXYPORT.3 │ │ │ │ ├── CURLOPT_PROXYTYPE.3 │ │ │ │ ├── CURLOPT_PROXYUSERNAME.3 │ │ │ │ ├── CURLOPT_PROXYUSERPWD.3 │ │ │ │ ├── CURLOPT_PROXY_CAINFO.3 │ │ │ │ ├── CURLOPT_PROXY_CAPATH.3 │ │ │ │ ├── CURLOPT_PROXY_CRLFILE.3 │ │ │ │ ├── CURLOPT_PROXY_KEYPASSWD.3 │ │ │ │ ├── CURLOPT_PROXY_PINNEDPUBLICKEY.3 │ │ │ │ ├── CURLOPT_PROXY_SERVICE_NAME.3 │ │ │ │ ├── CURLOPT_PROXY_SSLCERT.3 │ │ │ │ ├── CURLOPT_PROXY_SSLCERTTYPE.3 │ │ │ │ ├── CURLOPT_PROXY_SSLKEY.3 │ │ │ │ ├── CURLOPT_PROXY_SSLKEYTYPE.3 │ │ │ │ ├── CURLOPT_PROXY_SSLVERSION.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_CIPHER_LIST.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_OPTIONS.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYHOST.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYPEER.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_PASSWORD.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_TYPE.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_USERNAME.3 │ │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.3 │ │ │ │ ├── CURLOPT_PUT.3 │ │ │ │ ├── CURLOPT_QUOTE.3 │ │ │ │ ├── CURLOPT_RANDOM_FILE.3 │ │ │ │ ├── CURLOPT_RANGE.3 │ │ │ │ ├── CURLOPT_READDATA.3 │ │ │ │ ├── CURLOPT_READFUNCTION.3 │ │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.3 │ │ │ │ ├── CURLOPT_REFERER.3 │ │ │ │ ├── CURLOPT_REQUEST_TARGET.3 │ │ │ │ ├── CURLOPT_RESOLVE.3 │ │ │ │ ├── CURLOPT_RESOLVER_START_DATA.3 │ │ │ │ ├── CURLOPT_RESOLVER_START_FUNCTION.3 │ │ │ │ ├── CURLOPT_RESUME_FROM.3 │ │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.3 │ │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.3 │ │ │ │ ├── CURLOPT_RTSP_REQUEST.3 │ │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.3 │ │ │ │ ├── CURLOPT_RTSP_SESSION_ID.3 │ │ │ │ ├── CURLOPT_RTSP_STREAM_URI.3 │ │ │ │ ├── CURLOPT_RTSP_TRANSPORT.3 │ │ │ │ ├── CURLOPT_SASL_IR.3 │ │ │ │ ├── CURLOPT_SEEKDATA.3 │ │ │ │ ├── CURLOPT_SEEKFUNCTION.3 │ │ │ │ ├── CURLOPT_SERVICE_NAME.3 │ │ │ │ ├── CURLOPT_SHARE.3 │ │ │ │ ├── CURLOPT_SOCKOPTDATA.3 │ │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.3 │ │ │ │ ├── CURLOPT_SOCKS5_AUTH.3 │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.3 │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.3 │ │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.3 │ │ │ │ ├── CURLOPT_SSH_COMPRESSION.3 │ │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 │ │ │ │ ├── CURLOPT_SSH_KEYDATA.3 │ │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.3 │ │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.3 │ │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.3 │ │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.3 │ │ │ │ ├── CURLOPT_SSLCERT.3 │ │ │ │ ├── CURLOPT_SSLCERTTYPE.3 │ │ │ │ ├── CURLOPT_SSLENGINE.3 │ │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.3 │ │ │ │ ├── CURLOPT_SSLKEY.3 │ │ │ │ ├── CURLOPT_SSLKEYTYPE.3 │ │ │ │ ├── CURLOPT_SSLVERSION.3 │ │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.3 │ │ │ │ ├── CURLOPT_SSL_CTX_DATA.3 │ │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.3 │ │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.3 │ │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.3 │ │ │ │ ├── CURLOPT_SSL_FALSESTART.3 │ │ │ │ ├── CURLOPT_SSL_OPTIONS.3 │ │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYHOST.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYPEER.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYSTATUS.3 │ │ │ │ ├── CURLOPT_STDERR.3 │ │ │ │ ├── CURLOPT_STREAM_DEPENDS.3 │ │ │ │ ├── CURLOPT_STREAM_DEPENDS_E.3 │ │ │ │ ├── CURLOPT_STREAM_WEIGHT.3 │ │ │ │ ├── CURLOPT_SUPPRESS_CONNECT_HEADERS.3 │ │ │ │ ├── CURLOPT_TCP_FASTOPEN.3 │ │ │ │ ├── CURLOPT_TCP_KEEPALIVE.3 │ │ │ │ ├── CURLOPT_TCP_KEEPIDLE.3 │ │ │ │ ├── CURLOPT_TCP_KEEPINTVL.3 │ │ │ │ ├── CURLOPT_TCP_NODELAY.3 │ │ │ │ ├── CURLOPT_TELNETOPTIONS.3 │ │ │ │ ├── CURLOPT_TFTP_BLKSIZE.3 │ │ │ │ ├── CURLOPT_TFTP_NO_OPTIONS.3 │ │ │ │ ├── CURLOPT_TIMECONDITION.3 │ │ │ │ ├── CURLOPT_TIMEOUT.3 │ │ │ │ ├── CURLOPT_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_TIMEVALUE.3 │ │ │ │ ├── CURLOPT_TIMEVALUE_LARGE.3 │ │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.3 │ │ │ │ ├── CURLOPT_TLSAUTH_TYPE.3 │ │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.3 │ │ │ │ ├── CURLOPT_TRANSFERTEXT.3 │ │ │ │ ├── CURLOPT_TRANSFER_ENCODING.3 │ │ │ │ ├── CURLOPT_UNIX_SOCKET_PATH.3 │ │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.3 │ │ │ │ ├── CURLOPT_UPLOAD.3 │ │ │ │ ├── CURLOPT_URL.3 │ │ │ │ ├── CURLOPT_USERAGENT.3 │ │ │ │ ├── CURLOPT_USERNAME.3 │ │ │ │ ├── CURLOPT_USERPWD.3 │ │ │ │ ├── CURLOPT_USE_SSL.3 │ │ │ │ ├── CURLOPT_VERBOSE.3 │ │ │ │ ├── CURLOPT_WILDCARDMATCH.3 │ │ │ │ ├── CURLOPT_WRITEDATA.3 │ │ │ │ ├── CURLOPT_WRITEFUNCTION.3 │ │ │ │ ├── CURLOPT_XFERINFODATA.3 │ │ │ │ ├── CURLOPT_XFERINFOFUNCTION.3 │ │ │ │ ├── CURLOPT_XOAUTH2_BEARER.3 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── Makefile.inc │ │ │ ├── symbols-in-versions │ │ │ └── symbols.pl │ │ └── mk-ca-bundle.1 │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ └── curl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ └── typecheck-gcc.h │ ├── install-sh │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── Makefile.Watcom │ │ ├── Makefile.am │ │ ├── Makefile.b32 │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── Makefile.vxworks │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── checksrc.pl │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-mac.h │ │ ├── config-os400.h │ │ ├── config-riscos.h │ │ ├── config-symbian.h │ │ ├── config-tpf.h │ │ ├── config-vxworks.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h.cmake │ │ ├── curl_config.h.in │ │ ├── curl_ctype.c │ │ ├── curl_ctype.h │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_ldap.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_path.c │ │ ├── curl_path.h │ │ ├── curl_printf.h │ │ ├── curl_range.c │ │ ├── curl_range.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_sec.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sha256.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── dotdot.c │ │ ├── dotdot.h │ │ ├── easy.c │ │ ├── easyif.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── firefox-db2pem.sh │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostcheck.c │ │ ├── hostcheck.h │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── http.c │ │ ├── http.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn_win32.c │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.rc │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mk-ca-bundle.pl │ │ ├── mk-ca-bundle.vbs │ │ ├── mprintf.c │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── non-ascii.c │ │ ├── non-ascii.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── nwlib.c │ │ ├── nwos.c │ │ ├── objnames-test08.sh │ │ ├── objnames-test10.sh │ │ ├── objnames.inc │ │ ├── openldap.c │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pipeline.c │ │ ├── pipeline.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── security.c │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setopt.c │ │ ├── setopt.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── sha256.c │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── ssh-libssh.c │ │ ├── ssh.c │ │ ├── ssh.h │ │ ├── strcase.c │ │ ├── strcase.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urldata.h │ │ ├── vauth │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ ├── version.c │ │ ├── vtls │ │ │ ├── axtls.c │ │ │ ├── axtls.h │ │ │ ├── cyassl.c │ │ │ ├── cyassl.h │ │ │ ├── darwinssl.c │ │ │ ├── darwinssl.h │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── polarssl.c │ │ │ ├── polarssl.h │ │ │ ├── polarssl_threadlock.c │ │ │ ├── polarssl_threadlock.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── vtls.c │ │ │ └── vtls.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── wildcard.c │ │ ├── wildcard.h │ │ ├── x509asn1.c │ │ └── x509asn1.h │ ├── libcurl.pc.in │ ├── ltmain.sh │ ├── m4 │ │ ├── ax_code_coverage.m4 │ │ ├── curl-compilers.m4 │ │ ├── curl-confopts.m4 │ │ ├── curl-functions.m4 │ │ ├── curl-openssl.m4 │ │ ├── curl-override.m4 │ │ ├── curl-reentrant.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── xc-am-iface.m4 │ │ ├── xc-cc-check.m4 │ │ ├── xc-lt-iface.m4 │ │ ├── xc-translit.m4 │ │ ├── xc-val-flgs.m4 │ │ ├── zz40-xc-ovr.m4 │ │ ├── zz50-xc-ovr.m4 │ │ └── zz60-xc-ovr.m4 │ ├── maketgz │ ├── missing │ ├── packages │ │ ├── AIX │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── RPM │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ └── curl.spec.in │ │ ├── Android │ │ │ └── Android.mk │ │ ├── DOS │ │ │ ├── README │ │ │ └── common.dj │ │ ├── EPM │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── curl.list.in │ │ ├── Linux │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── RPM │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── curl-ssl.spec.in │ │ │ │ ├── curl.spec.in │ │ │ │ └── make_curl_rpm │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NetWare │ │ │ ├── get_exp.awk │ │ │ └── get_ver.awk │ │ ├── OS400 │ │ │ ├── README.OS400 │ │ │ ├── ccsidcurl.c │ │ │ ├── ccsidcurl.h │ │ │ ├── curl.inc.in │ │ │ ├── initscript.sh │ │ │ ├── make-include.sh │ │ │ ├── make-lib.sh │ │ │ ├── make-src.sh │ │ │ ├── make-tests.sh │ │ │ ├── makefile.sh │ │ │ ├── os400sys.c │ │ │ └── os400sys.h │ │ ├── README │ │ ├── Solaris │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── Symbian │ │ │ ├── bwins │ │ │ │ └── libcurlu.def │ │ │ ├── eabi │ │ │ │ └── libcurlu.def │ │ │ ├── group │ │ │ │ ├── bld.inf │ │ │ │ ├── curl.iby │ │ │ │ ├── curl.mmp │ │ │ │ ├── curl.pkg │ │ │ │ ├── libcurl.iby │ │ │ │ ├── libcurl.mmp │ │ │ │ └── libcurl.pkg │ │ │ └── readme.txt │ │ ├── TPF │ │ │ ├── curl.mak │ │ │ ├── maketpf.env_curl │ │ │ └── maketpf.env_curllib │ │ ├── Win32 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── cygwin │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── README │ │ └── vms │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── backup_gnv_curl_src.com │ │ │ ├── build_curl-config_script.com │ │ │ ├── build_gnv_curl.com │ │ │ ├── build_gnv_curl_pcsi_desc.com │ │ │ ├── build_gnv_curl_pcsi_text.com │ │ │ ├── build_gnv_curl_release_notes.com │ │ │ ├── build_libcurl_pc.com │ │ │ ├── build_vms.com │ │ │ ├── clean_gnv_curl.com │ │ │ ├── compare_curl_source.com │ │ │ ├── config_h.com │ │ │ ├── curl_crtl_init.c │ │ │ ├── curl_gnv_build_steps.txt │ │ │ ├── curl_release_note_start.txt │ │ │ ├── curl_startup.com │ │ │ ├── curlmsg.h │ │ │ ├── curlmsg.msg │ │ │ ├── curlmsg.sdl │ │ │ ├── curlmsg_vms.h │ │ │ ├── generate_config_vms_h_curl.com │ │ │ ├── generate_vax_transfer.com │ │ │ ├── gnv_conftest.c_first │ │ │ ├── gnv_curl_configure.sh │ │ │ ├── gnv_libcurl_symbols.opt │ │ │ ├── gnv_link_curl.com │ │ │ ├── macro32_exactcase.patch │ │ │ ├── make_gnv_curl_install.sh │ │ │ ├── make_pcsi_curl_kit_name.com │ │ │ ├── pcsi_gnv_curl_file_list.txt │ │ │ ├── pcsi_product_gnv_curl.com │ │ │ ├── readme │ │ │ ├── report_openssl_version.c │ │ │ ├── setup_gnv_curl_build.com │ │ │ ├── stage_curl_install.com │ │ │ └── vms_eco_level.h │ ├── projects │ │ ├── README │ │ ├── Windows │ │ │ ├── VC10 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC11 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC12 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC14 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC15 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC6 │ │ │ │ ├── curl-all.dsw │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.dsp │ │ │ │ │ └── libcurl.dsw │ │ │ │ └── src │ │ │ │ │ ├── curl.dsp │ │ │ │ │ └── curl.dsw │ │ │ ├── VC7.1 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ └── libcurl.vcproj │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ └── curl.vcproj │ │ │ ├── VC7 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ └── libcurl.vcproj │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ └── curl.vcproj │ │ │ ├── VC8 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ └── libcurl.vcproj │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ └── curl.vcproj │ │ │ └── VC9 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ └── libcurl.vcproj │ │ │ │ └── src │ │ │ │ ├── curl.sln │ │ │ │ └── curl.vcproj │ │ ├── build-openssl.bat │ │ ├── build-wolfssl.bat │ │ ├── checksrc.bat │ │ ├── generate.bat │ │ ├── wolfssl_options.h │ │ └── wolfssl_override.props │ ├── scripts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── coverage.sh │ │ ├── updatemanpages.pl │ │ └── zsh.pl │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Makefile.Watcom │ │ ├── Makefile.am │ │ ├── Makefile.b32 │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── curl.rc │ │ ├── macos │ │ │ ├── MACINSTALL.TXT │ │ │ ├── curl.mcp.xml.sit.hqx │ │ │ └── src │ │ │ │ ├── curl_GUSIConfig.cpp │ │ │ │ └── macos_main.cpp │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── mkhelp.pl │ │ ├── slist_wc.c │ │ ├── slist_wc.h │ │ ├── tool_binmode.c │ │ ├── tool_binmode.h │ │ ├── tool_bname.c │ │ ├── tool_bname.h │ │ ├── tool_cb_dbg.c │ │ ├── tool_cb_dbg.h │ │ ├── tool_cb_hdr.c │ │ ├── tool_cb_hdr.h │ │ ├── tool_cb_prg.c │ │ ├── tool_cb_prg.h │ │ ├── tool_cb_rea.c │ │ ├── tool_cb_rea.h │ │ ├── tool_cb_see.c │ │ ├── tool_cb_see.h │ │ ├── tool_cb_wrt.c │ │ ├── tool_cb_wrt.h │ │ ├── tool_cfgable.c │ │ ├── tool_cfgable.h │ │ ├── tool_convert.c │ │ ├── tool_convert.h │ │ ├── tool_dirhie.c │ │ ├── tool_dirhie.h │ │ ├── tool_doswin.c │ │ ├── tool_doswin.h │ │ ├── tool_easysrc.c │ │ ├── tool_easysrc.h │ │ ├── tool_filetime.c │ │ ├── tool_filetime.h │ │ ├── tool_formparse.c │ │ ├── tool_formparse.h │ │ ├── tool_getparam.c │ │ ├── tool_getparam.h │ │ ├── tool_getpass.c │ │ ├── tool_getpass.h │ │ ├── tool_help.c │ │ ├── tool_help.h │ │ ├── tool_helpers.c │ │ ├── tool_helpers.h │ │ ├── tool_homedir.c │ │ ├── tool_homedir.h │ │ ├── tool_hugehelp.c │ │ ├── tool_hugehelp.h │ │ ├── tool_libinfo.c │ │ ├── tool_libinfo.h │ │ ├── tool_main.c │ │ ├── tool_main.h │ │ ├── tool_metalink.c │ │ ├── tool_metalink.h │ │ ├── tool_msgs.c │ │ ├── tool_msgs.h │ │ ├── tool_operate.c │ │ ├── tool_operate.h │ │ ├── tool_operhlp.c │ │ ├── tool_operhlp.h │ │ ├── tool_panykey.c │ │ ├── tool_panykey.h │ │ ├── tool_paramhlp.c │ │ ├── tool_paramhlp.h │ │ ├── tool_parsecfg.c │ │ ├── tool_parsecfg.h │ │ ├── tool_sdecls.h │ │ ├── tool_setopt.c │ │ ├── tool_setopt.h │ │ ├── tool_setup.h │ │ ├── tool_sleep.c │ │ ├── tool_sleep.h │ │ ├── tool_strdup.c │ │ ├── tool_strdup.h │ │ ├── tool_urlglob.c │ │ ├── tool_urlglob.h │ │ ├── tool_util.c │ │ ├── tool_util.h │ │ ├── tool_version.h │ │ ├── tool_vms.c │ │ ├── tool_vms.h │ │ ├── tool_writeout.c │ │ ├── tool_writeout.h │ │ ├── tool_xattr.c │ │ └── tool_xattr.h │ ├── test-driver │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── FILEFORMAT │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── certs │ │ │ ├── EdelCurlRoot-ca.cacert │ │ │ ├── EdelCurlRoot-ca.cnf │ │ │ ├── EdelCurlRoot-ca.crt │ │ │ ├── EdelCurlRoot-ca.csr │ │ │ ├── EdelCurlRoot-ca.der │ │ │ ├── EdelCurlRoot-ca.key │ │ │ ├── EdelCurlRoot-ca.prm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Server-localhost-firstSAN-sv.crl │ │ │ ├── Server-localhost-firstSAN-sv.crt │ │ │ ├── Server-localhost-firstSAN-sv.csr │ │ │ ├── Server-localhost-firstSAN-sv.der │ │ │ ├── Server-localhost-firstSAN-sv.dhp │ │ │ ├── Server-localhost-firstSAN-sv.key │ │ │ ├── Server-localhost-firstSAN-sv.pem │ │ │ ├── Server-localhost-firstSAN-sv.pub.der │ │ │ ├── Server-localhost-firstSAN-sv.pub.pem │ │ │ ├── Server-localhost-lastSAN-sv.crl │ │ │ ├── Server-localhost-lastSAN-sv.crt │ │ │ ├── Server-localhost-lastSAN-sv.csr │ │ │ ├── Server-localhost-lastSAN-sv.der │ │ │ ├── Server-localhost-lastSAN-sv.dhp │ │ │ ├── Server-localhost-lastSAN-sv.key │ │ │ ├── Server-localhost-lastSAN-sv.pem │ │ │ ├── Server-localhost-lastSAN-sv.pub.der │ │ │ ├── Server-localhost-lastSAN-sv.pub.pem │ │ │ ├── Server-localhost-sv.crl │ │ │ ├── Server-localhost-sv.crt │ │ │ ├── Server-localhost-sv.csr │ │ │ ├── Server-localhost-sv.der │ │ │ ├── Server-localhost-sv.dhp │ │ │ ├── Server-localhost-sv.key │ │ │ ├── Server-localhost-sv.pem │ │ │ ├── Server-localhost-sv.prm │ │ │ ├── Server-localhost-sv.pub.der │ │ │ ├── Server-localhost-sv.pub.pem │ │ │ ├── Server-localhost.nn-sv.crl │ │ │ ├── Server-localhost.nn-sv.crt │ │ │ ├── Server-localhost.nn-sv.csr │ │ │ ├── Server-localhost.nn-sv.der │ │ │ ├── Server-localhost.nn-sv.dhp │ │ │ ├── Server-localhost.nn-sv.key │ │ │ ├── Server-localhost.nn-sv.pem │ │ │ ├── Server-localhost.nn-sv.prm │ │ │ ├── Server-localhost.nn-sv.pub.der │ │ │ ├── Server-localhost.nn-sv.pub.pem │ │ │ ├── Server-localhost0h-sv.crl │ │ │ ├── Server-localhost0h-sv.crt │ │ │ ├── Server-localhost0h-sv.csr │ │ │ ├── Server-localhost0h-sv.der │ │ │ ├── Server-localhost0h-sv.dhp │ │ │ ├── Server-localhost0h-sv.key │ │ │ ├── Server-localhost0h-sv.pem │ │ │ ├── Server-localhost0h-sv.prm │ │ │ ├── Server-localhost0h-sv.pub.der │ │ │ ├── Server-localhost0h-sv.pub.pem │ │ │ ├── scripts │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── genroot.sh │ │ │ │ └── genserv.sh │ │ │ ├── srp-verifier-conf │ │ │ └── srp-verifier-db │ │ ├── curl_test_data.py │ │ ├── data │ │ │ ├── CMakeLists.txt │ │ │ ├── DISABLED │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── test1 │ │ │ ├── test10 │ │ │ ├── test100 │ │ │ ├── test1000 │ │ │ ├── test1001 │ │ │ ├── test1002 │ │ │ ├── test1003 │ │ │ ├── test1004 │ │ │ ├── test1005 │ │ │ ├── test1006 │ │ │ ├── test1007 │ │ │ ├── test1008 │ │ │ ├── test1009 │ │ │ ├── test101 │ │ │ ├── test1010 │ │ │ ├── test1011 │ │ │ ├── test1012 │ │ │ ├── test1013 │ │ │ ├── test1014 │ │ │ ├── test1015 │ │ │ ├── test1016 │ │ │ ├── test1017 │ │ │ ├── test1018 │ │ │ ├── test1019 │ │ │ ├── test102 │ │ │ ├── test1020 │ │ │ ├── test1021 │ │ │ ├── test1022 │ │ │ ├── test1023 │ │ │ ├── test1024 │ │ │ ├── test1025 │ │ │ ├── test1026 │ │ │ ├── test1027 │ │ │ ├── test1028 │ │ │ ├── test1029 │ │ │ ├── test103 │ │ │ ├── test1030 │ │ │ ├── test1031 │ │ │ ├── test1032 │ │ │ ├── test1033 │ │ │ ├── test1034 │ │ │ ├── test1035 │ │ │ ├── test1036 │ │ │ ├── test1037 │ │ │ ├── test1038 │ │ │ ├── test1039 │ │ │ ├── test104 │ │ │ ├── test1040 │ │ │ ├── test1041 │ │ │ ├── test1042 │ │ │ ├── test1043 │ │ │ ├── test1044 │ │ │ ├── test1045 │ │ │ ├── test1046 │ │ │ ├── test1047 │ │ │ ├── test1048 │ │ │ ├── test1049 │ │ │ ├── test105 │ │ │ ├── test1050 │ │ │ ├── test1051 │ │ │ ├── test1052 │ │ │ ├── test1053 │ │ │ ├── test1054 │ │ │ ├── test1055 │ │ │ ├── test1056 │ │ │ ├── test1057 │ │ │ ├── test1058 │ │ │ ├── test1059 │ │ │ ├── test106 │ │ │ ├── test1060 │ │ │ ├── test1061 │ │ │ ├── test1062 │ │ │ ├── test1063 │ │ │ ├── test1064 │ │ │ ├── test1065 │ │ │ ├── test1066 │ │ │ ├── test1067 │ │ │ ├── test1068 │ │ │ ├── test1069 │ │ │ ├── test107 │ │ │ ├── test1070 │ │ │ ├── test1071 │ │ │ ├── test1072 │ │ │ ├── test1073 │ │ │ ├── test1074 │ │ │ ├── test1075 │ │ │ ├── test1076 │ │ │ ├── test1077 │ │ │ ├── test1078 │ │ │ ├── test1079 │ │ │ ├── test108 │ │ │ ├── test1080 │ │ │ ├── test1081 │ │ │ ├── test1082 │ │ │ ├── test1083 │ │ │ ├── test1084 │ │ │ ├── test1085 │ │ │ ├── test1086 │ │ │ ├── test1087 │ │ │ ├── test1088 │ │ │ ├── test1089 │ │ │ ├── test109 │ │ │ ├── test1090 │ │ │ ├── test1091 │ │ │ ├── test1092 │ │ │ ├── test1093 │ │ │ ├── test1094 │ │ │ ├── test1095 │ │ │ ├── test1096 │ │ │ ├── test1097 │ │ │ ├── test1098 │ │ │ ├── test1099 │ │ │ ├── test11 │ │ │ ├── test110 │ │ │ ├── test1100 │ │ │ ├── test1101 │ │ │ ├── test1102 │ │ │ ├── test1103 │ │ │ ├── test1104 │ │ │ ├── test1105 │ │ │ ├── test1106 │ │ │ ├── test1107 │ │ │ ├── test1108 │ │ │ ├── test1109 │ │ │ ├── test111 │ │ │ ├── test1110 │ │ │ ├── test1111 │ │ │ ├── test1112 │ │ │ ├── test1113 │ │ │ ├── test1114 │ │ │ ├── test1115 │ │ │ ├── test1116 │ │ │ ├── test1117 │ │ │ ├── test1118 │ │ │ ├── test1119 │ │ │ ├── test112 │ │ │ ├── test1120 │ │ │ ├── test1121 │ │ │ ├── test1122 │ │ │ ├── test1123 │ │ │ ├── test1124 │ │ │ ├── test1125 │ │ │ ├── test1126 │ │ │ ├── test1127 │ │ │ ├── test1128 │ │ │ ├── test1129 │ │ │ ├── test113 │ │ │ ├── test1130 │ │ │ ├── test1131 │ │ │ ├── test1132 │ │ │ ├── test1133 │ │ │ ├── test1134 │ │ │ ├── test1135 │ │ │ ├── test1136 │ │ │ ├── test1137 │ │ │ ├── test1138 │ │ │ ├── test1139 │ │ │ ├── test114 │ │ │ ├── test1140 │ │ │ ├── test1141 │ │ │ ├── test1142 │ │ │ ├── test1143 │ │ │ ├── test1144 │ │ │ ├── test1145 │ │ │ ├── test1146 │ │ │ ├── test1147 │ │ │ ├── test1148 │ │ │ ├── test1149 │ │ │ ├── test115 │ │ │ ├── test1150 │ │ │ ├── test1151 │ │ │ ├── test1152 │ │ │ ├── test1153 │ │ │ ├── test1154 │ │ │ ├── test1155 │ │ │ ├── test116 │ │ │ ├── test1160 │ │ │ ├── test1161 │ │ │ ├── test1162 │ │ │ ├── test1163 │ │ │ ├── test1164 │ │ │ ├── test117 │ │ │ ├── test1170 │ │ │ ├── test1171 │ │ │ ├── test118 │ │ │ ├── test119 │ │ │ ├── test12 │ │ │ ├── test120 │ │ │ ├── test1200 │ │ │ ├── test1201 │ │ │ ├── test1202 │ │ │ ├── test1203 │ │ │ ├── test1204 │ │ │ ├── test1205 │ │ │ ├── test1206 │ │ │ ├── test1207 │ │ │ ├── test1208 │ │ │ ├── test1209 │ │ │ ├── test121 │ │ │ ├── test1210 │ │ │ ├── test1211 │ │ │ ├── test1212 │ │ │ ├── test1213 │ │ │ ├── test1214 │ │ │ ├── test1215 │ │ │ ├── test1216 │ │ │ ├── test1217 │ │ │ ├── test1218 │ │ │ ├── test1219 │ │ │ ├── test122 │ │ │ ├── test1220 │ │ │ ├── test1221 │ │ │ ├── test1222 │ │ │ ├── test1223 │ │ │ ├── test1224 │ │ │ ├── test1225 │ │ │ ├── test1226 │ │ │ ├── test1227 │ │ │ ├── test1228 │ │ │ ├── test1229 │ │ │ ├── test123 │ │ │ ├── test1230 │ │ │ ├── test1231 │ │ │ ├── test1232 │ │ │ ├── test1233 │ │ │ ├── test1234 │ │ │ ├── test1235 │ │ │ ├── test1236 │ │ │ ├── test1237 │ │ │ ├── test1238 │ │ │ ├── test1239 │ │ │ ├── test124 │ │ │ ├── test1240 │ │ │ ├── test1241 │ │ │ ├── test1242 │ │ │ ├── test1243 │ │ │ ├── test1244 │ │ │ ├── test1245 │ │ │ ├── test1246 │ │ │ ├── test1247 │ │ │ ├── test1248 │ │ │ ├── test1249 │ │ │ ├── test125 │ │ │ ├── test1250 │ │ │ ├── test1251 │ │ │ ├── test1252 │ │ │ ├── test1253 │ │ │ ├── test1254 │ │ │ ├── test1255 │ │ │ ├── test1256 │ │ │ ├── test1257 │ │ │ ├── test1258 │ │ │ ├── test1259 │ │ │ ├── test126 │ │ │ ├── test1260 │ │ │ ├── test1261 │ │ │ ├── test1262 │ │ │ ├── test1263 │ │ │ ├── test1264 │ │ │ ├── test1265 │ │ │ ├── test127 │ │ │ ├── test128 │ │ │ ├── test1280 │ │ │ ├── test1281 │ │ │ ├── test1282 │ │ │ ├── test1283 │ │ │ ├── test1284 │ │ │ ├── test1285 │ │ │ ├── test1286 │ │ │ ├── test1287 │ │ │ ├── test1288 │ │ │ ├── test1289 │ │ │ ├── test129 │ │ │ ├── test1290 │ │ │ ├── test1291 │ │ │ ├── test1292 │ │ │ ├── test1298 │ │ │ ├── test1299 │ │ │ ├── test13 │ │ │ ├── test130 │ │ │ ├── test1300 │ │ │ ├── test1301 │ │ │ ├── test1302 │ │ │ ├── test1303 │ │ │ ├── test1304 │ │ │ ├── test1305 │ │ │ ├── test1306 │ │ │ ├── test1307 │ │ │ ├── test1308 │ │ │ ├── test1309 │ │ │ ├── test131 │ │ │ ├── test1310 │ │ │ ├── test1311 │ │ │ ├── test1312 │ │ │ ├── test1313 │ │ │ ├── test1314 │ │ │ ├── test1315 │ │ │ ├── test1316 │ │ │ ├── test1317 │ │ │ ├── test1318 │ │ │ ├── test1319 │ │ │ ├── test132 │ │ │ ├── test1320 │ │ │ ├── test1321 │ │ │ ├── test1322 │ │ │ ├── test1323 │ │ │ ├── test1324 │ │ │ ├── test1325 │ │ │ ├── test1326 │ │ │ ├── test1327 │ │ │ ├── test1328 │ │ │ ├── test1329 │ │ │ ├── test133 │ │ │ ├── test1330 │ │ │ ├── test1331 │ │ │ ├── test1332 │ │ │ ├── test1333 │ │ │ ├── test1334 │ │ │ ├── test1335 │ │ │ ├── test1336 │ │ │ ├── test1337 │ │ │ ├── test1338 │ │ │ ├── test1339 │ │ │ ├── test134 │ │ │ ├── test1340 │ │ │ ├── test1341 │ │ │ ├── test1342 │ │ │ ├── test1343 │ │ │ ├── test1344 │ │ │ ├── test1345 │ │ │ ├── test1346 │ │ │ ├── test1347 │ │ │ ├── test1348 │ │ │ ├── test1349 │ │ │ ├── test135 │ │ │ ├── test1350 │ │ │ ├── test1351 │ │ │ ├── test1352 │ │ │ ├── test1353 │ │ │ ├── test1354 │ │ │ ├── test1355 │ │ │ ├── test1356 │ │ │ ├── test1357 │ │ │ ├── test1358 │ │ │ ├── test1359 │ │ │ ├── test136 │ │ │ ├── test1360 │ │ │ ├── test1361 │ │ │ ├── test1362 │ │ │ ├── test1363 │ │ │ ├── test1364 │ │ │ ├── test1365 │ │ │ ├── test1366 │ │ │ ├── test1367 │ │ │ ├── test1368 │ │ │ ├── test1369 │ │ │ ├── test137 │ │ │ ├── test1370 │ │ │ ├── test1371 │ │ │ ├── test1372 │ │ │ ├── test1373 │ │ │ ├── test1374 │ │ │ ├── test1375 │ │ │ ├── test1376 │ │ │ ├── test1377 │ │ │ ├── test1378 │ │ │ ├── test1379 │ │ │ ├── test138 │ │ │ ├── test1380 │ │ │ ├── test1381 │ │ │ ├── test1382 │ │ │ ├── test1383 │ │ │ ├── test1384 │ │ │ ├── test1385 │ │ │ ├── test1386 │ │ │ ├── test1387 │ │ │ ├── test1388 │ │ │ ├── test1389 │ │ │ ├── test139 │ │ │ ├── test1390 │ │ │ ├── test1391 │ │ │ ├── test1392 │ │ │ ├── test1393 │ │ │ ├── test1394 │ │ │ ├── test1395 │ │ │ ├── test1396 │ │ │ ├── test1397 │ │ │ ├── test1398 │ │ │ ├── test1399 │ │ │ ├── test14 │ │ │ ├── test140 │ │ │ ├── test1400 │ │ │ ├── test1401 │ │ │ ├── test1402 │ │ │ ├── test1403 │ │ │ ├── test1404 │ │ │ ├── test1405 │ │ │ ├── test1406 │ │ │ ├── test1407 │ │ │ ├── test1408 │ │ │ ├── test1409 │ │ │ ├── test141 │ │ │ ├── test1410 │ │ │ ├── test1411 │ │ │ ├── test1412 │ │ │ ├── test1413 │ │ │ ├── test1414 │ │ │ ├── test1415 │ │ │ ├── test1416 │ │ │ ├── test1417 │ │ │ ├── test1418 │ │ │ ├── test1419 │ │ │ ├── test142 │ │ │ ├── test1420 │ │ │ ├── test1421 │ │ │ ├── test1422 │ │ │ ├── test1423 │ │ │ ├── test1424 │ │ │ ├── test1425 │ │ │ ├── test1426 │ │ │ ├── test1427 │ │ │ ├── test1428 │ │ │ ├── test1429 │ │ │ ├── test143 │ │ │ ├── test1430 │ │ │ ├── test1431 │ │ │ ├── test1432 │ │ │ ├── test1433 │ │ │ ├── test1434 │ │ │ ├── test1435 │ │ │ ├── test1436 │ │ │ ├── test1437 │ │ │ ├── test1438 │ │ │ ├── test1439 │ │ │ ├── test144 │ │ │ ├── test1440 │ │ │ ├── test1441 │ │ │ ├── test1442 │ │ │ ├── test1443 │ │ │ ├── test1444 │ │ │ ├── test1445 │ │ │ ├── test1446 │ │ │ ├── test1447 │ │ │ ├── test1448 │ │ │ ├── test1449 │ │ │ ├── test145 │ │ │ ├── test1450 │ │ │ ├── test1451 │ │ │ ├── test1452 │ │ │ ├── test1453 │ │ │ ├── test1454 │ │ │ ├── test1455 │ │ │ ├── test1456 │ │ │ ├── test146 │ │ │ ├── test147 │ │ │ ├── test148 │ │ │ ├── test149 │ │ │ ├── test15 │ │ │ ├── test150 │ │ │ ├── test1500 │ │ │ ├── test1501 │ │ │ ├── test1502 │ │ │ ├── test1503 │ │ │ ├── test1504 │ │ │ ├── test1505 │ │ │ ├── test1506 │ │ │ ├── test1507 │ │ │ ├── test1508 │ │ │ ├── test1509 │ │ │ ├── test151 │ │ │ ├── test1510 │ │ │ ├── test1511 │ │ │ ├── test1512 │ │ │ ├── test1513 │ │ │ ├── test1514 │ │ │ ├── test1515 │ │ │ ├── test1516 │ │ │ ├── test1517 │ │ │ ├── test152 │ │ │ ├── test1520 │ │ │ ├── test1521 │ │ │ ├── test1525 │ │ │ ├── test1526 │ │ │ ├── test1527 │ │ │ ├── test1528 │ │ │ ├── test1529 │ │ │ ├── test153 │ │ │ ├── test1530 │ │ │ ├── test1531 │ │ │ ├── test1532 │ │ │ ├── test1533 │ │ │ ├── test1534 │ │ │ ├── test1535 │ │ │ ├── test1536 │ │ │ ├── test1537 │ │ │ ├── test1538 │ │ │ ├── test154 │ │ │ ├── test1540 │ │ │ ├── test155 │ │ │ ├── test1550 │ │ │ ├── test1551 │ │ │ ├── test1552 │ │ │ ├── test1553 │ │ │ ├── test1554 │ │ │ ├── test1555 │ │ │ ├── test1556 │ │ │ ├── test156 │ │ │ ├── test157 │ │ │ ├── test158 │ │ │ ├── test159 │ │ │ ├── test16 │ │ │ ├── test160 │ │ │ ├── test1600 │ │ │ ├── test1601 │ │ │ ├── test1602 │ │ │ ├── test1603 │ │ │ ├── test1604 │ │ │ ├── test1605 │ │ │ ├── test1606 │ │ │ ├── test1607 │ │ │ ├── test1608 │ │ │ ├── test161 │ │ │ ├── test162 │ │ │ ├── test163 │ │ │ ├── test164 │ │ │ ├── test165 │ │ │ ├── test166 │ │ │ ├── test167 │ │ │ ├── test168 │ │ │ ├── test169 │ │ │ ├── test17 │ │ │ ├── test170 │ │ │ ├── test1700 │ │ │ ├── test1701 │ │ │ ├── test1702 │ │ │ ├── test171 │ │ │ ├── test172 │ │ │ ├── test173 │ │ │ ├── test174 │ │ │ ├── test175 │ │ │ ├── test176 │ │ │ ├── test177 │ │ │ ├── test178 │ │ │ ├── test179 │ │ │ ├── test18 │ │ │ ├── test180 │ │ │ ├── test1800 │ │ │ ├── test1801 │ │ │ ├── test181 │ │ │ ├── test182 │ │ │ ├── test183 │ │ │ ├── test184 │ │ │ ├── test185 │ │ │ ├── test186 │ │ │ ├── test187 │ │ │ ├── test188 │ │ │ ├── test189 │ │ │ ├── test19 │ │ │ ├── test190 │ │ │ ├── test1900 │ │ │ ├── test1901 │ │ │ ├── test1902 │ │ │ ├── test1903 │ │ │ ├── test1904 │ │ │ ├── test191 │ │ │ ├── test192 │ │ │ ├── test193 │ │ │ ├── test194 │ │ │ ├── test195 │ │ │ ├── test196 │ │ │ ├── test197 │ │ │ ├── test198 │ │ │ ├── test199 │ │ │ ├── test2 │ │ │ ├── test20 │ │ │ ├── test200 │ │ │ ├── test2000 │ │ │ ├── test2001 │ │ │ ├── test2002 │ │ │ ├── test2003 │ │ │ ├── test2004 │ │ │ ├── test2005 │ │ │ ├── test2006 │ │ │ ├── test2007 │ │ │ ├── test2008 │ │ │ ├── test2009 │ │ │ ├── test201 │ │ │ ├── test2010 │ │ │ ├── test2011 │ │ │ ├── test2012 │ │ │ ├── test2013 │ │ │ ├── test2014 │ │ │ ├── test2015 │ │ │ ├── test2016 │ │ │ ├── test2017 │ │ │ ├── test2018 │ │ │ ├── test2019 │ │ │ ├── test202 │ │ │ ├── test2020 │ │ │ ├── test2021 │ │ │ ├── test2022 │ │ │ ├── test2023 │ │ │ ├── test2024 │ │ │ ├── test2025 │ │ │ ├── test2026 │ │ │ ├── test2027 │ │ │ ├── test2028 │ │ │ ├── test2029 │ │ │ ├── test203 │ │ │ ├── test2030 │ │ │ ├── test2031 │ │ │ ├── test2032 │ │ │ ├── test2033 │ │ │ ├── test2034 │ │ │ ├── test2035 │ │ │ ├── test2036 │ │ │ ├── test2037 │ │ │ ├── test2038 │ │ │ ├── test2039 │ │ │ ├── test204 │ │ │ ├── test2040 │ │ │ ├── test2041 │ │ │ ├── test2042 │ │ │ ├── test2043 │ │ │ ├── test2044 │ │ │ ├── test2045 │ │ │ ├── test2046 │ │ │ ├── test2047 │ │ │ ├── test2048 │ │ │ ├── test2049 │ │ │ ├── test205 │ │ │ ├── test2050 │ │ │ ├── test2051 │ │ │ ├── test2052 │ │ │ ├── test2053 │ │ │ ├── test2054 │ │ │ ├── test2055 │ │ │ ├── test2056 │ │ │ ├── test2057 │ │ │ ├── test2058 │ │ │ ├── test2059 │ │ │ ├── test206 │ │ │ ├── test2060 │ │ │ ├── test2061 │ │ │ ├── test2062 │ │ │ ├── test2063 │ │ │ ├── test2064 │ │ │ ├── test2065 │ │ │ ├── test2066 │ │ │ ├── test2067 │ │ │ ├── test2068 │ │ │ ├── test2069 │ │ │ ├── test207 │ │ │ ├── test2070 │ │ │ ├── test2071 │ │ │ ├── test2072 │ │ │ ├── test2073 │ │ │ ├── test208 │ │ │ ├── test209 │ │ │ ├── test21 │ │ │ ├── test210 │ │ │ ├── test211 │ │ │ ├── test212 │ │ │ ├── test213 │ │ │ ├── test214 │ │ │ ├── test215 │ │ │ ├── test216 │ │ │ ├── test217 │ │ │ ├── test218 │ │ │ ├── test219 │ │ │ ├── test22 │ │ │ ├── test220 │ │ │ ├── test221 │ │ │ ├── test222 │ │ │ ├── test223 │ │ │ ├── test224 │ │ │ ├── test225 │ │ │ ├── test226 │ │ │ ├── test227 │ │ │ ├── test228 │ │ │ ├── test229 │ │ │ ├── test23 │ │ │ ├── test230 │ │ │ ├── test231 │ │ │ ├── test232 │ │ │ ├── test233 │ │ │ ├── test234 │ │ │ ├── test235 │ │ │ ├── test236 │ │ │ ├── test237 │ │ │ ├── test238 │ │ │ ├── test239 │ │ │ ├── test24 │ │ │ ├── test240 │ │ │ ├── test241 │ │ │ ├── test242 │ │ │ ├── test243 │ │ │ ├── test244 │ │ │ ├── test245 │ │ │ ├── test246 │ │ │ ├── test247 │ │ │ ├── test248 │ │ │ ├── test249 │ │ │ ├── test25 │ │ │ ├── test250 │ │ │ ├── test251 │ │ │ ├── test252 │ │ │ ├── test253 │ │ │ ├── test254 │ │ │ ├── test255 │ │ │ ├── test256 │ │ │ ├── test257 │ │ │ ├── test258 │ │ │ ├── test259 │ │ │ ├── test26 │ │ │ ├── test260 │ │ │ ├── test261 │ │ │ ├── test262 │ │ │ ├── test263 │ │ │ ├── test264 │ │ │ ├── test265 │ │ │ ├── test266 │ │ │ ├── test267 │ │ │ ├── test268 │ │ │ ├── test269 │ │ │ ├── test27 │ │ │ ├── test270 │ │ │ ├── test271 │ │ │ ├── test272 │ │ │ ├── test273 │ │ │ ├── test274 │ │ │ ├── test275 │ │ │ ├── test276 │ │ │ ├── test277 │ │ │ ├── test278 │ │ │ ├── test279 │ │ │ ├── test28 │ │ │ ├── test280 │ │ │ ├── test281 │ │ │ ├── test282 │ │ │ ├── test283 │ │ │ ├── test284 │ │ │ ├── test285 │ │ │ ├── test286 │ │ │ ├── test287 │ │ │ ├── test288 │ │ │ ├── test289 │ │ │ ├── test29 │ │ │ ├── test290 │ │ │ ├── test291 │ │ │ ├── test292 │ │ │ ├── test293 │ │ │ ├── test294 │ │ │ ├── test295 │ │ │ ├── test296 │ │ │ ├── test297 │ │ │ ├── test298 │ │ │ ├── test299 │ │ │ ├── test3 │ │ │ ├── test30 │ │ │ ├── test300 │ │ │ ├── test3000 │ │ │ ├── test3001 │ │ │ ├── test301 │ │ │ ├── test302 │ │ │ ├── test303 │ │ │ ├── test304 │ │ │ ├── test305 │ │ │ ├── test306 │ │ │ ├── test307 │ │ │ ├── test308 │ │ │ ├── test309 │ │ │ ├── test31 │ │ │ ├── test310 │ │ │ ├── test311 │ │ │ ├── test312 │ │ │ ├── test313 │ │ │ ├── test314 │ │ │ ├── test315 │ │ │ ├── test316 │ │ │ ├── test317 │ │ │ ├── test318 │ │ │ ├── test319 │ │ │ ├── test32 │ │ │ ├── test320 │ │ │ ├── test321 │ │ │ ├── test322 │ │ │ ├── test323 │ │ │ ├── test324 │ │ │ ├── test325 │ │ │ ├── test326 │ │ │ ├── test33 │ │ │ ├── test34 │ │ │ ├── test340 │ │ │ ├── test35 │ │ │ ├── test350 │ │ │ ├── test351 │ │ │ ├── test352 │ │ │ ├── test353 │ │ │ ├── test354 │ │ │ ├── test36 │ │ │ ├── test37 │ │ │ ├── test38 │ │ │ ├── test39 │ │ │ ├── test393 │ │ │ ├── test394 │ │ │ ├── test395 │ │ │ ├── test4 │ │ │ ├── test40 │ │ │ ├── test400 │ │ │ ├── test401 │ │ │ ├── test402 │ │ │ ├── test403 │ │ │ ├── test404 │ │ │ ├── test405 │ │ │ ├── test406 │ │ │ ├── test407 │ │ │ ├── test408 │ │ │ ├── test409 │ │ │ ├── test41 │ │ │ ├── test42 │ │ │ ├── test43 │ │ │ ├── test44 │ │ │ ├── test45 │ │ │ ├── test46 │ │ │ ├── test47 │ │ │ ├── test48 │ │ │ ├── test49 │ │ │ ├── test5 │ │ │ ├── test50 │ │ │ ├── test500 │ │ │ ├── test501 │ │ │ ├── test502 │ │ │ ├── test503 │ │ │ ├── test504 │ │ │ ├── test505 │ │ │ ├── test506 │ │ │ ├── test507 │ │ │ ├── test508 │ │ │ ├── test509 │ │ │ ├── test51 │ │ │ ├── test510 │ │ │ ├── test511 │ │ │ ├── test512 │ │ │ ├── test513 │ │ │ ├── test514 │ │ │ ├── test515 │ │ │ ├── test516 │ │ │ ├── test517 │ │ │ ├── test518 │ │ │ ├── test519 │ │ │ ├── test52 │ │ │ ├── test520 │ │ │ ├── test521 │ │ │ ├── test522 │ │ │ ├── test523 │ │ │ ├── test524 │ │ │ ├── test525 │ │ │ ├── test526 │ │ │ ├── test527 │ │ │ ├── test528 │ │ │ ├── test529 │ │ │ ├── test53 │ │ │ ├── test530 │ │ │ ├── test531 │ │ │ ├── test532 │ │ │ ├── test533 │ │ │ ├── test534 │ │ │ ├── test535 │ │ │ ├── test536 │ │ │ ├── test537 │ │ │ ├── test538 │ │ │ ├── test539 │ │ │ ├── test54 │ │ │ ├── test540 │ │ │ ├── test541 │ │ │ ├── test542 │ │ │ ├── test543 │ │ │ ├── test544 │ │ │ ├── test545 │ │ │ ├── test546 │ │ │ ├── test547 │ │ │ ├── test548 │ │ │ ├── test549 │ │ │ ├── test55 │ │ │ ├── test550 │ │ │ ├── test551 │ │ │ ├── test552 │ │ │ ├── test553 │ │ │ ├── test554 │ │ │ ├── test555 │ │ │ ├── test556 │ │ │ ├── test557 │ │ │ ├── test558 │ │ │ ├── test559 │ │ │ ├── test56 │ │ │ ├── test560 │ │ │ ├── test561 │ │ │ ├── test562 │ │ │ ├── test563 │ │ │ ├── test564 │ │ │ ├── test565 │ │ │ ├── test566 │ │ │ ├── test567 │ │ │ ├── test568 │ │ │ ├── test569 │ │ │ ├── test57 │ │ │ ├── test570 │ │ │ ├── test571 │ │ │ ├── test572 │ │ │ ├── test573 │ │ │ ├── test574 │ │ │ ├── test575 │ │ │ ├── test576 │ │ │ ├── test577 │ │ │ ├── test578 │ │ │ ├── test579 │ │ │ ├── test58 │ │ │ ├── test580 │ │ │ ├── test581 │ │ │ ├── test582 │ │ │ ├── test583 │ │ │ ├── test584 │ │ │ ├── test585 │ │ │ ├── test586 │ │ │ ├── test587 │ │ │ ├── test588 │ │ │ ├── test589 │ │ │ ├── test59 │ │ │ ├── test590 │ │ │ ├── test591 │ │ │ ├── test592 │ │ │ ├── test593 │ │ │ ├── test594 │ │ │ ├── test595 │ │ │ ├── test596 │ │ │ ├── test597 │ │ │ ├── test598 │ │ │ ├── test599 │ │ │ ├── test6 │ │ │ ├── test60 │ │ │ ├── test600 │ │ │ ├── test601 │ │ │ ├── test602 │ │ │ ├── test603 │ │ │ ├── test604 │ │ │ ├── test605 │ │ │ ├── test606 │ │ │ ├── test607 │ │ │ ├── test608 │ │ │ ├── test609 │ │ │ ├── test61 │ │ │ ├── test610 │ │ │ ├── test611 │ │ │ ├── test612 │ │ │ ├── test613 │ │ │ ├── test614 │ │ │ ├── test615 │ │ │ ├── test616 │ │ │ ├── test617 │ │ │ ├── test618 │ │ │ ├── test619 │ │ │ ├── test62 │ │ │ ├── test620 │ │ │ ├── test621 │ │ │ ├── test622 │ │ │ ├── test623 │ │ │ ├── test624 │ │ │ ├── test625 │ │ │ ├── test626 │ │ │ ├── test627 │ │ │ ├── test628 │ │ │ ├── test629 │ │ │ ├── test63 │ │ │ ├── test630 │ │ │ ├── test631 │ │ │ ├── test632 │ │ │ ├── test633 │ │ │ ├── test634 │ │ │ ├── test635 │ │ │ ├── test636 │ │ │ ├── test637 │ │ │ ├── test638 │ │ │ ├── test639 │ │ │ ├── test64 │ │ │ ├── test640 │ │ │ ├── test641 │ │ │ ├── test642 │ │ │ ├── test643 │ │ │ ├── test644 │ │ │ ├── test645 │ │ │ ├── test646 │ │ │ ├── test647 │ │ │ ├── test648 │ │ │ ├── test649 │ │ │ ├── test65 │ │ │ ├── test650 │ │ │ ├── test651 │ │ │ ├── test652 │ │ │ ├── test653 │ │ │ ├── test654 │ │ │ ├── test655 │ │ │ ├── test66 │ │ │ ├── test67 │ │ │ ├── test68 │ │ │ ├── test69 │ │ │ ├── test7 │ │ │ ├── test70 │ │ │ ├── test700 │ │ │ ├── test701 │ │ │ ├── test702 │ │ │ ├── test703 │ │ │ ├── test704 │ │ │ ├── test705 │ │ │ ├── test706 │ │ │ ├── test707 │ │ │ ├── test708 │ │ │ ├── test709 │ │ │ ├── test71 │ │ │ ├── test710 │ │ │ ├── test711 │ │ │ ├── test712 │ │ │ ├── test713 │ │ │ ├── test714 │ │ │ ├── test715 │ │ │ ├── test72 │ │ │ ├── test73 │ │ │ ├── test74 │ │ │ ├── test75 │ │ │ ├── test76 │ │ │ ├── test77 │ │ │ ├── test78 │ │ │ ├── test79 │ │ │ ├── test8 │ │ │ ├── test80 │ │ │ ├── test800 │ │ │ ├── test801 │ │ │ ├── test802 │ │ │ ├── test803 │ │ │ ├── test804 │ │ │ ├── test805 │ │ │ ├── test806 │ │ │ ├── test807 │ │ │ ├── test808 │ │ │ ├── test809 │ │ │ ├── test81 │ │ │ ├── test810 │ │ │ ├── test811 │ │ │ ├── test812 │ │ │ ├── test813 │ │ │ ├── test814 │ │ │ ├── test815 │ │ │ ├── test816 │ │ │ ├── test817 │ │ │ ├── test818 │ │ │ ├── test819 │ │ │ ├── test82 │ │ │ ├── test820 │ │ │ ├── test821 │ │ │ ├── test822 │ │ │ ├── test823 │ │ │ ├── test824 │ │ │ ├── test825 │ │ │ ├── test826 │ │ │ ├── test827 │ │ │ ├── test828 │ │ │ ├── test829 │ │ │ ├── test83 │ │ │ ├── test830 │ │ │ ├── test831 │ │ │ ├── test832 │ │ │ ├── test833 │ │ │ ├── test834 │ │ │ ├── test835 │ │ │ ├── test836 │ │ │ ├── test837 │ │ │ ├── test838 │ │ │ ├── test839 │ │ │ ├── test84 │ │ │ ├── test840 │ │ │ ├── test841 │ │ │ ├── test842 │ │ │ ├── test843 │ │ │ ├── test844 │ │ │ ├── test845 │ │ │ ├── test846 │ │ │ ├── test85 │ │ │ ├── test850 │ │ │ ├── test851 │ │ │ ├── test852 │ │ │ ├── test853 │ │ │ ├── test854 │ │ │ ├── test855 │ │ │ ├── test856 │ │ │ ├── test857 │ │ │ ├── test858 │ │ │ ├── test859 │ │ │ ├── test86 │ │ │ ├── test860 │ │ │ ├── test861 │ │ │ ├── test862 │ │ │ ├── test863 │ │ │ ├── test864 │ │ │ ├── test865 │ │ │ ├── test866 │ │ │ ├── test867 │ │ │ ├── test868 │ │ │ ├── test869 │ │ │ ├── test87 │ │ │ ├── test870 │ │ │ ├── test871 │ │ │ ├── test872 │ │ │ ├── test873 │ │ │ ├── test874 │ │ │ ├── test875 │ │ │ ├── test876 │ │ │ ├── test877 │ │ │ ├── test878 │ │ │ ├── test879 │ │ │ ├── test88 │ │ │ ├── test880 │ │ │ ├── test881 │ │ │ ├── test882 │ │ │ ├── test883 │ │ │ ├── test884 │ │ │ ├── test885 │ │ │ ├── test886 │ │ │ ├── test887 │ │ │ ├── test888 │ │ │ ├── test889 │ │ │ ├── test89 │ │ │ ├── test890 │ │ │ ├── test891 │ │ │ ├── test9 │ │ │ ├── test90 │ │ │ ├── test900 │ │ │ ├── test901 │ │ │ ├── test902 │ │ │ ├── test903 │ │ │ ├── test904 │ │ │ ├── test905 │ │ │ ├── test906 │ │ │ ├── test907 │ │ │ ├── test908 │ │ │ ├── test909 │ │ │ ├── test91 │ │ │ ├── test910 │ │ │ ├── test911 │ │ │ ├── test912 │ │ │ ├── test913 │ │ │ ├── test914 │ │ │ ├── test915 │ │ │ ├── test916 │ │ │ ├── test917 │ │ │ ├── test918 │ │ │ ├── test919 │ │ │ ├── test92 │ │ │ ├── test920 │ │ │ ├── test921 │ │ │ ├── test922 │ │ │ ├── test923 │ │ │ ├── test924 │ │ │ ├── test925 │ │ │ ├── test926 │ │ │ ├── test927 │ │ │ ├── test928 │ │ │ ├── test929 │ │ │ ├── test93 │ │ │ ├── test930 │ │ │ ├── test931 │ │ │ ├── test932 │ │ │ ├── test933 │ │ │ ├── test934 │ │ │ ├── test935 │ │ │ ├── test936 │ │ │ ├── test937 │ │ │ ├── test938 │ │ │ ├── test939 │ │ │ ├── test94 │ │ │ ├── test940 │ │ │ ├── test941 │ │ │ ├── test942 │ │ │ ├── test943 │ │ │ ├── test944 │ │ │ ├── test945 │ │ │ ├── test946 │ │ │ ├── test947 │ │ │ ├── test948 │ │ │ ├── test949 │ │ │ ├── test95 │ │ │ ├── test950 │ │ │ ├── test951 │ │ │ ├── test952 │ │ │ ├── test96 │ │ │ ├── test97 │ │ │ ├── test98 │ │ │ └── test99 │ │ ├── dictserver.py │ │ ├── directories.pm │ │ ├── extern-scan.pl │ │ ├── ftp.pm │ │ ├── ftpserver.pl │ │ ├── getpart.pm │ │ ├── http2-server.pl │ │ ├── http_pipe.py │ │ ├── httpserver.pl │ │ ├── libtest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── chkhostname.c │ │ │ ├── first.c │ │ │ ├── lib1500.c │ │ │ ├── lib1501.c │ │ │ ├── lib1502.c │ │ │ ├── lib1506.c │ │ │ ├── lib1507.c │ │ │ ├── lib1508.c │ │ │ ├── lib1509.c │ │ │ ├── lib1510.c │ │ │ ├── lib1511.c │ │ │ ├── lib1512.c │ │ │ ├── lib1513.c │ │ │ ├── lib1514.c │ │ │ ├── lib1515.c │ │ │ ├── lib1517.c │ │ │ ├── lib1520.c │ │ │ ├── lib1521.c │ │ │ ├── lib1525.c │ │ │ ├── lib1526.c │ │ │ ├── lib1527.c │ │ │ ├── lib1528.c │ │ │ ├── lib1529.c │ │ │ ├── lib1530.c │ │ │ ├── lib1531.c │ │ │ ├── lib1532.c │ │ │ ├── lib1533.c │ │ │ ├── lib1534.c │ │ │ ├── lib1535.c │ │ │ ├── lib1536.c │ │ │ ├── lib1537.c │ │ │ ├── lib1538.c │ │ │ ├── lib1540.c │ │ │ ├── lib1550.c │ │ │ ├── lib1551.c │ │ │ ├── lib1552.c │ │ │ ├── lib1553.c │ │ │ ├── lib1554.c │ │ │ ├── lib1555.c │ │ │ ├── lib1556.c │ │ │ ├── lib1900.c │ │ │ ├── lib500.c │ │ │ ├── lib501.c │ │ │ ├── lib502.c │ │ │ ├── lib503.c │ │ │ ├── lib504.c │ │ │ ├── lib505.c │ │ │ ├── lib506.c │ │ │ ├── lib507.c │ │ │ ├── lib508.c │ │ │ ├── lib509.c │ │ │ ├── lib510.c │ │ │ ├── lib511.c │ │ │ ├── lib512.c │ │ │ ├── lib513.c │ │ │ ├── lib514.c │ │ │ ├── lib515.c │ │ │ ├── lib516.c │ │ │ ├── lib517.c │ │ │ ├── lib518.c │ │ │ ├── lib519.c │ │ │ ├── lib520.c │ │ │ ├── lib521.c │ │ │ ├── lib523.c │ │ │ ├── lib524.c │ │ │ ├── lib525.c │ │ │ ├── lib526.c │ │ │ ├── lib530.c │ │ │ ├── lib533.c │ │ │ ├── lib536.c │ │ │ ├── lib537.c │ │ │ ├── lib539.c │ │ │ ├── lib540.c │ │ │ ├── lib541.c │ │ │ ├── lib542.c │ │ │ ├── lib543.c │ │ │ ├── lib544.c │ │ │ ├── lib547.c │ │ │ ├── lib549.c │ │ │ ├── lib552.c │ │ │ ├── lib553.c │ │ │ ├── lib554.c │ │ │ ├── lib555.c │ │ │ ├── lib556.c │ │ │ ├── lib557.c │ │ │ ├── lib558.c │ │ │ ├── lib559.c │ │ │ ├── lib560.c │ │ │ ├── lib562.c │ │ │ ├── lib564.c │ │ │ ├── lib566.c │ │ │ ├── lib567.c │ │ │ ├── lib568.c │ │ │ ├── lib569.c │ │ │ ├── lib570.c │ │ │ ├── lib571.c │ │ │ ├── lib572.c │ │ │ ├── lib573.c │ │ │ ├── lib574.c │ │ │ ├── lib575.c │ │ │ ├── lib576.c │ │ │ ├── lib578.c │ │ │ ├── lib579.c │ │ │ ├── lib582.c │ │ │ ├── lib583.c │ │ │ ├── lib586.c │ │ │ ├── lib589.c │ │ │ ├── lib590.c │ │ │ ├── lib591.c │ │ │ ├── lib597.c │ │ │ ├── lib598.c │ │ │ ├── lib599.c │ │ │ ├── lib643.c │ │ │ ├── lib650.c │ │ │ ├── lib651.c │ │ │ ├── lib652.c │ │ │ ├── lib653.c │ │ │ ├── lib654.c │ │ │ ├── lib655.c │ │ │ ├── libauthretry.c │ │ │ ├── libntlmconnect.c │ │ │ ├── mk-lib1521.pl │ │ │ ├── notexists.pl │ │ │ ├── sethostname.c │ │ │ ├── sethostname.h │ │ │ ├── stub_gssapi.c │ │ │ ├── stub_gssapi.h │ │ │ ├── test.h │ │ │ ├── test1013.pl │ │ │ ├── test1022.pl │ │ │ ├── test307.pl │ │ │ ├── test610.pl │ │ │ ├── test613.pl │ │ │ ├── test75.pl │ │ │ ├── testtrace.c │ │ │ ├── testtrace.h │ │ │ ├── testutil.c │ │ │ └── testutil.h │ │ ├── manpage-scan.pl │ │ ├── mem-include-scan.pl │ │ ├── memanalyze.pl │ │ ├── negtelnetserver.py │ │ ├── nroff-scan.pl │ │ ├── pathhelp.pm │ │ ├── python_dependencies │ │ │ └── impacket │ │ │ │ ├── __init__.py │ │ │ │ ├── nmb.py │ │ │ │ ├── nt_errors.py │ │ │ │ ├── ntlm.py │ │ │ │ ├── smb.py │ │ │ │ ├── smb3.py │ │ │ │ ├── smb3structs.py │ │ │ │ ├── smbserver.py │ │ │ │ ├── spnego.py │ │ │ │ ├── structure.py │ │ │ │ ├── uuid.py │ │ │ │ └── version.py │ │ ├── rtspserver.pl │ │ ├── runtests.1 │ │ ├── runtests.pl │ │ ├── secureserver.pl │ │ ├── server │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── base64.pl │ │ │ ├── fake_ntlm.c │ │ │ ├── getpart.c │ │ │ ├── getpart.h │ │ │ ├── resolve.c │ │ │ ├── rtspd.c │ │ │ ├── server_setup.h │ │ │ ├── server_sockaddr.h │ │ │ ├── sockfilt.c │ │ │ ├── sws.c │ │ │ ├── testpart.c │ │ │ ├── tftp.h │ │ │ ├── tftpd.c │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── serverhelp.pm │ │ ├── smbserver.py │ │ ├── sshhelp.pm │ │ ├── sshserver.pl │ │ ├── stunnel.pem │ │ ├── symbol-scan.pl │ │ ├── testcurl.1 │ │ ├── testcurl.pl │ │ ├── tftpserver.pl │ │ ├── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── README │ │ │ ├── curlcheck.h │ │ │ ├── unit1300.c │ │ │ ├── unit1301.c │ │ │ ├── unit1302.c │ │ │ ├── unit1303.c │ │ │ ├── unit1304.c │ │ │ ├── unit1305.c │ │ │ ├── unit1307.c │ │ │ ├── unit1308.c │ │ │ ├── unit1309.c │ │ │ ├── unit1323.c │ │ │ ├── unit1330.c │ │ │ ├── unit1394.c │ │ │ ├── unit1395.c │ │ │ ├── unit1396.c │ │ │ ├── unit1397.c │ │ │ ├── unit1398.c │ │ │ ├── unit1399.c │ │ │ ├── unit1600.c │ │ │ ├── unit1601.c │ │ │ ├── unit1602.c │ │ │ ├── unit1603.c │ │ │ ├── unit1604.c │ │ │ ├── unit1605.c │ │ │ ├── unit1606.c │ │ │ ├── unit1607.c │ │ │ └── unit1608.c │ │ ├── valgrind.pm │ │ └── valgrind.supp │ └── winbuild │ │ ├── BUILD.WINDOWS.txt │ │ ├── Makefile.vc │ │ ├── MakefileBuild.vc │ │ └── gen_resp_file.bat │ ├── directshow │ ├── ReadMe.txt │ └── qedit.h │ ├── ffmpeg │ ├── .gitattributes │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── CREDITS │ ├── Changelog │ ├── INSTALL.md │ ├── LICENSE.md │ ├── MAINTAINERS │ ├── Makefile │ ├── README.md │ ├── RELEASE │ ├── RELEASE_NOTES │ ├── VERSION │ ├── compat │ │ ├── aix │ │ │ └── math.h │ │ ├── atomics │ │ │ ├── dummy │ │ │ │ └── stdatomic.h │ │ │ ├── gcc │ │ │ │ └── stdatomic.h │ │ │ ├── pthread │ │ │ │ ├── stdatomic.c │ │ │ │ └── stdatomic.h │ │ │ ├── suncc │ │ │ │ └── stdatomic.h │ │ │ └── win32 │ │ │ │ └── stdatomic.h │ │ ├── avisynth │ │ │ ├── avisynth_c.h │ │ │ ├── avs │ │ │ │ ├── capi.h │ │ │ │ ├── config.h │ │ │ │ └── types.h │ │ │ ├── avxsynth_c.h │ │ │ └── windowsPorts │ │ │ │ ├── basicDataTypeConversions.h │ │ │ │ └── windows2linux.h │ │ ├── cuda │ │ │ ├── dynlink_cuda.h │ │ │ ├── dynlink_cuviddec.h │ │ │ ├── dynlink_loader.h │ │ │ ├── dynlink_nvcuvid.h │ │ │ └── ptx2c.sh │ │ ├── dispatch_semaphore │ │ │ └── semaphore.h │ │ ├── float │ │ │ ├── float.h │ │ │ └── limits.h │ │ ├── getopt.c │ │ ├── msvcrt │ │ │ ├── snprintf.c │ │ │ └── snprintf.h │ │ ├── nvenc │ │ │ └── nvEncodeAPI.h │ │ ├── os2threads.h │ │ ├── solaris │ │ │ └── make_sunver.pl │ │ ├── strtod.c │ │ ├── tms470 │ │ │ └── math.h │ │ ├── va_copy.h │ │ ├── w32dlfcn.h │ │ ├── w32pthreads.h │ │ └── windows │ │ │ ├── makedef │ │ │ └── mslink │ ├── configure │ ├── doc │ │ ├── APIchanges │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── authors.texi │ │ ├── bitstream_filters.texi │ │ ├── bootstrap.min.css │ │ ├── build_system.txt │ │ ├── codecs.texi │ │ ├── decoders.texi │ │ ├── default.css │ │ ├── demuxers.texi │ │ ├── developer.texi │ │ ├── devices.texi │ │ ├── doxy-wrapper.sh │ │ ├── encoders.texi │ │ ├── errno.txt │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── Makefile.example │ │ │ ├── README │ │ │ ├── avio_dir_cmd.c │ │ │ ├── avio_reading.c │ │ │ ├── decode_audio.c │ │ │ ├── decode_video.c │ │ │ ├── demuxing_decoding.c │ │ │ ├── encode_audio.c │ │ │ ├── encode_video.c │ │ │ ├── extract_mvs.c │ │ │ ├── filter_audio.c │ │ │ ├── filtering_audio.c │ │ │ ├── filtering_video.c │ │ │ ├── http_multiclient.c │ │ │ ├── hw_decode.c │ │ │ ├── metadata.c │ │ │ ├── muxing.c │ │ │ ├── qsvdec.c │ │ │ ├── remuxing.c │ │ │ ├── resampling_audio.c │ │ │ ├── scaling_video.c │ │ │ ├── transcode_aac.c │ │ │ └── transcoding.c │ │ ├── faq.texi │ │ ├── fate.texi │ │ ├── fate_config.sh.template │ │ ├── ffmpeg-bitstream-filters.texi │ │ ├── ffmpeg-codecs.texi │ │ ├── ffmpeg-devices.texi │ │ ├── ffmpeg-filters.texi │ │ ├── ffmpeg-formats.texi │ │ ├── ffmpeg-protocols.texi │ │ ├── ffmpeg-resampler.texi │ │ ├── ffmpeg-scaler.texi │ │ ├── ffmpeg-utils.texi │ │ ├── ffmpeg.texi │ │ ├── ffmpeg.txt │ │ ├── ffplay.texi │ │ ├── ffprobe.texi │ │ ├── ffprobe.xsd │ │ ├── ffserver.conf │ │ ├── ffserver.texi │ │ ├── fftools-common-opts.texi │ │ ├── filter_design.txt │ │ ├── filters.texi │ │ ├── formats.texi │ │ ├── general.texi │ │ ├── git-howto.texi │ │ ├── indevs.texi │ │ ├── issue_tracker.txt │ │ ├── lexicon │ │ ├── libav-merge.txt │ │ ├── libavcodec.texi │ │ ├── libavdevice.texi │ │ ├── libavfilter.texi │ │ ├── libavformat.texi │ │ ├── libavutil.texi │ │ ├── libswresample.texi │ │ ├── libswscale.texi │ │ ├── mailing-list-faq.texi │ │ ├── metadata.texi │ │ ├── mips.txt │ │ ├── multithreading.txt │ │ ├── muxers.texi │ │ ├── nut.texi │ │ ├── optimization.txt │ │ ├── outdevs.texi │ │ ├── patchwork │ │ ├── platform.texi │ │ ├── print_options.c │ │ ├── protocols.texi │ │ ├── rate_distortion.txt │ │ ├── resampler.texi │ │ ├── scaler.texi │ │ ├── snow.txt │ │ ├── style.min.css │ │ ├── swresample.txt │ │ ├── swscale.txt │ │ ├── t2h.init │ │ ├── t2h.pm │ │ ├── tablegen.txt │ │ ├── texi2pod.pl │ │ ├── texidep.pl │ │ ├── undefined.txt │ │ ├── utils.texi │ │ └── writing_filters.txt │ ├── ffbuild │ │ ├── arch.mak │ │ ├── common.mak │ │ ├── library.mak │ │ ├── libversion.sh │ │ ├── pkgconfig_generate.sh │ │ └── version.sh │ ├── fftools │ │ ├── Makefile │ │ ├── cmdutils.c │ │ ├── cmdutils.h │ │ ├── cmdutils_opencl.c │ │ ├── ffmpeg.c │ │ ├── ffmpeg.h │ │ ├── ffmpeg_cuvid.c │ │ ├── ffmpeg_filter.c │ │ ├── ffmpeg_hw.c │ │ ├── ffmpeg_opt.c │ │ ├── ffmpeg_qsv.c │ │ ├── ffmpeg_videotoolbox.c │ │ ├── ffplay.c │ │ ├── ffprobe.c │ │ ├── ffserver.c │ │ ├── ffserver_config.c │ │ └── ffserver_config.h │ ├── libavcodec │ │ ├── 012v.c │ │ ├── 4xm.c │ │ ├── 8bps.c │ │ ├── 8svx.c │ │ ├── Makefile │ │ ├── a64colors.h │ │ ├── a64multienc.c │ │ ├── a64tables.h │ │ ├── aac.h │ │ ├── aac_ac3_parser.c │ │ ├── aac_ac3_parser.h │ │ ├── aac_adtstoasc_bsf.c │ │ ├── aac_defines.h │ │ ├── aac_parser.c │ │ ├── aacadtsdec.c │ │ ├── aacadtsdec.h │ │ ├── aaccoder.c │ │ ├── aaccoder_trellis.h │ │ ├── aaccoder_twoloop.h │ │ ├── aacdec.c │ │ ├── aacdec_fixed.c │ │ ├── aacdec_template.c │ │ ├── aacdectab.h │ │ ├── aacenc.c │ │ ├── aacenc.h │ │ ├── aacenc_is.c │ │ ├── aacenc_is.h │ │ ├── aacenc_ltp.c │ │ ├── aacenc_ltp.h │ │ ├── aacenc_pred.c │ │ ├── aacenc_pred.h │ │ ├── aacenc_quantization.h │ │ ├── aacenc_quantization_misc.h │ │ ├── aacenc_tns.c │ │ ├── aacenc_tns.h │ │ ├── aacenc_utils.h │ │ ├── aacenctab.c │ │ ├── aacenctab.h │ │ ├── aacps.c │ │ ├── aacps.h │ │ ├── aacps_fixed.c │ │ ├── aacps_fixed_tablegen.c │ │ ├── aacps_fixed_tablegen.h │ │ ├── aacps_float.c │ │ ├── aacps_tablegen.c │ │ ├── aacps_tablegen.h │ │ ├── aacps_tablegen_template.c │ │ ├── aacpsdata.c │ │ ├── aacpsdsp.h │ │ ├── aacpsdsp_fixed.c │ │ ├── aacpsdsp_float.c │ │ ├── aacpsdsp_template.c │ │ ├── aacpsy.c │ │ ├── aacsbr.c │ │ ├── aacsbr.h │ │ ├── aacsbr_fixed.c │ │ ├── aacsbr_fixed_tablegen.h │ │ ├── aacsbr_tablegen.h │ │ ├── aacsbr_tablegen_common.h │ │ ├── aacsbr_template.c │ │ ├── aacsbrdata.h │ │ ├── aactab.c │ │ ├── aactab.h │ │ ├── aandcttab.c │ │ ├── aandcttab.h │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── aacpsdsp_init_aarch64.c │ │ │ ├── aacpsdsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── cabac.h │ │ │ ├── fft_init_aarch64.c │ │ │ ├── fft_neon.S │ │ │ ├── fmtconvert_init.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── h264chroma_init_aarch64.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_aarch64.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init.c │ │ │ ├── h264pred_neon.S │ │ │ ├── h264qpel_init_aarch64.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hpeldsp_init_aarch64.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── idct.h │ │ │ ├── idctdsp_init_aarch64.c │ │ │ ├── mdct_neon.S │ │ │ ├── mpegaudiodsp_init.c │ │ │ ├── mpegaudiodsp_neon.S │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── rv40dsp_init_aarch64.c │ │ │ ├── sbrdsp_init_aarch64.c │ │ │ ├── sbrdsp_neon.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── synth_filter_init.c │ │ │ ├── synth_filter_neon.S │ │ │ ├── vc1dsp_init_aarch64.c │ │ │ ├── videodsp.S │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp_init.c │ │ │ ├── vorbisdsp_neon.S │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp_aarch64.c │ │ │ ├── vp9dsp_init_12bpp_aarch64.c │ │ │ ├── vp9dsp_init_16bpp_aarch64_template.c │ │ │ ├── vp9dsp_init_aarch64.c │ │ │ ├── vp9itxfm_16bpp_neon.S │ │ │ ├── vp9itxfm_neon.S │ │ │ ├── vp9lpf_16bpp_neon.S │ │ │ ├── vp9lpf_neon.S │ │ │ ├── vp9mc_16bpp_neon.S │ │ │ └── vp9mc_neon.S │ │ ├── aasc.c │ │ ├── ac3.c │ │ ├── ac3.h │ │ ├── ac3_parser.c │ │ ├── ac3_parser.h │ │ ├── ac3dec.c │ │ ├── ac3dec.h │ │ ├── ac3dec_data.c │ │ ├── ac3dec_data.h │ │ ├── ac3dec_fixed.c │ │ ├── ac3dec_float.c │ │ ├── ac3dsp.c │ │ ├── ac3dsp.h │ │ ├── ac3enc.c │ │ ├── ac3enc.h │ │ ├── ac3enc_fixed.c │ │ ├── ac3enc_float.c │ │ ├── ac3enc_opts_template.c │ │ ├── ac3enc_template.c │ │ ├── ac3tab.c │ │ ├── ac3tab.h │ │ ├── acelp_filters.c │ │ ├── acelp_filters.h │ │ ├── acelp_pitch_delay.c │ │ ├── acelp_pitch_delay.h │ │ ├── acelp_vectors.c │ │ ├── acelp_vectors.h │ │ ├── adpcm.c │ │ ├── adpcm.h │ │ ├── adpcm_data.c │ │ ├── adpcm_data.h │ │ ├── adpcmenc.c │ │ ├── adx.c │ │ ├── adx.h │ │ ├── adx_parser.c │ │ ├── adxdec.c │ │ ├── adxenc.c │ │ ├── aic.c │ │ ├── alac.c │ │ ├── alac_data.c │ │ ├── alac_data.h │ │ ├── alacdsp.c │ │ ├── alacdsp.h │ │ ├── alacenc.c │ │ ├── aliaspixdec.c │ │ ├── aliaspixenc.c │ │ ├── allcodecs.c │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── blockdsp_alpha.c │ │ │ ├── hpeldsp_alpha.c │ │ │ ├── hpeldsp_alpha.h │ │ │ ├── hpeldsp_alpha_asm.S │ │ │ ├── idctdsp_alpha.c │ │ │ ├── idctdsp_alpha.h │ │ │ ├── idctdsp_alpha_asm.S │ │ │ ├── me_cmp_alpha.c │ │ │ ├── me_cmp_mvi_asm.S │ │ │ ├── mpegvideo_alpha.c │ │ │ ├── pixblockdsp_alpha.c │ │ │ ├── regdef.h │ │ │ └── simple_idct_alpha.c │ │ ├── alsdec.c │ │ ├── amr.h │ │ ├── amrnbdata.h │ │ ├── amrnbdec.c │ │ ├── amrwbdata.h │ │ ├── amrwbdec.c │ │ ├── anm.c │ │ ├── ansi.c │ │ ├── apedec.c │ │ ├── apng.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── aac.h │ │ │ ├── aacpsdsp_init_arm.c │ │ │ ├── aacpsdsp_neon.S │ │ │ ├── ac3dsp_arm.S │ │ │ ├── ac3dsp_armv6.S │ │ │ ├── ac3dsp_init_arm.c │ │ │ ├── ac3dsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── audiodsp_arm.h │ │ │ ├── audiodsp_init_arm.c │ │ │ ├── audiodsp_init_neon.c │ │ │ ├── audiodsp_neon.S │ │ │ ├── blockdsp_arm.h │ │ │ ├── blockdsp_init_arm.c │ │ │ ├── blockdsp_init_neon.c │ │ │ ├── blockdsp_neon.S │ │ │ ├── cabac.h │ │ │ ├── dca.h │ │ │ ├── fft_fixed_init_arm.c │ │ │ ├── fft_fixed_neon.S │ │ │ ├── fft_init_arm.c │ │ │ ├── fft_neon.S │ │ │ ├── fft_vfp.S │ │ │ ├── flacdsp_arm.S │ │ │ ├── flacdsp_init_arm.c │ │ │ ├── fmtconvert_init_arm.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── fmtconvert_vfp.S │ │ │ ├── g722dsp_init_arm.c │ │ │ ├── g722dsp_neon.S │ │ │ ├── h264chroma_init_arm.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_arm.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init_arm.c │ │ │ ├── h264pred_neon.S │ │ │ ├── h264qpel_init_arm.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hevcdsp_arm.h │ │ │ ├── hevcdsp_deblock_neon.S │ │ │ ├── hevcdsp_idct_neon.S │ │ │ ├── hevcdsp_init_arm.c │ │ │ ├── hevcdsp_init_neon.c │ │ │ ├── hevcdsp_qpel_neon.S │ │ │ ├── hpeldsp_arm.S │ │ │ ├── hpeldsp_arm.h │ │ │ ├── hpeldsp_armv6.S │ │ │ ├── hpeldsp_init_arm.c │ │ │ ├── hpeldsp_init_armv6.c │ │ │ ├── hpeldsp_init_neon.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── idct.h │ │ │ ├── idctdsp_arm.S │ │ │ ├── idctdsp_arm.h │ │ │ ├── idctdsp_armv6.S │ │ │ ├── idctdsp_init_arm.c │ │ │ ├── idctdsp_init_armv5te.c │ │ │ ├── idctdsp_init_armv6.c │ │ │ ├── idctdsp_init_neon.c │ │ │ ├── idctdsp_neon.S │ │ │ ├── int_neon.S │ │ │ ├── jrevdct_arm.S │ │ │ ├── lossless_audiodsp_init_arm.c │ │ │ ├── lossless_audiodsp_neon.S │ │ │ ├── mathops.h │ │ │ ├── mdct_fixed_neon.S │ │ │ ├── mdct_neon.S │ │ │ ├── mdct_vfp.S │ │ │ ├── me_cmp_armv6.S │ │ │ ├── me_cmp_init_arm.c │ │ │ ├── mlpdsp_armv5te.S │ │ │ ├── mlpdsp_armv6.S │ │ │ ├── mlpdsp_init_arm.c │ │ │ ├── mpegaudiodsp_fixed_armv6.S │ │ │ ├── mpegaudiodsp_init_arm.c │ │ │ ├── mpegvideo_arm.c │ │ │ ├── mpegvideo_arm.h │ │ │ ├── mpegvideo_armv5te.c │ │ │ ├── mpegvideo_armv5te_s.S │ │ │ ├── mpegvideo_neon.S │ │ │ ├── mpegvideoencdsp_armv6.S │ │ │ ├── mpegvideoencdsp_init_arm.c │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── pixblockdsp_armv6.S │ │ │ ├── pixblockdsp_init_arm.c │ │ │ ├── rdft_init_arm.c │ │ │ ├── rdft_neon.S │ │ │ ├── rv34dsp_init_arm.c │ │ │ ├── rv34dsp_neon.S │ │ │ ├── rv40dsp_init_arm.c │ │ │ ├── rv40dsp_neon.S │ │ │ ├── sbrdsp_init_arm.c │ │ │ ├── sbrdsp_neon.S │ │ │ ├── simple_idct_arm.S │ │ │ ├── simple_idct_armv5te.S │ │ │ ├── simple_idct_armv6.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── startcode.h │ │ │ ├── startcode_armv6.S │ │ │ ├── synth_filter_init_arm.c │ │ │ ├── synth_filter_neon.S │ │ │ ├── synth_filter_vfp.S │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init_arm.c │ │ │ ├── vc1dsp_init_neon.c │ │ │ ├── vc1dsp_neon.S │ │ │ ├── videodsp_arm.h │ │ │ ├── videodsp_armv5te.S │ │ │ ├── videodsp_init_arm.c │ │ │ ├── videodsp_init_armv5te.c │ │ │ ├── vorbisdsp_init_arm.c │ │ │ ├── vorbisdsp_neon.S │ │ │ ├── vp3dsp_init_arm.c │ │ │ ├── vp3dsp_neon.S │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp_init_arm.c │ │ │ ├── vp6dsp_neon.S │ │ │ ├── vp8.h │ │ │ ├── vp8_armv6.S │ │ │ ├── vp8dsp.h │ │ │ ├── vp8dsp_armv6.S │ │ │ ├── vp8dsp_init_arm.c │ │ │ ├── vp8dsp_init_armv6.c │ │ │ ├── vp8dsp_init_neon.c │ │ │ ├── vp8dsp_neon.S │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp_arm.c │ │ │ ├── vp9dsp_init_12bpp_arm.c │ │ │ ├── vp9dsp_init_16bpp_arm_template.c │ │ │ ├── vp9dsp_init_arm.c │ │ │ ├── vp9itxfm_16bpp_neon.S │ │ │ ├── vp9itxfm_neon.S │ │ │ ├── vp9lpf_16bpp_neon.S │ │ │ ├── vp9lpf_neon.S │ │ │ ├── vp9mc_16bpp_neon.S │ │ │ └── vp9mc_neon.S │ │ ├── ass.c │ │ ├── ass.h │ │ ├── ass_split.c │ │ ├── ass_split.h │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── asv.c │ │ ├── asv.h │ │ ├── asvdec.c │ │ ├── asvenc.c │ │ ├── atrac.c │ │ ├── atrac.h │ │ ├── atrac1.c │ │ ├── atrac1data.h │ │ ├── atrac3.c │ │ ├── atrac3data.h │ │ ├── atrac3plus.c │ │ ├── atrac3plus.h │ │ ├── atrac3plus_data.h │ │ ├── atrac3plusdec.c │ │ ├── atrac3plusdsp.c │ │ ├── audio_frame_queue.c │ │ ├── audio_frame_queue.h │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── audiodsp.c │ │ ├── audiodsp.h │ │ ├── audiotoolboxdec.c │ │ ├── audiotoolboxenc.c │ │ ├── aura.c │ │ ├── avcodec.h │ │ ├── avcodecres.rc │ │ ├── avdct.c │ │ ├── avdct.h │ │ ├── avfft.c │ │ ├── avfft.h │ │ ├── avpacket.c │ │ ├── avpicture.c │ │ ├── avr32 │ │ │ └── mathops.h │ │ ├── avrndec.c │ │ ├── avs.c │ │ ├── avuidec.c │ │ ├── avuienc.c │ │ ├── bethsoftvideo.c │ │ ├── bethsoftvideo.h │ │ ├── bfi.c │ │ ├── bfin │ │ │ └── README │ │ ├── bgmc.c │ │ ├── bgmc.h │ │ ├── bink.c │ │ ├── binkaudio.c │ │ ├── binkdata.h │ │ ├── binkdsp.c │ │ ├── binkdsp.h │ │ ├── bintext.c │ │ ├── bintext.h │ │ ├── bit_depth_template.c │ │ ├── bitpacked.c │ │ ├── bitstream.c │ │ ├── bitstream_filter.c │ │ ├── bitstream_filters.c │ │ ├── blockdsp.c │ │ ├── blockdsp.h │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── bmp_parser.c │ │ ├── bmpenc.c │ │ ├── bmvaudio.c │ │ ├── bmvvideo.c │ │ ├── brenderpix.c │ │ ├── bsf.c │ │ ├── bsf.h │ │ ├── bswapdsp.c │ │ ├── bswapdsp.h │ │ ├── bytestream.h │ │ ├── c93.c │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── cabac_functions.h │ │ ├── canopus.c │ │ ├── canopus.h │ │ ├── cavs.c │ │ ├── cavs.h │ │ ├── cavs_parser.c │ │ ├── cavsdata.c │ │ ├── cavsdec.c │ │ ├── cavsdsp.c │ │ ├── cavsdsp.h │ │ ├── cbrt_data.c │ │ ├── cbrt_data.h │ │ ├── cbrt_data_fixed.c │ │ ├── cbrt_fixed_tablegen.c │ │ ├── cbrt_tablegen.c │ │ ├── cbrt_tablegen.h │ │ ├── cbrt_tablegen_template.c │ │ ├── ccaption_dec.c │ │ ├── cdgraphics.c │ │ ├── cdxl.c │ │ ├── celp_filters.c │ │ ├── celp_filters.h │ │ ├── celp_math.c │ │ ├── celp_math.h │ │ ├── cfhd.c │ │ ├── cfhd.h │ │ ├── cfhddata.c │ │ ├── cga_data.c │ │ ├── cga_data.h │ │ ├── chomp_bsf.c │ │ ├── cinepak.c │ │ ├── cinepakenc.c │ │ ├── clearvideo.c │ │ ├── cljrdec.c │ │ ├── cljrenc.c │ │ ├── cllc.c │ │ ├── cngdec.c │ │ ├── cngenc.c │ │ ├── codec_desc.c │ │ ├── cook.c │ │ ├── cook_parser.c │ │ ├── cookdata.h │ │ ├── copy_block.h │ │ ├── cos_tablegen.c │ │ ├── cpia.c │ │ ├── crystalhd.c │ │ ├── cscd.c │ │ ├── cuvid.c │ │ ├── cyuv.c │ │ ├── d3d11va.c │ │ ├── d3d11va.h │ │ ├── dca.c │ │ ├── dca.h │ │ ├── dca_core.c │ │ ├── dca_core.h │ │ ├── dca_core_bsf.c │ │ ├── dca_exss.c │ │ ├── dca_exss.h │ │ ├── dca_lbr.c │ │ ├── dca_lbr.h │ │ ├── dca_parser.c │ │ ├── dca_syncwords.h │ │ ├── dca_xll.c │ │ ├── dca_xll.h │ │ ├── dcaadpcm.c │ │ ├── dcaadpcm.h │ │ ├── dcadata.c │ │ ├── dcadata.h │ │ ├── dcadct.c │ │ ├── dcadct.h │ │ ├── dcadec.c │ │ ├── dcadec.h │ │ ├── dcadsp.c │ │ ├── dcadsp.h │ │ ├── dcaenc.c │ │ ├── dcaenc.h │ │ ├── dcahuff.c │ │ ├── dcahuff.h │ │ ├── dcamath.h │ │ ├── dct.c │ │ ├── dct.h │ │ ├── dct32.h │ │ ├── dct32_fixed.c │ │ ├── dct32_float.c │ │ ├── dct32_template.c │ │ ├── dctref.c │ │ ├── dctref.h │ │ ├── dds.c │ │ ├── decode.c │ │ ├── decode.h │ │ ├── dfa.c │ │ ├── dirac.c │ │ ├── dirac.h │ │ ├── dirac_arith.c │ │ ├── dirac_arith.h │ │ ├── dirac_dwt.c │ │ ├── dirac_dwt.h │ │ ├── dirac_dwt_template.c │ │ ├── dirac_parser.c │ │ ├── dirac_vlc.c │ │ ├── dirac_vlc.h │ │ ├── diracdec.c │ │ ├── diracdsp.c │ │ ├── diracdsp.h │ │ ├── diractab.c │ │ ├── diractab.h │ │ ├── dnxhd_parser.c │ │ ├── dnxhddata.c │ │ ├── dnxhddata.h │ │ ├── dnxhddec.c │ │ ├── dnxhdenc.c │ │ ├── dnxhdenc.h │ │ ├── dolby_e.c │ │ ├── dolby_e.h │ │ ├── dpcm.c │ │ ├── dpx.c │ │ ├── dpx_parser.c │ │ ├── dpxenc.c │ │ ├── dsd.c │ │ ├── dsd.h │ │ ├── dsd_tablegen.h │ │ ├── dsddec.c │ │ ├── dsicinaudio.c │ │ ├── dsicinvideo.c │ │ ├── dss_sp.c │ │ ├── dstdec.c │ │ ├── dump_extradata_bsf.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dv_profile.c │ │ ├── dv_profile.h │ │ ├── dv_profile_internal.h │ │ ├── dv_tablegen.c │ │ ├── dv_tablegen.h │ │ ├── dvaudio.h │ │ ├── dvaudio_parser.c │ │ ├── dvaudiodec.c │ │ ├── dvbsub.c │ │ ├── dvbsub_parser.c │ │ ├── dvbsubdec.c │ │ ├── dvbtxt.h │ │ ├── dvd_nav_parser.c │ │ ├── dvdata.c │ │ ├── dvdata.h │ │ ├── dvdec.c │ │ ├── dvdsub_parser.c │ │ ├── dvdsubdec.c │ │ ├── dvdsubenc.c │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── dxtory.c │ │ ├── dxv.c │ │ ├── dxva2.c │ │ ├── dxva2.h │ │ ├── dxva2_h264.c │ │ ├── dxva2_hevc.c │ │ ├── dxva2_internal.h │ │ ├── dxva2_mpeg2.c │ │ ├── dxva2_vc1.c │ │ ├── dxva2_vp9.c │ │ ├── eac3_data.c │ │ ├── eac3_data.h │ │ ├── eac3dec.c │ │ ├── eac3enc.c │ │ ├── eac3enc.h │ │ ├── eacmv.c │ │ ├── eaidct.c │ │ ├── eaidct.h │ │ ├── eamad.c │ │ ├── eatgq.c │ │ ├── eatgv.c │ │ ├── eatqi.c │ │ ├── elbg.c │ │ ├── elbg.h │ │ ├── elsdec.c │ │ ├── elsdec.h │ │ ├── encode.c │ │ ├── error_resilience.c │ │ ├── error_resilience.h │ │ ├── escape124.c │ │ ├── escape130.c │ │ ├── evrcdata.h │ │ ├── evrcdec.c │ │ ├── exif.c │ │ ├── exif.h │ │ ├── exr.c │ │ ├── exrdsp.c │ │ ├── exrdsp.h │ │ ├── extract_extradata_bsf.c │ │ ├── faandct.c │ │ ├── faandct.h │ │ ├── faanidct.c │ │ ├── faanidct.h │ │ ├── faxcompr.c │ │ ├── faxcompr.h │ │ ├── fdctdsp.c │ │ ├── fdctdsp.h │ │ ├── ffjni.c │ │ ├── ffjni.h │ │ ├── fft-internal.h │ │ ├── fft.h │ │ ├── fft_fixed.c │ │ ├── fft_fixed_32.c │ │ ├── fft_float.c │ │ ├── fft_init_table.c │ │ ├── fft_table.h │ │ ├── fft_template.c │ │ ├── ffv1.c │ │ ├── ffv1.h │ │ ├── ffv1_template.c │ │ ├── ffv1dec.c │ │ ├── ffv1dec_template.c │ │ ├── ffv1enc.c │ │ ├── ffv1enc_template.c │ │ ├── ffwavesynth.c │ │ ├── fic.c │ │ ├── file_open.c │ │ ├── fits.c │ │ ├── fits.h │ │ ├── fitsdec.c │ │ ├── fitsenc.c │ │ ├── flac.c │ │ ├── flac.h │ │ ├── flac_parser.c │ │ ├── flacdata.c │ │ ├── flacdata.h │ │ ├── flacdec.c │ │ ├── flacdsp.c │ │ ├── flacdsp.h │ │ ├── flacdsp_lpc_template.c │ │ ├── flacdsp_template.c │ │ ├── flacenc.c │ │ ├── flashsv.c │ │ ├── flashsv2enc.c │ │ ├── flashsvenc.c │ │ ├── flicvideo.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── fmtconvert.c │ │ ├── fmtconvert.h │ │ ├── fmvc.c │ │ ├── frame_thread_encoder.c │ │ ├── frame_thread_encoder.h │ │ ├── fraps.c │ │ ├── frwu.c │ │ ├── g2meet.c │ │ ├── g722.c │ │ ├── g722.h │ │ ├── g722dec.c │ │ ├── g722dsp.c │ │ ├── g722dsp.h │ │ ├── g722enc.c │ │ ├── g723_1.c │ │ ├── g723_1.h │ │ ├── g723_1dec.c │ │ ├── g723_1enc.c │ │ ├── g726.c │ │ ├── g729.h │ │ ├── g729_parser.c │ │ ├── g729data.h │ │ ├── g729dec.c │ │ ├── g729postfilter.c │ │ ├── g729postfilter.h │ │ ├── gdv.c │ │ ├── get_bits.h │ │ ├── gif.c │ │ ├── gif.h │ │ ├── gifdec.c │ │ ├── golomb.c │ │ ├── golomb.h │ │ ├── gsm.h │ │ ├── gsm_parser.c │ │ ├── gsmdec.c │ │ ├── gsmdec_data.c │ │ ├── gsmdec_data.h │ │ ├── gsmdec_template.c │ │ ├── h261.c │ │ ├── h261.h │ │ ├── h261_parser.c │ │ ├── h261data.c │ │ ├── h261dec.c │ │ ├── h261enc.c │ │ ├── h263.c │ │ ├── h263.h │ │ ├── h263_parser.c │ │ ├── h263_parser.h │ │ ├── h263data.c │ │ ├── h263data.h │ │ ├── h263dec.c │ │ ├── h263dsp.c │ │ ├── h263dsp.h │ │ ├── h264.h │ │ ├── h2645_parse.c │ │ ├── h2645_parse.h │ │ ├── h264_cabac.c │ │ ├── h264_cavlc.c │ │ ├── h264_direct.c │ │ ├── h264_loopfilter.c │ │ ├── h264_mb.c │ │ ├── h264_mb_template.c │ │ ├── h264_mc_template.c │ │ ├── h264_mp4toannexb_bsf.c │ │ ├── h264_mvpred.h │ │ ├── h264_parse.c │ │ ├── h264_parse.h │ │ ├── h264_parser.c │ │ ├── h264_picture.c │ │ ├── h264_ps.c │ │ ├── h264_ps.h │ │ ├── h264_refs.c │ │ ├── h264_sei.c │ │ ├── h264_sei.h │ │ ├── h264_slice.c │ │ ├── h264addpx_template.c │ │ ├── h264chroma.c │ │ ├── h264chroma.h │ │ ├── h264chroma_template.c │ │ ├── h264data.c │ │ ├── h264data.h │ │ ├── h264dec.c │ │ ├── h264dec.h │ │ ├── h264dsp.c │ │ ├── h264dsp.h │ │ ├── h264dsp_template.c │ │ ├── h264idct.c │ │ ├── h264idct.h │ │ ├── h264idct_template.c │ │ ├── h264pred.c │ │ ├── h264pred.h │ │ ├── h264pred_template.c │ │ ├── h264qpel.c │ │ ├── h264qpel.h │ │ ├── h264qpel_template.c │ │ ├── hap.c │ │ ├── hap.h │ │ ├── hapdec.c │ │ ├── hapenc.c │ │ ├── hevc.h │ │ ├── hevc_cabac.c │ │ ├── hevc_data.c │ │ ├── hevc_data.h │ │ ├── hevc_filter.c │ │ ├── hevc_mp4toannexb_bsf.c │ │ ├── hevc_mvs.c │ │ ├── hevc_parse.c │ │ ├── hevc_parse.h │ │ ├── hevc_parser.c │ │ ├── hevc_ps.c │ │ ├── hevc_ps.h │ │ ├── hevc_ps_enc.c │ │ ├── hevc_refs.c │ │ ├── hevc_sei.c │ │ ├── hevc_sei.h │ │ ├── hevcdec.c │ │ ├── hevcdec.h │ │ ├── hevcdsp.c │ │ ├── hevcdsp.h │ │ ├── hevcdsp_template.c │ │ ├── hevcpred.c │ │ ├── hevcpred.h │ │ ├── hevcpred_template.c │ │ ├── hnm4video.c │ │ ├── hpel_template.c │ │ ├── hpeldsp.c │ │ ├── hpeldsp.h │ │ ├── hq_hqa.c │ │ ├── hq_hqa.h │ │ ├── hq_hqadata.c │ │ ├── hq_hqadsp.c │ │ ├── hq_hqadsp.h │ │ ├── hqx.c │ │ ├── hqx.h │ │ ├── hqxdsp.c │ │ ├── hqxdsp.h │ │ ├── hqxvlc.c │ │ ├── htmlsubtitles.c │ │ ├── htmlsubtitles.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffyuv.c │ │ ├── huffyuv.h │ │ ├── huffyuvdec.c │ │ ├── huffyuvdsp.c │ │ ├── huffyuvdsp.h │ │ ├── huffyuvenc.c │ │ ├── huffyuvencdsp.c │ │ ├── huffyuvencdsp.h │ │ ├── hwaccel.h │ │ ├── idcinvideo.c │ │ ├── idctdsp.c │ │ ├── idctdsp.h │ │ ├── iff.c │ │ ├── iirfilter.c │ │ ├── iirfilter.h │ │ ├── imc.c │ │ ├── imcdata.h │ │ ├── imgconvert.c │ │ ├── imx_dump_header_bsf.c │ │ ├── indeo2.c │ │ ├── indeo2data.h │ │ ├── indeo3.c │ │ ├── indeo3data.h │ │ ├── indeo4.c │ │ ├── indeo4data.h │ │ ├── indeo5.c │ │ ├── indeo5data.h │ │ ├── intelh263dec.c │ │ ├── internal.h │ │ ├── interplayacm.c │ │ ├── interplayvideo.c │ │ ├── intrax8.c │ │ ├── intrax8.h │ │ ├── intrax8dsp.c │ │ ├── intrax8dsp.h │ │ ├── intrax8huf.h │ │ ├── ituh263dec.c │ │ ├── ituh263enc.c │ │ ├── ivi.c │ │ ├── ivi.h │ │ ├── ivi_dsp.c │ │ ├── ivi_dsp.h │ │ ├── j2kenc.c │ │ ├── jacosub.h │ │ ├── jacosubdec.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jfdctint_template.c │ │ ├── jni.c │ │ ├── jni.h │ │ ├── jpeg2000.c │ │ ├── jpeg2000.h │ │ ├── jpeg2000dec.c │ │ ├── jpeg2000dsp.c │ │ ├── jpeg2000dsp.h │ │ ├── jpeg2000dwt.c │ │ ├── jpeg2000dwt.h │ │ ├── jpegls.c │ │ ├── jpegls.h │ │ ├── jpeglsdec.c │ │ ├── jpeglsdec.h │ │ ├── jpeglsenc.c │ │ ├── jpegtables.c │ │ ├── jpegtables.h │ │ ├── jrevdct.c │ │ ├── jvdec.c │ │ ├── kbdwin.c │ │ ├── kbdwin.h │ │ ├── kgv1dec.c │ │ ├── kmvc.c │ │ ├── lagarith.c │ │ ├── lagarithrac.c │ │ ├── lagarithrac.h │ │ ├── latm_parser.c │ │ ├── lcl.h │ │ ├── lcldec.c │ │ ├── lclenc.c │ │ ├── libavcodec.v │ │ ├── libcelt_dec.c │ │ ├── libfdk-aacdec.c │ │ ├── libfdk-aacenc.c │ │ ├── libgsmdec.c │ │ ├── libgsmenc.c │ │ ├── libilbc.c │ │ ├── libkvazaar.c │ │ ├── libmp3lame.c │ │ ├── libopencore-amr.c │ │ ├── libopenh264.c │ │ ├── libopenh264.h │ │ ├── libopenh264dec.c │ │ ├── libopenh264enc.c │ │ ├── libopenjpegdec.c │ │ ├── libopenjpegenc.c │ │ ├── libopus.c │ │ ├── libopus.h │ │ ├── libopusdec.c │ │ ├── libopusenc.c │ │ ├── librsvgdec.c │ │ ├── libshine.c │ │ ├── libspeexdec.c │ │ ├── libspeexenc.c │ │ ├── libtheoraenc.c │ │ ├── libtwolame.c │ │ ├── libvo-amrwbenc.c │ │ ├── libvorbisdec.c │ │ ├── libvorbisenc.c │ │ ├── libvpx.c │ │ ├── libvpx.h │ │ ├── libvpxdec.c │ │ ├── libvpxenc.c │ │ ├── libwavpackenc.c │ │ ├── libwebpenc.c │ │ ├── libwebpenc_animencoder.c │ │ ├── libwebpenc_common.c │ │ ├── libwebpenc_common.h │ │ ├── libx264.c │ │ ├── libx265.c │ │ ├── libxavs.c │ │ ├── libxvid.c │ │ ├── libxvid.h │ │ ├── libxvid_rc.c │ │ ├── libzvbi-teletextdec.c │ │ ├── ljpegenc.c │ │ ├── loco.c │ │ ├── log2_tab.c │ │ ├── lossless_audiodsp.c │ │ ├── lossless_audiodsp.h │ │ ├── lossless_videodsp.c │ │ ├── lossless_videodsp.h │ │ ├── lossless_videoencdsp.c │ │ ├── lossless_videoencdsp.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lzf.c │ │ ├── lzf.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── lzwenc.c │ │ ├── m101.c │ │ ├── mace.c │ │ ├── magicyuv.c │ │ ├── mathops.h │ │ ├── mathtables.c │ │ ├── mdct15.c │ │ ├── mdct15.h │ │ ├── mdct_fixed.c │ │ ├── mdct_fixed_32.c │ │ ├── mdct_float.c │ │ ├── mdct_template.c │ │ ├── mdec.c │ │ ├── me_cmp.c │ │ ├── me_cmp.h │ │ ├── mediacodec.c │ │ ├── mediacodec.h │ │ ├── mediacodec_surface.c │ │ ├── mediacodec_surface.h │ │ ├── mediacodec_sw_buffer.c │ │ ├── mediacodec_sw_buffer.h │ │ ├── mediacodec_wrapper.c │ │ ├── mediacodec_wrapper.h │ │ ├── mediacodecdec.c │ │ ├── mediacodecdec_common.c │ │ ├── mediacodecdec_common.h │ │ ├── metasound.c │ │ ├── metasound_data.c │ │ ├── metasound_data.h │ │ ├── microdvddec.c │ │ ├── mimic.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── aaccoder_mips.c │ │ │ ├── aacdec_mips.c │ │ │ ├── aacdec_mips.h │ │ │ ├── aacpsdsp_mips.c │ │ │ ├── aacpsy_mips.h │ │ │ ├── aacsbr_mips.c │ │ │ ├── aacsbr_mips.h │ │ │ ├── ac3dsp_mips.c │ │ │ ├── acelp_filters_mips.c │ │ │ ├── acelp_vectors_mips.c │ │ │ ├── amrwbdec_mips.c │ │ │ ├── amrwbdec_mips.h │ │ │ ├── blockdsp_init_mips.c │ │ │ ├── blockdsp_mips.h │ │ │ ├── blockdsp_mmi.c │ │ │ ├── blockdsp_msa.c │ │ │ ├── celp_filters_mips.c │ │ │ ├── celp_math_mips.c │ │ │ ├── compute_antialias_fixed.h │ │ │ ├── compute_antialias_float.h │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── fft_mips.c │ │ │ ├── fmtconvert_mips.c │ │ │ ├── h263dsp_init_mips.c │ │ │ ├── h263dsp_mips.h │ │ │ ├── h263dsp_msa.c │ │ │ ├── h264chroma_init_mips.c │ │ │ ├── h264chroma_mips.h │ │ │ ├── h264chroma_mmi.c │ │ │ ├── h264chroma_msa.c │ │ │ ├── h264dsp_init_mips.c │ │ │ ├── h264dsp_mips.h │ │ │ ├── h264dsp_mmi.c │ │ │ ├── h264dsp_msa.c │ │ │ ├── h264idct_msa.c │ │ │ ├── h264pred_init_mips.c │ │ │ ├── h264pred_mips.h │ │ │ ├── h264pred_mmi.c │ │ │ ├── h264pred_msa.c │ │ │ ├── h264qpel_init_mips.c │ │ │ ├── h264qpel_mmi.c │ │ │ ├── h264qpel_msa.c │ │ │ ├── hevc_idct_msa.c │ │ │ ├── hevc_lpf_sao_msa.c │ │ │ ├── hevc_macros_msa.h │ │ │ ├── hevc_mc_bi_msa.c │ │ │ ├── hevc_mc_biw_msa.c │ │ │ ├── hevc_mc_uni_msa.c │ │ │ ├── hevc_mc_uniw_msa.c │ │ │ ├── hevcdsp_init_mips.c │ │ │ ├── hevcdsp_mips.h │ │ │ ├── hevcdsp_msa.c │ │ │ ├── hevcpred_init_mips.c │ │ │ ├── hevcpred_mips.h │ │ │ ├── hevcpred_msa.c │ │ │ ├── hpeldsp_init_mips.c │ │ │ ├── hpeldsp_mips.h │ │ │ ├── hpeldsp_mmi.c │ │ │ ├── hpeldsp_msa.c │ │ │ ├── idctdsp_init_mips.c │ │ │ ├── idctdsp_mips.h │ │ │ ├── idctdsp_mmi.c │ │ │ ├── idctdsp_msa.c │ │ │ ├── iirfilter_mips.c │ │ │ ├── lsp_mips.h │ │ │ ├── mathops.h │ │ │ ├── me_cmp_init_mips.c │ │ │ ├── me_cmp_mips.h │ │ │ ├── me_cmp_msa.c │ │ │ ├── mpegaudiodsp_mips_fixed.c │ │ │ ├── mpegaudiodsp_mips_float.c │ │ │ ├── mpegvideo_init_mips.c │ │ │ ├── mpegvideo_mips.h │ │ │ ├── mpegvideo_mmi.c │ │ │ ├── mpegvideo_msa.c │ │ │ ├── mpegvideoencdsp_init_mips.c │ │ │ ├── mpegvideoencdsp_msa.c │ │ │ ├── pixblockdsp_init_mips.c │ │ │ ├── pixblockdsp_mips.h │ │ │ ├── pixblockdsp_mmi.c │ │ │ ├── pixblockdsp_msa.c │ │ │ ├── qpeldsp_init_mips.c │ │ │ ├── qpeldsp_mips.h │ │ │ ├── qpeldsp_msa.c │ │ │ ├── sbrdsp_mips.c │ │ │ ├── simple_idct_mmi.c │ │ │ ├── simple_idct_msa.c │ │ │ ├── vc1dsp_init_mips.c │ │ │ ├── vc1dsp_mips.h │ │ │ ├── vc1dsp_mmi.c │ │ │ ├── videodsp_init.c │ │ │ ├── vp8_idct_msa.c │ │ │ ├── vp8_lpf_msa.c │ │ │ ├── vp8_mc_msa.c │ │ │ ├── vp8dsp_init_mips.c │ │ │ ├── vp8dsp_mips.h │ │ │ ├── vp8dsp_mmi.c │ │ │ ├── vp9_idct_msa.c │ │ │ ├── vp9_intra_msa.c │ │ │ ├── vp9_lpf_msa.c │ │ │ ├── vp9_mc_msa.c │ │ │ ├── vp9dsp_init_mips.c │ │ │ ├── vp9dsp_mips.h │ │ │ ├── wmv2dsp_init_mips.c │ │ │ ├── wmv2dsp_mips.h │ │ │ ├── wmv2dsp_mmi.c │ │ │ ├── xvid_idct_mmi.c │ │ │ ├── xvididct_init_mips.c │ │ │ └── xvididct_mips.h │ │ ├── mjpeg.h │ │ ├── mjpeg2jpeg_bsf.c │ │ ├── mjpeg_parser.c │ │ ├── mjpega_dump_header_bsf.c │ │ ├── mjpegbdec.c │ │ ├── mjpegdec.c │ │ ├── mjpegdec.h │ │ ├── mjpegenc.c │ │ ├── mjpegenc.h │ │ ├── mjpegenc_common.c │ │ ├── mjpegenc_common.h │ │ ├── mjpegenc_huffman.c │ │ ├── mjpegenc_huffman.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_parser.c │ │ ├── mlp_parser.h │ │ ├── mlpdec.c │ │ ├── mlpdsp.c │ │ ├── mlpdsp.h │ │ ├── mlpenc.c │ │ ├── mlz.c │ │ ├── mlz.h │ │ ├── mmaldec.c │ │ ├── mmvideo.c │ │ ├── motion_est.c │ │ ├── motion_est.h │ │ ├── motion_est_template.c │ │ ├── motionpixels.c │ │ ├── motionpixels_tablegen.c │ │ ├── motionpixels_tablegen.h │ │ ├── movsub_bsf.c │ │ ├── movtextdec.c │ │ ├── movtextenc.c │ │ ├── mp3_header_decompress_bsf.c │ │ ├── mpc.c │ │ ├── mpc.h │ │ ├── mpc7.c │ │ ├── mpc7data.h │ │ ├── mpc8.c │ │ ├── mpc8data.h │ │ ├── mpc8huff.h │ │ ├── mpcdata.h │ │ ├── mpeg12.c │ │ ├── mpeg12.h │ │ ├── mpeg12data.c │ │ ├── mpeg12data.h │ │ ├── mpeg12dec.c │ │ ├── mpeg12enc.c │ │ ├── mpeg12framerate.c │ │ ├── mpeg12vlc.h │ │ ├── mpeg4_unpack_bframes_bsf.c │ │ ├── mpeg4audio.c │ │ ├── mpeg4audio.h │ │ ├── mpeg4data.h │ │ ├── mpeg4video.c │ │ ├── mpeg4video.h │ │ ├── mpeg4video_parser.c │ │ ├── mpeg4video_parser.h │ │ ├── mpeg4videodec.c │ │ ├── mpeg4videoenc.c │ │ ├── mpeg_er.c │ │ ├── mpeg_er.h │ │ ├── mpegaudio.c │ │ ├── mpegaudio.h │ │ ├── mpegaudio_parser.c │ │ ├── mpegaudio_tablegen.c │ │ ├── mpegaudio_tablegen.h │ │ ├── mpegaudiodata.c │ │ ├── mpegaudiodata.h │ │ ├── mpegaudiodec_fixed.c │ │ ├── mpegaudiodec_float.c │ │ ├── mpegaudiodec_template.c │ │ ├── mpegaudiodecheader.c │ │ ├── mpegaudiodecheader.h │ │ ├── mpegaudiodectab.h │ │ ├── mpegaudiodsp.c │ │ ├── mpegaudiodsp.h │ │ ├── mpegaudiodsp_data.c │ │ ├── mpegaudiodsp_fixed.c │ │ ├── mpegaudiodsp_float.c │ │ ├── mpegaudiodsp_template.c │ │ ├── mpegaudioenc_fixed.c │ │ ├── mpegaudioenc_float.c │ │ ├── mpegaudioenc_template.c │ │ ├── mpegaudiotab.h │ │ ├── mpegpicture.c │ │ ├── mpegpicture.h │ │ ├── mpegutils.c │ │ ├── mpegutils.h │ │ ├── mpegvideo.c │ │ ├── mpegvideo.h │ │ ├── mpegvideo_enc.c │ │ ├── mpegvideo_motion.c │ │ ├── mpegvideo_parser.c │ │ ├── mpegvideo_xvmc.c │ │ ├── mpegvideodata.c │ │ ├── mpegvideodata.h │ │ ├── mpegvideodsp.c │ │ ├── mpegvideodsp.h │ │ ├── mpegvideoencdsp.c │ │ ├── mpegvideoencdsp.h │ │ ├── mpl2dec.c │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqcdec.c │ │ ├── mqcenc.c │ │ ├── mscc.c │ │ ├── msgsmdec.c │ │ ├── msgsmdec.h │ │ ├── msmpeg4.c │ │ ├── msmpeg4.h │ │ ├── msmpeg4data.c │ │ ├── msmpeg4data.h │ │ ├── msmpeg4dec.c │ │ ├── msmpeg4enc.c │ │ ├── msrle.c │ │ ├── msrledec.c │ │ ├── msrledec.h │ │ ├── mss1.c │ │ ├── mss12.c │ │ ├── mss12.h │ │ ├── mss2.c │ │ ├── mss2dsp.c │ │ ├── mss2dsp.h │ │ ├── mss3.c │ │ ├── mss34dsp.c │ │ ├── mss34dsp.h │ │ ├── mss4.c │ │ ├── msvideo1.c │ │ ├── msvideo1enc.c │ │ ├── mvcdec.c │ │ ├── mxpegdec.c │ │ ├── nellymoser.c │ │ ├── nellymoser.h │ │ ├── nellymoserdec.c │ │ ├── nellymoserenc.c │ │ ├── neon │ │ │ ├── Makefile │ │ │ └── mpegvideo.c │ │ ├── noise_bsf.c │ │ ├── null_bsf.c │ │ ├── nuv.c │ │ ├── nvenc.c │ │ ├── nvenc.h │ │ ├── nvenc_h264.c │ │ ├── nvenc_hevc.c │ │ ├── omx.c │ │ ├── on2avc.c │ │ ├── on2avcdata.c │ │ ├── on2avcdata.h │ │ ├── options.c │ │ ├── options_table.h │ │ ├── opus.c │ │ ├── opus.h │ │ ├── opus_celt.c │ │ ├── opus_celt.h │ │ ├── opus_parser.c │ │ ├── opus_pvq.c │ │ ├── opus_pvq.h │ │ ├── opus_rc.c │ │ ├── opus_rc.h │ │ ├── opus_silk.c │ │ ├── opusdec.c │ │ ├── opusenc.c │ │ ├── opusenc.h │ │ ├── opusenc_psy.c │ │ ├── opusenc_psy.h │ │ ├── opusenc_utils.h │ │ ├── opustab.c │ │ ├── opustab.h │ │ ├── paf.h │ │ ├── pafaudio.c │ │ ├── pafvideo.c │ │ ├── pamenc.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── pcm-bluray.c │ │ ├── pcm-dvd.c │ │ ├── pcm.c │ │ ├── pcm_tablegen.c │ │ ├── pcm_tablegen.h │ │ ├── pcx.c │ │ ├── pcxenc.c │ │ ├── pel_template.c │ │ ├── pgssubdec.c │ │ ├── pictordec.c │ │ ├── pixblockdsp.c │ │ ├── pixblockdsp.h │ │ ├── pixels.h │ │ ├── pixlet.c │ │ ├── png.c │ │ ├── png.h │ │ ├── png_parser.c │ │ ├── pngdec.c │ │ ├── pngdsp.c │ │ ├── pngdsp.h │ │ ├── pngenc.c │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── pnm_parser.c │ │ ├── pnmdec.c │ │ ├── pnmenc.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── audiodsp.c │ │ │ ├── blockdsp.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp.c │ │ │ ├── fft_altivec.S │ │ │ ├── fft_init.c │ │ │ ├── fft_vsx.c │ │ │ ├── fft_vsx.h │ │ │ ├── fmtconvert_altivec.c │ │ │ ├── h264chroma_init.c │ │ │ ├── h264chroma_template.c │ │ │ ├── h264dsp.c │ │ │ ├── h264qpel.c │ │ │ ├── h264qpel_template.c │ │ │ ├── hevcdsp.c │ │ │ ├── hevcdsp_template.c │ │ │ ├── hpeldsp_altivec.c │ │ │ ├── hpeldsp_altivec.h │ │ │ ├── idctdsp.c │ │ │ ├── lossless_audiodsp_altivec.c │ │ │ ├── lossless_videodsp_altivec.c │ │ │ ├── mathops.h │ │ │ ├── me_cmp.c │ │ │ ├── mpegaudiodsp_altivec.c │ │ │ ├── mpegvideo_altivec.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoencdsp.c │ │ │ ├── pixblockdsp.c │ │ │ ├── svq1enc_altivec.c │ │ │ ├── vc1dsp_altivec.c │ │ │ ├── videodsp.c │ │ │ ├── vorbisdsp_altivec.c │ │ │ ├── vp3dsp_altivec.c │ │ │ └── vp8dsp_altivec.c │ │ ├── profiles.c │ │ ├── profiles.h │ │ ├── proresdata.c │ │ ├── proresdata.h │ │ ├── proresdec.h │ │ ├── proresdec2.c │ │ ├── proresdec_lgpl.c │ │ ├── proresdsp.c │ │ ├── proresdsp.h │ │ ├── proresenc_anatoliy.c │ │ ├── proresenc_kostya.c │ │ ├── psd.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── pthread.c │ │ ├── pthread_frame.c │ │ ├── pthread_internal.h │ │ ├── pthread_slice.c │ │ ├── ptx.c │ │ ├── put_bits.h │ │ ├── qcelpdata.h │ │ ├── qcelpdec.c │ │ ├── qdm2.c │ │ ├── qdm2_tablegen.c │ │ ├── qdm2_tablegen.h │ │ ├── qdm2data.h │ │ ├── qdmc.c │ │ ├── qdrw.c │ │ ├── qpeg.c │ │ ├── qpel_template.c │ │ ├── qpeldsp.c │ │ ├── qpeldsp.h │ │ ├── qsv.c │ │ ├── qsv.h │ │ ├── qsv_api.c │ │ ├── qsv_internal.h │ │ ├── qsvdec.c │ │ ├── qsvdec.h │ │ ├── qsvdec_h2645.c │ │ ├── qsvdec_other.c │ │ ├── qsvenc.c │ │ ├── qsvenc.h │ │ ├── qsvenc_h264.c │ │ ├── qsvenc_hevc.c │ │ ├── qsvenc_mpeg2.c │ │ ├── qtrle.c │ │ ├── qtrleenc.c │ │ ├── r210dec.c │ │ ├── r210enc.c │ │ ├── ra144.c │ │ ├── ra144.h │ │ ├── ra144dec.c │ │ ├── ra144enc.c │ │ ├── ra288.c │ │ ├── ra288.h │ │ ├── ralf.c │ │ ├── ralfdata.h │ │ ├── rangecoder.c │ │ ├── rangecoder.h │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── rawdec.c │ │ ├── rawenc.c │ │ ├── rdft.c │ │ ├── rdft.h │ │ ├── realtextdec.c │ │ ├── rectangle.h │ │ ├── remove_extradata_bsf.c │ │ ├── resample.c │ │ ├── resample2.c │ │ ├── reverse.c │ │ ├── rkmppdec.c │ │ ├── rl.c │ │ ├── rl.h │ │ ├── rl2.c │ │ ├── rle.c │ │ ├── rle.h │ │ ├── rnd_avg.h │ │ ├── roqaudioenc.c │ │ ├── roqvideo.c │ │ ├── roqvideo.h │ │ ├── roqvideodec.c │ │ ├── roqvideoenc.c │ │ ├── rpza.c │ │ ├── rscc.c │ │ ├── rtjpeg.c │ │ ├── rtjpeg.h │ │ ├── rv10.c │ │ ├── rv10.h │ │ ├── rv10enc.c │ │ ├── rv20enc.c │ │ ├── rv30.c │ │ ├── rv30data.h │ │ ├── rv30dsp.c │ │ ├── rv34.c │ │ ├── rv34.h │ │ ├── rv34_parser.c │ │ ├── rv34data.h │ │ ├── rv34dsp.c │ │ ├── rv34dsp.h │ │ ├── rv34vlc.h │ │ ├── rv40.c │ │ ├── rv40data.h │ │ ├── rv40dsp.c │ │ ├── rv40vlc2.h │ │ ├── s302m.c │ │ ├── s302menc.c │ │ ├── samidec.c │ │ ├── sanm.c │ │ ├── sbr.h │ │ ├── sbrdsp.c │ │ ├── sbrdsp.h │ │ ├── sbrdsp_fixed.c │ │ ├── sbrdsp_template.c │ │ ├── scpr.c │ │ ├── screenpresso.c │ │ ├── sgi.h │ │ ├── sgidec.c │ │ ├── sgienc.c │ │ ├── sgirledec.c │ │ ├── sh4 │ │ │ └── README │ │ ├── sheervideo.c │ │ ├── shorten.c │ │ ├── simple_idct.c │ │ ├── simple_idct.h │ │ ├── simple_idct_template.c │ │ ├── sinewin.c │ │ ├── sinewin.h │ │ ├── sinewin_fixed.c │ │ ├── sinewin_fixed_tablegen.c │ │ ├── sinewin_tablegen.c │ │ ├── sinewin_tablegen.h │ │ ├── sinewin_tablegen_template.c │ │ ├── sipr.c │ │ ├── sipr.h │ │ ├── sipr16k.c │ │ ├── sipr16kdata.h │ │ ├── sipr_parser.c │ │ ├── siprdata.h │ │ ├── smacker.c │ │ ├── smc.c │ │ ├── smvjpegdec.c │ │ ├── snappy.c │ │ ├── snappy.h │ │ ├── snow.c │ │ ├── snow.h │ │ ├── snow_dwt.c │ │ ├── snow_dwt.h │ │ ├── snowdata.h │ │ ├── snowdec.c │ │ ├── snowenc.c │ │ ├── sonic.c │ │ ├── sp5x.h │ │ ├── sp5xdec.c │ │ ├── sparc │ │ │ └── README │ │ ├── speedhq.c │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── startcode.c │ │ ├── startcode.h │ │ ├── subviewerdec.c │ │ ├── sunrast.c │ │ ├── sunrast.h │ │ ├── sunrastenc.c │ │ ├── svq1.c │ │ ├── svq1.h │ │ ├── svq13.c │ │ ├── svq1_cb.h │ │ ├── svq1_vlc.h │ │ ├── svq1dec.c │ │ ├── svq1enc.c │ │ ├── svq1enc.h │ │ ├── svq1enc_cb.h │ │ ├── svq3.c │ │ ├── synth_filter.c │ │ ├── synth_filter.h │ │ ├── tableprint.h │ │ ├── tableprint_vlc.h │ │ ├── tak.c │ │ ├── tak.h │ │ ├── tak_parser.c │ │ ├── takdec.c │ │ ├── takdsp.c │ │ ├── takdsp.h │ │ ├── targa.c │ │ ├── targa.h │ │ ├── targa_y216dec.c │ │ ├── targaenc.c │ │ ├── tdsc.c │ │ ├── tests │ │ │ ├── aarch64 │ │ │ │ └── dct.c │ │ │ ├── arm │ │ │ │ └── dct.c │ │ │ ├── avfft.c │ │ │ ├── avpacket.c │ │ │ ├── cabac.c │ │ │ ├── celp_math.c │ │ │ ├── dct.c │ │ │ ├── fft-fixed.c │ │ │ ├── fft-fixed32.c │ │ │ ├── fft.c │ │ │ ├── golomb.c │ │ │ ├── htmlsubtitles.c │ │ │ ├── iirfilter.c │ │ │ ├── imgconvert.c │ │ │ ├── jpeg2000dwt.c │ │ │ ├── mathops.c │ │ │ ├── mjpegenc_huffman.c │ │ │ ├── motion.c │ │ │ ├── options.c │ │ │ ├── ppc │ │ │ │ └── dct.c │ │ │ ├── rangecoder.c │ │ │ ├── snowenc.c │ │ │ ├── utils.c │ │ │ └── x86 │ │ │ │ └── dct.c │ │ ├── textdec.c │ │ ├── texturedsp.c │ │ ├── texturedsp.h │ │ ├── texturedspenc.c │ │ ├── thread.h │ │ ├── tiertexseqv.c │ │ ├── tiff.c │ │ ├── tiff.h │ │ ├── tiff_common.c │ │ ├── tiff_common.h │ │ ├── tiff_data.c │ │ ├── tiff_data.h │ │ ├── tiffenc.c │ │ ├── tmv.c │ │ ├── tpeldsp.c │ │ ├── tpeldsp.h │ │ ├── truemotion1.c │ │ ├── truemotion1data.h │ │ ├── truemotion2.c │ │ ├── truemotion2rt.c │ │ ├── truespeech.c │ │ ├── truespeech_data.h │ │ ├── tscc.c │ │ ├── tscc2.c │ │ ├── tscc2data.h │ │ ├── tta.c │ │ ├── ttadata.c │ │ ├── ttadata.h │ │ ├── ttadsp.c │ │ ├── ttadsp.h │ │ ├── ttaenc.c │ │ ├── ttaencdsp.c │ │ ├── ttaencdsp.h │ │ ├── twinvq.c │ │ ├── twinvq.h │ │ ├── twinvq_data.h │ │ ├── twinvqdec.c │ │ ├── txd.c │ │ ├── ulti.c │ │ ├── ulti_cb.h │ │ ├── unary.h │ │ ├── utils.c │ │ ├── utvideo.c │ │ ├── utvideo.h │ │ ├── utvideodec.c │ │ ├── utvideodsp.c │ │ ├── utvideodsp.h │ │ ├── utvideoenc.c │ │ ├── v210dec.c │ │ ├── v210dec.h │ │ ├── v210enc.c │ │ ├── v210enc.h │ │ ├── v210x.c │ │ ├── v308dec.c │ │ ├── v308enc.c │ │ ├── v408dec.c │ │ ├── v408enc.c │ │ ├── v410dec.c │ │ ├── v410enc.c │ │ ├── v4l2_buffers.c │ │ ├── v4l2_buffers.h │ │ ├── v4l2_context.c │ │ ├── v4l2_context.h │ │ ├── v4l2_fmt.c │ │ ├── v4l2_fmt.h │ │ ├── v4l2_m2m.c │ │ ├── v4l2_m2m.h │ │ ├── v4l2_m2m_dec.c │ │ ├── v4l2_m2m_enc.c │ │ ├── vaapi.h │ │ ├── vaapi_decode.c │ │ ├── vaapi_decode.h │ │ ├── vaapi_encode.c │ │ ├── vaapi_encode.h │ │ ├── vaapi_encode_h264.c │ │ ├── vaapi_encode_h265.c │ │ ├── vaapi_encode_h26x.c │ │ ├── vaapi_encode_h26x.h │ │ ├── vaapi_encode_mjpeg.c │ │ ├── vaapi_encode_mpeg2.c │ │ ├── vaapi_encode_vp8.c │ │ ├── vaapi_encode_vp9.c │ │ ├── vaapi_h264.c │ │ ├── vaapi_hevc.c │ │ ├── vaapi_mpeg2.c │ │ ├── vaapi_mpeg4.c │ │ ├── vaapi_vc1.c │ │ ├── vaapi_vp9.c │ │ ├── vb.c │ │ ├── vble.c │ │ ├── vc1.c │ │ ├── vc1.h │ │ ├── vc1_block.c │ │ ├── vc1_common.h │ │ ├── vc1_loopfilter.c │ │ ├── vc1_mc.c │ │ ├── vc1_parser.c │ │ ├── vc1_pred.c │ │ ├── vc1_pred.h │ │ ├── vc1acdata.h │ │ ├── vc1data.c │ │ ├── vc1data.h │ │ ├── vc1dec.c │ │ ├── vc1dsp.c │ │ ├── vc1dsp.h │ │ ├── vc2enc.c │ │ ├── vc2enc_dwt.c │ │ ├── vc2enc_dwt.h │ │ ├── vcr1.c │ │ ├── vda.c │ │ ├── vda.h │ │ ├── vda_h264.c │ │ ├── vda_h264_dec.c │ │ ├── vda_vt_internal.h │ │ ├── vdpau.c │ │ ├── vdpau.h │ │ ├── vdpau_compat.h │ │ ├── vdpau_h264.c │ │ ├── vdpau_hevc.c │ │ ├── vdpau_internal.h │ │ ├── vdpau_mpeg12.c │ │ ├── vdpau_mpeg4.c │ │ ├── vdpau_vc1.c │ │ ├── version.h │ │ ├── videodsp.c │ │ ├── videodsp.h │ │ ├── videodsp_template.c │ │ ├── videotoolbox.c │ │ ├── videotoolbox.h │ │ ├── videotoolboxenc.c │ │ ├── vima.c │ │ ├── vlc.h │ │ ├── vmdaudio.c │ │ ├── vmdvideo.c │ │ ├── vmnc.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── vorbis_data.c │ │ ├── vorbis_enc_data.h │ │ ├── vorbis_parser.c │ │ ├── vorbis_parser.h │ │ ├── vorbis_parser_internal.h │ │ ├── vorbisdec.c │ │ ├── vorbisdsp.c │ │ ├── vorbisdsp.h │ │ ├── vorbisenc.c │ │ ├── vp3.c │ │ ├── vp3_parser.c │ │ ├── vp3data.h │ │ ├── vp3dsp.c │ │ ├── vp3dsp.h │ │ ├── vp5.c │ │ ├── vp56.c │ │ ├── vp56.h │ │ ├── vp56data.c │ │ ├── vp56data.h │ │ ├── vp56dsp.c │ │ ├── vp56dsp.h │ │ ├── vp56rac.c │ │ ├── vp5data.h │ │ ├── vp6.c │ │ ├── vp6data.h │ │ ├── vp6dsp.c │ │ ├── vp8.c │ │ ├── vp8.h │ │ ├── vp8_parser.c │ │ ├── vp8data.h │ │ ├── vp8dsp.c │ │ ├── vp8dsp.h │ │ ├── vp9.c │ │ ├── vp9.h │ │ ├── vp9_mc_template.c │ │ ├── vp9_parser.c │ │ ├── vp9_raw_reorder_bsf.c │ │ ├── vp9_superframe_bsf.c │ │ ├── vp9_superframe_split_bsf.c │ │ ├── vp9block.c │ │ ├── vp9data.c │ │ ├── vp9data.h │ │ ├── vp9dec.h │ │ ├── vp9dsp.c │ │ ├── vp9dsp.h │ │ ├── vp9dsp_10bpp.c │ │ ├── vp9dsp_12bpp.c │ │ ├── vp9dsp_8bpp.c │ │ ├── vp9dsp_template.c │ │ ├── vp9lpf.c │ │ ├── vp9mvs.c │ │ ├── vp9prob.c │ │ ├── vp9recon.c │ │ ├── vp9shared.h │ │ ├── vqavideo.c │ │ ├── wavpack.c │ │ ├── wavpack.h │ │ ├── wavpackenc.c │ │ ├── wavpackenc.h │ │ ├── webp.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── wma.c │ │ ├── wma.h │ │ ├── wma_common.c │ │ ├── wma_common.h │ │ ├── wma_freqs.c │ │ ├── wma_freqs.h │ │ ├── wmadata.h │ │ ├── wmadec.c │ │ ├── wmaenc.c │ │ ├── wmalosslessdec.c │ │ ├── wmaprodata.h │ │ ├── wmaprodec.c │ │ ├── wmavoice.c │ │ ├── wmavoice_data.h │ │ ├── wmv2.c │ │ ├── wmv2.h │ │ ├── wmv2data.c │ │ ├── wmv2data.h │ │ ├── wmv2dec.c │ │ ├── wmv2dsp.c │ │ ├── wmv2dsp.h │ │ ├── wmv2enc.c │ │ ├── wnv1.c │ │ ├── wrapped_avframe.c │ │ ├── ws-snd1.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── aacencdsp.asm │ │ │ ├── aacencdsp_init.c │ │ │ ├── aacpsdsp.asm │ │ │ ├── aacpsdsp_init.c │ │ │ ├── ac3dsp.asm │ │ │ ├── ac3dsp_downmix.asm │ │ │ ├── ac3dsp_init.c │ │ │ ├── alacdsp.asm │ │ │ ├── alacdsp_init.c │ │ │ ├── audiodsp.asm │ │ │ ├── audiodsp_init.c │ │ │ ├── blockdsp.asm │ │ │ ├── blockdsp_init.c │ │ │ ├── bswapdsp.asm │ │ │ ├── bswapdsp_init.c │ │ │ ├── cabac.h │ │ │ ├── cavsdsp.c │ │ │ ├── cavsidct.asm │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── dcadsp.asm │ │ │ ├── dcadsp_init.c │ │ │ ├── dct32.asm │ │ │ ├── dct_init.c │ │ │ ├── dirac_dwt.asm │ │ │ ├── dirac_dwt_init.c │ │ │ ├── diracdsp.asm │ │ │ ├── diracdsp_init.c │ │ │ ├── dnxhdenc.asm │ │ │ ├── dnxhdenc_init.c │ │ │ ├── exrdsp.asm │ │ │ ├── exrdsp_init.c │ │ │ ├── fdct.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp_init.c │ │ │ ├── fft.asm │ │ │ ├── fft.h │ │ │ ├── fft_init.c │ │ │ ├── flac_dsp_gpl.asm │ │ │ ├── flacdsp.asm │ │ │ ├── flacdsp_init.c │ │ │ ├── fmtconvert.asm │ │ │ ├── fmtconvert_init.c │ │ │ ├── fpel.asm │ │ │ ├── fpel.h │ │ │ ├── g722dsp.asm │ │ │ ├── g722dsp_init.c │ │ │ ├── h263_loopfilter.asm │ │ │ ├── h263dsp_init.c │ │ │ ├── h264_cabac.c │ │ │ ├── h264_chromamc.asm │ │ │ ├── h264_chromamc_10bit.asm │ │ │ ├── h264_deblock.asm │ │ │ ├── h264_deblock_10bit.asm │ │ │ ├── h264_idct.asm │ │ │ ├── h264_idct_10bit.asm │ │ │ ├── h264_intrapred.asm │ │ │ ├── h264_intrapred_10bit.asm │ │ │ ├── h264_intrapred_init.c │ │ │ ├── h264_qpel.c │ │ │ ├── h264_qpel_10bit.asm │ │ │ ├── h264_qpel_8bit.asm │ │ │ ├── h264_weight.asm │ │ │ ├── h264_weight_10bit.asm │ │ │ ├── h264chroma_init.c │ │ │ ├── h264dsp_init.c │ │ │ ├── hevc_add_res.asm │ │ │ ├── hevc_deblock.asm │ │ │ ├── hevc_idct.asm │ │ │ ├── hevc_mc.asm │ │ │ ├── hevc_sao.asm │ │ │ ├── hevc_sao_10bit.asm │ │ │ ├── hevcdsp.h │ │ │ ├── hevcdsp_init.c │ │ │ ├── hpeldsp.asm │ │ │ ├── hpeldsp.h │ │ │ ├── hpeldsp_init.c │ │ │ ├── hpeldsp_rnd_template.c │ │ │ ├── hpeldsp_vp3.asm │ │ │ ├── hpeldsp_vp3_init.c │ │ │ ├── huffyuvdsp.asm │ │ │ ├── huffyuvdsp_init.c │ │ │ ├── huffyuvencdsp.asm │ │ │ ├── huffyuvencdsp_init.c │ │ │ ├── idctdsp.asm │ │ │ ├── idctdsp.h │ │ │ ├── idctdsp_init.c │ │ │ ├── imdct36.asm │ │ │ ├── inline_asm.h │ │ │ ├── jpeg2000dsp.asm │ │ │ ├── jpeg2000dsp_init.c │ │ │ ├── lossless_audiodsp.asm │ │ │ ├── lossless_audiodsp_init.c │ │ │ ├── lossless_videodsp.asm │ │ │ ├── lossless_videodsp_init.c │ │ │ ├── lossless_videoencdsp.asm │ │ │ ├── lossless_videoencdsp_init.c │ │ │ ├── lpc.c │ │ │ ├── mathops.h │ │ │ ├── mdct15.asm │ │ │ ├── mdct15_init.c │ │ │ ├── me_cmp.asm │ │ │ ├── me_cmp_init.c │ │ │ ├── mlpdsp.asm │ │ │ ├── mlpdsp_init.c │ │ │ ├── mpegaudiodsp.c │ │ │ ├── mpegvideo.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoenc.c │ │ │ ├── mpegvideoenc_qns_template.c │ │ │ ├── mpegvideoenc_template.c │ │ │ ├── mpegvideoencdsp.asm │ │ │ ├── mpegvideoencdsp_init.c │ │ │ ├── opus_dsp_init.c │ │ │ ├── opus_pvq_search.asm │ │ │ ├── pixblockdsp.asm │ │ │ ├── pixblockdsp_init.c │ │ │ ├── pngdsp.asm │ │ │ ├── pngdsp_init.c │ │ │ ├── proresdsp.asm │ │ │ ├── proresdsp_init.c │ │ │ ├── qpel.asm │ │ │ ├── qpeldsp.asm │ │ │ ├── qpeldsp_init.c │ │ │ ├── rnd_template.c │ │ │ ├── rv34dsp.asm │ │ │ ├── rv34dsp_init.c │ │ │ ├── rv40dsp.asm │ │ │ ├── rv40dsp_init.c │ │ │ ├── sbrdsp.asm │ │ │ ├── sbrdsp_init.c │ │ │ ├── simple_idct.asm │ │ │ ├── simple_idct.h │ │ │ ├── simple_idct10.asm │ │ │ ├── simple_idct10_template.asm │ │ │ ├── snowdsp.c │ │ │ ├── svq1enc.asm │ │ │ ├── svq1enc_init.c │ │ │ ├── synth_filter.asm │ │ │ ├── synth_filter_init.c │ │ │ ├── takdsp.asm │ │ │ ├── takdsp_init.c │ │ │ ├── ttadsp.asm │ │ │ ├── ttadsp_init.c │ │ │ ├── ttaencdsp.asm │ │ │ ├── ttaencdsp_init.c │ │ │ ├── utvideodsp.asm │ │ │ ├── utvideodsp_init.c │ │ │ ├── v210-init.c │ │ │ ├── v210.asm │ │ │ ├── v210enc.asm │ │ │ ├── v210enc_init.c │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init.c │ │ │ ├── vc1dsp_loopfilter.asm │ │ │ ├── vc1dsp_mc.asm │ │ │ ├── vc1dsp_mmx.c │ │ │ ├── videodsp.asm │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp.asm │ │ │ ├── vorbisdsp_init.c │ │ │ ├── vp3dsp.asm │ │ │ ├── vp3dsp_init.c │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp.asm │ │ │ ├── vp6dsp_init.c │ │ │ ├── vp8dsp.asm │ │ │ ├── vp8dsp_init.c │ │ │ ├── vp8dsp_loopfilter.asm │ │ │ ├── vp9dsp_init.c │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp.c │ │ │ ├── vp9dsp_init_12bpp.c │ │ │ ├── vp9dsp_init_16bpp.c │ │ │ ├── vp9dsp_init_16bpp_template.c │ │ │ ├── vp9intrapred.asm │ │ │ ├── vp9intrapred_16bpp.asm │ │ │ ├── vp9itxfm.asm │ │ │ ├── vp9itxfm_16bpp.asm │ │ │ ├── vp9itxfm_template.asm │ │ │ ├── vp9lpf.asm │ │ │ ├── vp9lpf_16bpp.asm │ │ │ ├── vp9mc.asm │ │ │ ├── vp9mc_16bpp.asm │ │ │ ├── w64xmmtest.c │ │ │ ├── xvididct.asm │ │ │ ├── xvididct.h │ │ │ └── xvididct_init.c │ │ ├── xan.c │ │ ├── xbmdec.c │ │ ├── xbmenc.c │ │ ├── xface.c │ │ ├── xface.h │ │ ├── xfacedec.c │ │ ├── xfaceenc.c │ │ ├── xiph.c │ │ ├── xiph.h │ │ ├── xl.c │ │ ├── xma_parser.c │ │ ├── xpmdec.c │ │ ├── xsubdec.c │ │ ├── xsubenc.c │ │ ├── xvididct.c │ │ ├── xvididct.h │ │ ├── xvmc.h │ │ ├── xvmc_internal.h │ │ ├── xwd.h │ │ ├── xwddec.c │ │ ├── xwdenc.c │ │ ├── xxan.c │ │ ├── y41pdec.c │ │ ├── y41penc.c │ │ ├── ylc.c │ │ ├── yop.c │ │ ├── yuv4dec.c │ │ ├── yuv4enc.c │ │ ├── zerocodec.c │ │ ├── zmbv.c │ │ └── zmbvenc.c │ ├── libavdevice │ │ ├── Makefile │ │ ├── alldevices.c │ │ ├── alsa.c │ │ ├── alsa.h │ │ ├── alsa_dec.c │ │ ├── alsa_enc.c │ │ ├── avdevice.c │ │ ├── avdevice.h │ │ ├── avdeviceres.rc │ │ ├── avfoundation.m │ │ ├── bktr.c │ │ ├── caca.c │ │ ├── decklink_common.cpp │ │ ├── decklink_common.h │ │ ├── decklink_common_c.h │ │ ├── decklink_dec.cpp │ │ ├── decklink_dec.h │ │ ├── decklink_dec_c.c │ │ ├── decklink_enc.cpp │ │ ├── decklink_enc.h │ │ ├── decklink_enc_c.c │ │ ├── dshow.c │ │ ├── dshow_capture.h │ │ ├── dshow_common.c │ │ ├── dshow_crossbar.c │ │ ├── dshow_enummediatypes.c │ │ ├── dshow_enumpins.c │ │ ├── dshow_filter.c │ │ ├── dshow_pin.c │ │ ├── fbdev_common.c │ │ ├── fbdev_common.h │ │ ├── fbdev_dec.c │ │ ├── fbdev_enc.c │ │ ├── file_open.c │ │ ├── gdigrab.c │ │ ├── iec61883.c │ │ ├── internal.h │ │ ├── jack.c │ │ ├── kmsgrab.c │ │ ├── lavfi.c │ │ ├── libavdevice.v │ │ ├── libcdio.c │ │ ├── libdc1394.c │ │ ├── libndi_newtek_common.h │ │ ├── libndi_newtek_dec.c │ │ ├── libndi_newtek_enc.c │ │ ├── openal-dec.c │ │ ├── opengl_enc.c │ │ ├── opengl_enc_shaders.h │ │ ├── oss.c │ │ ├── oss.h │ │ ├── oss_dec.c │ │ ├── oss_enc.c │ │ ├── pulse_audio_common.c │ │ ├── pulse_audio_common.h │ │ ├── pulse_audio_dec.c │ │ ├── pulse_audio_enc.c │ │ ├── reverse.c │ │ ├── sdl2.c │ │ ├── sndio.c │ │ ├── sndio.h │ │ ├── sndio_dec.c │ │ ├── sndio_enc.c │ │ ├── tests │ │ │ └── timefilter.c │ │ ├── timefilter.c │ │ ├── timefilter.h │ │ ├── utils.c │ │ ├── v4l2-common.c │ │ ├── v4l2-common.h │ │ ├── v4l2.c │ │ ├── v4l2enc.c │ │ ├── version.h │ │ ├── vfwcap.c │ │ ├── xcbgrab.c │ │ └── xv.c │ ├── libavfilter │ │ ├── Makefile │ │ ├── aeval.c │ │ ├── af_acopy.c │ │ ├── af_acrusher.c │ │ ├── af_adelay.c │ │ ├── af_aecho.c │ │ ├── af_aemphasis.c │ │ ├── af_afade.c │ │ ├── af_afftfilt.c │ │ ├── af_afir.c │ │ ├── af_afir.h │ │ ├── af_aformat.c │ │ ├── af_agate.c │ │ ├── af_alimiter.c │ │ ├── af_amerge.c │ │ ├── af_amix.c │ │ ├── af_anequalizer.c │ │ ├── af_anull.c │ │ ├── af_apad.c │ │ ├── af_aphaser.c │ │ ├── af_apulsator.c │ │ ├── af_aresample.c │ │ ├── af_asetnsamples.c │ │ ├── af_asetrate.c │ │ ├── af_ashowinfo.c │ │ ├── af_astats.c │ │ ├── af_atempo.c │ │ ├── af_biquads.c │ │ ├── af_bs2b.c │ │ ├── af_channelmap.c │ │ ├── af_channelsplit.c │ │ ├── af_chorus.c │ │ ├── af_compand.c │ │ ├── af_compensationdelay.c │ │ ├── af_crossfeed.c │ │ ├── af_crystalizer.c │ │ ├── af_dcshift.c │ │ ├── af_dynaudnorm.c │ │ ├── af_earwax.c │ │ ├── af_extrastereo.c │ │ ├── af_firequalizer.c │ │ ├── af_flanger.c │ │ ├── af_haas.c │ │ ├── af_hdcd.c │ │ ├── af_headphone.c │ │ ├── af_join.c │ │ ├── af_ladspa.c │ │ ├── af_loudnorm.c │ │ ├── af_pan.c │ │ ├── af_replaygain.c │ │ ├── af_resample.c │ │ ├── af_rubberband.c │ │ ├── af_sidechaincompress.c │ │ ├── af_silencedetect.c │ │ ├── af_silenceremove.c │ │ ├── af_sofalizer.c │ │ ├── af_stereotools.c │ │ ├── af_stereowiden.c │ │ ├── af_superequalizer.c │ │ ├── af_surround.c │ │ ├── af_tremolo.c │ │ ├── af_vibrato.c │ │ ├── af_volume.c │ │ ├── af_volume.h │ │ ├── af_volumedetect.c │ │ ├── all_channel_layouts.inc │ │ ├── allfilters.c │ │ ├── asink_anullsink.c │ │ ├── asrc_anoisesrc.c │ │ ├── asrc_anullsrc.c │ │ ├── asrc_flite.c │ │ ├── asrc_sine.c │ │ ├── audio.c │ │ ├── audio.h │ │ ├── avf_abitscope.c │ │ ├── avf_ahistogram.c │ │ ├── avf_aphasemeter.c │ │ ├── avf_avectorscope.c │ │ ├── avf_concat.c │ │ ├── avf_showcqt.c │ │ ├── avf_showcqt.h │ │ ├── avf_showfreqs.c │ │ ├── avf_showspectrum.c │ │ ├── avf_showvolume.c │ │ ├── avf_showwaves.c │ │ ├── avfilter.c │ │ ├── avfilter.h │ │ ├── avfiltergraph.c │ │ ├── avfiltergraph.h │ │ ├── avfilterres.rc │ │ ├── bbox.c │ │ ├── bbox.h │ │ ├── blend.h │ │ ├── bufferqueue.h │ │ ├── buffersink.c │ │ ├── buffersink.h │ │ ├── buffersrc.c │ │ ├── buffersrc.h │ │ ├── bwdif.h │ │ ├── colorspacedsp.c │ │ ├── colorspacedsp.h │ │ ├── colorspacedsp_template.c │ │ ├── colorspacedsp_yuv2yuv_template.c │ │ ├── deshake.h │ │ ├── deshake_opencl.c │ │ ├── deshake_opencl.h │ │ ├── deshake_opencl_kernel.h │ │ ├── drawutils.c │ │ ├── drawutils.h │ │ ├── ebur128.c │ │ ├── ebur128.h │ │ ├── f_bench.c │ │ ├── f_drawgraph.c │ │ ├── f_ebur128.c │ │ ├── f_interleave.c │ │ ├── f_loop.c │ │ ├── f_metadata.c │ │ ├── f_perms.c │ │ ├── f_realtime.c │ │ ├── f_reverse.c │ │ ├── f_select.c │ │ ├── f_sendcmd.c │ │ ├── f_sidedata.c │ │ ├── f_streamselect.c │ │ ├── f_zmq.c │ │ ├── fifo.c │ │ ├── filters.h │ │ ├── formats.c │ │ ├── formats.h │ │ ├── framepool.c │ │ ├── framepool.h │ │ ├── framequeue.c │ │ ├── framequeue.h │ │ ├── framesync.c │ │ ├── framesync.h │ │ ├── generate_wave_table.c │ │ ├── generate_wave_table.h │ │ ├── gradfun.h │ │ ├── graphdump.c │ │ ├── graphparser.c │ │ ├── hermite.h │ │ ├── interlace.h │ │ ├── internal.h │ │ ├── lavfutils.c │ │ ├── lavfutils.h │ │ ├── libavfilter.v │ │ ├── limiter.h │ │ ├── log2_tab.c │ │ ├── lswsutils.c │ │ ├── lswsutils.h │ │ ├── maskedmerge.h │ │ ├── motion_estimation.c │ │ ├── motion_estimation.h │ │ ├── opencl_allkernels.c │ │ ├── opencl_allkernels.h │ │ ├── psnr.h │ │ ├── pthread.c │ │ ├── removegrain.h │ │ ├── scale.c │ │ ├── scale.h │ │ ├── setpts.c │ │ ├── settb.c │ │ ├── signature.h │ │ ├── signature_lookup.c │ │ ├── split.c │ │ ├── src_movie.c │ │ ├── ssim.h │ │ ├── stereo3d.h │ │ ├── tests │ │ │ ├── drawutils.c │ │ │ ├── filtfmts.c │ │ │ ├── formats.c │ │ │ └── integral.c │ │ ├── thread.h │ │ ├── tinterlace.h │ │ ├── transform.c │ │ ├── transform.h │ │ ├── trim.c │ │ ├── unsharp.h │ │ ├── unsharp_opencl.c │ │ ├── unsharp_opencl.h │ │ ├── unsharp_opencl_kernel.h │ │ ├── vaf_spectrumsynth.c │ │ ├── version.h │ │ ├── vf_alphamerge.c │ │ ├── vf_aspect.c │ │ ├── vf_atadenoise.c │ │ ├── vf_avgblur.c │ │ ├── vf_bbox.c │ │ ├── vf_bitplanenoise.c │ │ ├── vf_blackdetect.c │ │ ├── vf_blackframe.c │ │ ├── vf_blend.c │ │ ├── vf_boxblur.c │ │ ├── vf_bwdif.c │ │ ├── vf_chromakey.c │ │ ├── vf_ciescope.c │ │ ├── vf_codecview.c │ │ ├── vf_colorbalance.c │ │ ├── vf_colorchannelmixer.c │ │ ├── vf_colorkey.c │ │ ├── vf_colorlevels.c │ │ ├── vf_colormatrix.c │ │ ├── vf_colorspace.c │ │ ├── vf_convolution.c │ │ ├── vf_convolve.c │ │ ├── vf_copy.c │ │ ├── vf_coreimage.m │ │ ├── vf_cover_rect.c │ │ ├── vf_crop.c │ │ ├── vf_cropdetect.c │ │ ├── vf_curves.c │ │ ├── vf_datascope.c │ │ ├── vf_dctdnoiz.c │ │ ├── vf_deband.c │ │ ├── vf_decimate.c │ │ ├── vf_deflicker.c │ │ ├── vf_deinterlace_qsv.c │ │ ├── vf_deinterlace_vaapi.c │ │ ├── vf_dejudder.c │ │ ├── vf_delogo.c │ │ ├── vf_deshake.c │ │ ├── vf_despill.c │ │ ├── vf_detelecine.c │ │ ├── vf_displace.c │ │ ├── vf_drawbox.c │ │ ├── vf_drawtext.c │ │ ├── vf_edgedetect.c │ │ ├── vf_elbg.c │ │ ├── vf_eq.c │ │ ├── vf_eq.h │ │ ├── vf_extractplanes.c │ │ ├── vf_fade.c │ │ ├── vf_fftfilt.c │ │ ├── vf_field.c │ │ ├── vf_fieldhint.c │ │ ├── vf_fieldmatch.c │ │ ├── vf_fieldorder.c │ │ ├── vf_find_rect.c │ │ ├── vf_floodfill.c │ │ ├── vf_format.c │ │ ├── vf_fps.c │ │ ├── vf_framepack.c │ │ ├── vf_framerate.c │ │ ├── vf_framestep.c │ │ ├── vf_frei0r.c │ │ ├── vf_fspp.c │ │ ├── vf_fspp.h │ │ ├── vf_gblur.c │ │ ├── vf_geq.c │ │ ├── vf_gradfun.c │ │ ├── vf_hflip.c │ │ ├── vf_histeq.c │ │ ├── vf_histogram.c │ │ ├── vf_hqdn3d.c │ │ ├── vf_hqdn3d.h │ │ ├── vf_hqx.c │ │ ├── vf_hue.c │ │ ├── vf_hwdownload.c │ │ ├── vf_hwmap.c │ │ ├── vf_hwupload.c │ │ ├── vf_hwupload_cuda.c │ │ ├── vf_hysteresis.c │ │ ├── vf_idet.c │ │ ├── vf_idet.h │ │ ├── vf_il.c │ │ ├── vf_interlace.c │ │ ├── vf_kerndeint.c │ │ ├── vf_lenscorrection.c │ │ ├── vf_libopencv.c │ │ ├── vf_libvmaf.c │ │ ├── vf_limiter.c │ │ ├── vf_lumakey.c │ │ ├── vf_lut.c │ │ ├── vf_lut2.c │ │ ├── vf_lut3d.c │ │ ├── vf_maskedclamp.c │ │ ├── vf_maskedmerge.c │ │ ├── vf_mcdeint.c │ │ ├── vf_mergeplanes.c │ │ ├── vf_mestimate.c │ │ ├── vf_midequalizer.c │ │ ├── vf_minterpolate.c │ │ ├── vf_mpdecimate.c │ │ ├── vf_neighbor.c │ │ ├── vf_nlmeans.c │ │ ├── vf_nnedi.c │ │ ├── vf_noise.c │ │ ├── vf_noise.h │ │ ├── vf_null.c │ │ ├── vf_ocr.c │ │ ├── vf_overlay.c │ │ ├── vf_owdenoise.c │ │ ├── vf_pad.c │ │ ├── vf_palettegen.c │ │ ├── vf_paletteuse.c │ │ ├── vf_perspective.c │ │ ├── vf_phase.c │ │ ├── vf_pixdesctest.c │ │ ├── vf_pp.c │ │ ├── vf_pp7.c │ │ ├── vf_pp7.h │ │ ├── vf_premultiply.c │ │ ├── vf_pseudocolor.c │ │ ├── vf_psnr.c │ │ ├── vf_pullup.c │ │ ├── vf_pullup.h │ │ ├── vf_qp.c │ │ ├── vf_random.c │ │ ├── vf_readeia608.c │ │ ├── vf_readvitc.c │ │ ├── vf_remap.c │ │ ├── vf_removegrain.c │ │ ├── vf_removelogo.c │ │ ├── vf_repeatfields.c │ │ ├── vf_rotate.c │ │ ├── vf_sab.c │ │ ├── vf_scale.c │ │ ├── vf_scale_cuda.c │ │ ├── vf_scale_cuda.cu │ │ ├── vf_scale_npp.c │ │ ├── vf_scale_qsv.c │ │ ├── vf_scale_vaapi.c │ │ ├── vf_selectivecolor.c │ │ ├── vf_separatefields.c │ │ ├── vf_setfield.c │ │ ├── vf_showinfo.c │ │ ├── vf_showpalette.c │ │ ├── vf_shuffleframes.c │ │ ├── vf_shuffleplanes.c │ │ ├── vf_signalstats.c │ │ ├── vf_signature.c │ │ ├── vf_smartblur.c │ │ ├── vf_spp.c │ │ ├── vf_spp.h │ │ ├── vf_ssim.c │ │ ├── vf_stack.c │ │ ├── vf_stereo3d.c │ │ ├── vf_subtitles.c │ │ ├── vf_super2xsai.c │ │ ├── vf_swaprect.c │ │ ├── vf_swapuv.c │ │ ├── vf_telecine.c │ │ ├── vf_threshold.c │ │ ├── vf_thumbnail.c │ │ ├── vf_thumbnail_cuda.c │ │ ├── vf_thumbnail_cuda.cu │ │ ├── vf_tile.c │ │ ├── vf_tinterlace.c │ │ ├── vf_tonemap.c │ │ ├── vf_transpose.c │ │ ├── vf_unsharp.c │ │ ├── vf_uspp.c │ │ ├── vf_vaguedenoiser.c │ │ ├── vf_vectorscope.c │ │ ├── vf_vflip.c │ │ ├── vf_vidstabdetect.c │ │ ├── vf_vidstabtransform.c │ │ ├── vf_vignette.c │ │ ├── vf_vmafmotion.c │ │ ├── vf_w3fdif.c │ │ ├── vf_waveform.c │ │ ├── vf_weave.c │ │ ├── vf_xbr.c │ │ ├── vf_yadif.c │ │ ├── vf_zoompan.c │ │ ├── vf_zscale.c │ │ ├── video.c │ │ ├── video.h │ │ ├── vidstabutils.c │ │ ├── vidstabutils.h │ │ ├── vmaf_motion.h │ │ ├── vsink_nullsink.c │ │ ├── vsrc_cellauto.c │ │ ├── vsrc_life.c │ │ ├── vsrc_mandelbrot.c │ │ ├── vsrc_mptestsrc.c │ │ ├── vsrc_testsrc.c │ │ ├── w3fdif.h │ │ ├── window_func.h │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── af_afir.asm │ │ │ ├── af_afir_init.c │ │ │ ├── af_volume.asm │ │ │ ├── af_volume_init.c │ │ │ ├── avf_showcqt.asm │ │ │ ├── avf_showcqt_init.c │ │ │ ├── colorspacedsp.asm │ │ │ ├── colorspacedsp_init.c │ │ │ ├── vf_blend.asm │ │ │ ├── vf_blend_init.c │ │ │ ├── vf_bwdif.asm │ │ │ ├── vf_bwdif_init.c │ │ │ ├── vf_eq.c │ │ │ ├── vf_fspp.asm │ │ │ ├── vf_fspp_init.c │ │ │ ├── vf_gradfun.asm │ │ │ ├── vf_gradfun_init.c │ │ │ ├── vf_hqdn3d.asm │ │ │ ├── vf_hqdn3d_init.c │ │ │ ├── vf_idet.asm │ │ │ ├── vf_idet_init.c │ │ │ ├── vf_interlace.asm │ │ │ ├── vf_interlace_init.c │ │ │ ├── vf_limiter.asm │ │ │ ├── vf_limiter_init.c │ │ │ ├── vf_maskedmerge.asm │ │ │ ├── vf_maskedmerge_init.c │ │ │ ├── vf_noise.c │ │ │ ├── vf_pp7.asm │ │ │ ├── vf_pp7_init.c │ │ │ ├── vf_psnr.asm │ │ │ ├── vf_psnr_init.c │ │ │ ├── vf_pullup.asm │ │ │ ├── vf_pullup_init.c │ │ │ ├── vf_removegrain.asm │ │ │ ├── vf_removegrain_init.c │ │ │ ├── vf_spp.c │ │ │ ├── vf_ssim.asm │ │ │ ├── vf_ssim_init.c │ │ │ ├── vf_stereo3d.asm │ │ │ ├── vf_stereo3d_init.c │ │ │ ├── vf_tinterlace_init.c │ │ │ ├── vf_w3fdif.asm │ │ │ ├── vf_w3fdif_init.c │ │ │ ├── vf_yadif.asm │ │ │ ├── vf_yadif_init.c │ │ │ ├── yadif-10.asm │ │ │ └── yadif-16.asm │ │ └── yadif.h │ ├── libavformat │ │ ├── 3dostr.c │ │ ├── 4xm.c │ │ ├── Makefile │ │ ├── a64.c │ │ ├── aacdec.c │ │ ├── aadec.c │ │ ├── ac3dec.c │ │ ├── acm.c │ │ ├── act.c │ │ ├── adp.c │ │ ├── ads.c │ │ ├── adtsenc.c │ │ ├── adxdec.c │ │ ├── aea.c │ │ ├── afc.c │ │ ├── aiff.h │ │ ├── aiffdec.c │ │ ├── aiffenc.c │ │ ├── aixdec.c │ │ ├── allformats.c │ │ ├── amr.c │ │ ├── anm.c │ │ ├── apc.c │ │ ├── ape.c │ │ ├── apetag.c │ │ ├── apetag.h │ │ ├── apngdec.c │ │ ├── apngenc.c │ │ ├── aqtitledec.c │ │ ├── asf.c │ │ ├── asf.h │ │ ├── asfcrypt.c │ │ ├── asfcrypt.h │ │ ├── asfdec_f.c │ │ ├── asfdec_o.c │ │ ├── asfenc.c │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── ast.c │ │ ├── ast.h │ │ ├── astdec.c │ │ ├── astenc.c │ │ ├── async.c │ │ ├── au.c │ │ ├── audiointerleave.c │ │ ├── audiointerleave.h │ │ ├── avc.c │ │ ├── avc.h │ │ ├── avformat.h │ │ ├── avformatres.rc │ │ ├── avi.h │ │ ├── avidec.c │ │ ├── avienc.c │ │ ├── avio.c │ │ ├── avio.h │ │ ├── avio_internal.h │ │ ├── aviobuf.c │ │ ├── avisynth.c │ │ ├── avlanguage.c │ │ ├── avlanguage.h │ │ ├── avr.c │ │ ├── avs.c │ │ ├── bethsoftvid.c │ │ ├── bfi.c │ │ ├── bink.c │ │ ├── bintext.c │ │ ├── bit.c │ │ ├── bluray.c │ │ ├── bmv.c │ │ ├── boadec.c │ │ ├── brstm.c │ │ ├── c93.c │ │ ├── cache.c │ │ ├── caf.c │ │ ├── caf.h │ │ ├── cafdec.c │ │ ├── cafenc.c │ │ ├── cavsvideodec.c │ │ ├── cdg.c │ │ ├── cdxl.c │ │ ├── chromaprint.c │ │ ├── cinedec.c │ │ ├── concat.c │ │ ├── concatdec.c │ │ ├── crcenc.c │ │ ├── crypto.c │ │ ├── cutils.c │ │ ├── dash.c │ │ ├── dash.h │ │ ├── dashdec.c │ │ ├── dashenc.c │ │ ├── data_uri.c │ │ ├── dauddec.c │ │ ├── daudenc.c │ │ ├── dcstr.c │ │ ├── dfa.c │ │ ├── diracdec.c │ │ ├── dnxhddec.c │ │ ├── dsfdec.c │ │ ├── dsicin.c │ │ ├── dss.c │ │ ├── dtsdec.c │ │ ├── dtshddec.c │ │ ├── dump.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dvbsub.c │ │ ├── dvbtxt.c │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── eacdata.c │ │ ├── electronicarts.c │ │ ├── epafdec.c │ │ ├── ffm.h │ │ ├── ffmdec.c │ │ ├── ffmenc.c │ │ ├── ffmeta.h │ │ ├── ffmetadec.c │ │ ├── ffmetaenc.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── file_open.c │ │ ├── filmstripdec.c │ │ ├── filmstripenc.c │ │ ├── fitsdec.c │ │ ├── fitsenc.c │ │ ├── flac_picture.c │ │ ├── flac_picture.h │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flacenc.h │ │ ├── flacenc_header.c │ │ ├── flic.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── format.c │ │ ├── framecrcenc.c │ │ ├── framehash.c │ │ ├── frmdec.c │ │ ├── fsb.c │ │ ├── ftp.c │ │ ├── g722.c │ │ ├── g723_1.c │ │ ├── g726.c │ │ ├── g729dec.c │ │ ├── gdv.c │ │ ├── genh.c │ │ ├── gif.c │ │ ├── gifdec.c │ │ ├── golomb_tab.c │ │ ├── gopher.c │ │ ├── gsmdec.c │ │ ├── gxf.c │ │ ├── gxf.h │ │ ├── gxfenc.c │ │ ├── h261dec.c │ │ ├── h263dec.c │ │ ├── h264dec.c │ │ ├── hashenc.c │ │ ├── hdsenc.c │ │ ├── hevc.c │ │ ├── hevc.h │ │ ├── hevcdec.c │ │ ├── hls.c │ │ ├── hlsenc.c │ │ ├── hlsproto.c │ │ ├── hnm.c │ │ ├── http.c │ │ ├── http.h │ │ ├── httpauth.c │ │ ├── httpauth.h │ │ ├── icecast.c │ │ ├── icodec.c │ │ ├── icoenc.c │ │ ├── id3v1.c │ │ ├── id3v1.h │ │ ├── id3v2.c │ │ ├── id3v2.h │ │ ├── id3v2enc.c │ │ ├── idcin.c │ │ ├── idroqdec.c │ │ ├── idroqenc.c │ │ ├── iff.c │ │ ├── ilbc.c │ │ ├── img2.c │ │ ├── img2.h │ │ ├── img2_alias_pix.c │ │ ├── img2_brender_pix.c │ │ ├── img2dec.c │ │ ├── img2enc.c │ │ ├── ingenientdec.c │ │ ├── internal.h │ │ ├── ipmovie.c │ │ ├── ircam.c │ │ ├── ircam.h │ │ ├── ircamdec.c │ │ ├── ircamenc.c │ │ ├── isom.c │ │ ├── isom.h │ │ ├── iss.c │ │ ├── iv8.c │ │ ├── ivfdec.c │ │ ├── ivfenc.c │ │ ├── jacosubdec.c │ │ ├── jacosubenc.c │ │ ├── jvdec.c │ │ ├── latmenc.c │ │ ├── libavformat.v │ │ ├── libgme.c │ │ ├── libmodplug.c │ │ ├── libopenmpt.c │ │ ├── librtmp.c │ │ ├── libsmbclient.c │ │ ├── libssh.c │ │ ├── lmlm4.c │ │ ├── loasdec.c │ │ ├── log2_tab.c │ │ ├── lrc.c │ │ ├── lrc.h │ │ ├── lrcdec.c │ │ ├── lrcenc.c │ │ ├── lvfdec.c │ │ ├── lxfdec.c │ │ ├── m4vdec.c │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── matroskadec.c │ │ ├── matroskaenc.c │ │ ├── md5proto.c │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── mgsts.c │ │ ├── microdvddec.c │ │ ├── microdvdenc.c │ │ ├── mj2kdec.c │ │ ├── mkvtimestamp_v2.c │ │ ├── mlpdec.c │ │ ├── mlvdec.c │ │ ├── mm.c │ │ ├── mmf.c │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmst.c │ │ ├── mov.c │ │ ├── mov_chan.c │ │ ├── mov_chan.h │ │ ├── movenc.c │ │ ├── movenc.h │ │ ├── movenccenc.c │ │ ├── movenccenc.h │ │ ├── movenchint.c │ │ ├── mp3dec.c │ │ ├── mp3enc.c │ │ ├── mpc.c │ │ ├── mpc8.c │ │ ├── mpeg.c │ │ ├── mpeg.h │ │ ├── mpegenc.c │ │ ├── mpegts.c │ │ ├── mpegts.h │ │ ├── mpegtsenc.c │ │ ├── mpegvideodec.c │ │ ├── mpjpeg.c │ │ ├── mpjpegdec.c │ │ ├── mpl2dec.c │ │ ├── mpsubdec.c │ │ ├── msf.c │ │ ├── msnwc_tcp.c │ │ ├── mtaf.c │ │ ├── mtv.c │ │ ├── musx.c │ │ ├── mux.c │ │ ├── mvdec.c │ │ ├── mvi.c │ │ ├── mxf.c │ │ ├── mxf.h │ │ ├── mxfdec.c │ │ ├── mxfenc.c │ │ ├── mxg.c │ │ ├── ncdec.c │ │ ├── network.c │ │ ├── network.h │ │ ├── nistspheredec.c │ │ ├── nsvdec.c │ │ ├── nullenc.c │ │ ├── nut.c │ │ ├── nut.h │ │ ├── nutdec.c │ │ ├── nutenc.c │ │ ├── nuv.c │ │ ├── oggdec.c │ │ ├── oggdec.h │ │ ├── oggenc.c │ │ ├── oggparsecelt.c │ │ ├── oggparsedaala.c │ │ ├── oggparsedirac.c │ │ ├── oggparseflac.c │ │ ├── oggparseogm.c │ │ ├── oggparseopus.c │ │ ├── oggparseskeleton.c │ │ ├── oggparsespeex.c │ │ ├── oggparsetheora.c │ │ ├── oggparsevorbis.c │ │ ├── oggparsevp8.c │ │ ├── oma.c │ │ ├── oma.h │ │ ├── omadec.c │ │ ├── omaenc.c │ │ ├── options.c │ │ ├── options_table.h │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── paf.c │ │ ├── pcm.c │ │ ├── pcm.h │ │ ├── pcmdec.c │ │ ├── pcmenc.c │ │ ├── pjsdec.c │ │ ├── pmpdec.c │ │ ├── prompeg.c │ │ ├── protocols.c │ │ ├── psxstr.c │ │ ├── pva.c │ │ ├── pvfdec.c │ │ ├── qcp.c │ │ ├── qtpalette.c │ │ ├── qtpalette.h │ │ ├── r3d.c │ │ ├── rawdec.c │ │ ├── rawdec.h │ │ ├── rawenc.c │ │ ├── rawenc.h │ │ ├── rawutils.c │ │ ├── rawvideodec.c │ │ ├── rdt.c │ │ ├── rdt.h │ │ ├── realtextdec.c │ │ ├── redspark.c │ │ ├── replaygain.c │ │ ├── replaygain.h │ │ ├── riff.c │ │ ├── riff.h │ │ ├── riffdec.c │ │ ├── riffenc.c │ │ ├── rl2.c │ │ ├── rm.c │ │ ├── rm.h │ │ ├── rmdec.c │ │ ├── rmenc.c │ │ ├── rmsipr.c │ │ ├── rmsipr.h │ │ ├── rpl.c │ │ ├── rsd.c │ │ ├── rso.c │ │ ├── rso.h │ │ ├── rsodec.c │ │ ├── rsoenc.c │ │ ├── rtmp.h │ │ ├── rtmpcrypt.c │ │ ├── rtmpcrypt.h │ │ ├── rtmpdh.c │ │ ├── rtmpdh.h │ │ ├── rtmphttp.c │ │ ├── rtmppkt.c │ │ ├── rtmppkt.h │ │ ├── rtmpproto.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtpdec.c │ │ ├── rtpdec.h │ │ ├── rtpdec_ac3.c │ │ ├── rtpdec_amr.c │ │ ├── rtpdec_asf.c │ │ ├── rtpdec_dv.c │ │ ├── rtpdec_formats.h │ │ ├── rtpdec_g726.c │ │ ├── rtpdec_h261.c │ │ ├── rtpdec_h263.c │ │ ├── rtpdec_h263_rfc2190.c │ │ ├── rtpdec_h264.c │ │ ├── rtpdec_hevc.c │ │ ├── rtpdec_ilbc.c │ │ ├── rtpdec_jpeg.c │ │ ├── rtpdec_latm.c │ │ ├── rtpdec_mpa_robust.c │ │ ├── rtpdec_mpeg12.c │ │ ├── rtpdec_mpeg4.c │ │ ├── rtpdec_mpegts.c │ │ ├── rtpdec_qcelp.c │ │ ├── rtpdec_qdm2.c │ │ ├── rtpdec_qt.c │ │ ├── rtpdec_rfc4175.c │ │ ├── rtpdec_svq3.c │ │ ├── rtpdec_vc2hq.c │ │ ├── rtpdec_vp8.c │ │ ├── rtpdec_vp9.c │ │ ├── rtpdec_xiph.c │ │ ├── rtpenc.c │ │ ├── rtpenc.h │ │ ├── rtpenc_aac.c │ │ ├── rtpenc_amr.c │ │ ├── rtpenc_chain.c │ │ ├── rtpenc_chain.h │ │ ├── rtpenc_h261.c │ │ ├── rtpenc_h263.c │ │ ├── rtpenc_h263_rfc2190.c │ │ ├── rtpenc_h264_hevc.c │ │ ├── rtpenc_jpeg.c │ │ ├── rtpenc_latm.c │ │ ├── rtpenc_mpegts.c │ │ ├── rtpenc_mpv.c │ │ ├── rtpenc_vc2hq.c │ │ ├── rtpenc_vp8.c │ │ ├── rtpenc_vp9.c │ │ ├── rtpenc_xiph.c │ │ ├── rtpproto.c │ │ ├── rtpproto.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── rtspcodes.h │ │ ├── rtspdec.c │ │ ├── rtspenc.c │ │ ├── s337m.c │ │ ├── samidec.c │ │ ├── sapdec.c │ │ ├── sapenc.c │ │ ├── sauce.c │ │ ├── sauce.h │ │ ├── sbgdec.c │ │ ├── sccdec.c │ │ ├── sccenc.c │ │ ├── sctp.c │ │ ├── sdp.c │ │ ├── sdr2.c │ │ ├── sdsdec.c │ │ ├── sdxdec.c │ │ ├── segafilm.c │ │ ├── segment.c │ │ ├── shortendec.c │ │ ├── sierravmd.c │ │ ├── siff.c │ │ ├── smacker.c │ │ ├── smjpeg.c │ │ ├── smjpeg.h │ │ ├── smjpegdec.c │ │ ├── smjpegenc.c │ │ ├── smoothstreamingenc.c │ │ ├── smush.c │ │ ├── sol.c │ │ ├── sox.h │ │ ├── soxdec.c │ │ ├── soxenc.c │ │ ├── spdif.c │ │ ├── spdif.h │ │ ├── spdifdec.c │ │ ├── spdifenc.c │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── srtp.c │ │ ├── srtp.h │ │ ├── srtpproto.c │ │ ├── stldec.c │ │ ├── subfile.c │ │ ├── subtitles.c │ │ ├── subtitles.h │ │ ├── subviewer1dec.c │ │ ├── subviewerdec.c │ │ ├── supdec.c │ │ ├── supenc.c │ │ ├── svag.c │ │ ├── swf.c │ │ ├── swf.h │ │ ├── swfdec.c │ │ ├── swfenc.c │ │ ├── takdec.c │ │ ├── tcp.c │ │ ├── tedcaptionsdec.c │ │ ├── tee.c │ │ ├── tee_common.c │ │ ├── tee_common.h │ │ ├── teeproto.c │ │ ├── tests │ │ │ ├── fifo_muxer.c │ │ │ ├── movenc.c │ │ │ ├── noproxy.c │ │ │ ├── rtmpdh.c │ │ │ ├── seek.c │ │ │ ├── srtp.c │ │ │ └── url.c │ │ ├── thp.c │ │ ├── tiertexseq.c │ │ ├── tls.c │ │ ├── tls.h │ │ ├── tls_gnutls.c │ │ ├── tls_openssl.c │ │ ├── tls_schannel.c │ │ ├── tls_securetransport.c │ │ ├── tmv.c │ │ ├── tta.c │ │ ├── ttaenc.c │ │ ├── tty.c │ │ ├── txd.c │ │ ├── udp.c │ │ ├── uncodedframecrcenc.c │ │ ├── unix.c │ │ ├── url.c │ │ ├── url.h │ │ ├── urldecode.c │ │ ├── urldecode.h │ │ ├── utils.c │ │ ├── v210.c │ │ ├── vag.c │ │ ├── vc1dec.c │ │ ├── vc1test.c │ │ ├── vc1testenc.c │ │ ├── version.h │ │ ├── vivo.c │ │ ├── voc.c │ │ ├── voc.h │ │ ├── voc_packet.c │ │ ├── vocdec.c │ │ ├── vocenc.c │ │ ├── vorbiscomment.c │ │ ├── vorbiscomment.h │ │ ├── vpcc.c │ │ ├── vpcc.h │ │ ├── vpk.c │ │ ├── vplayerdec.c │ │ ├── vqf.c │ │ ├── w64.c │ │ ├── w64.h │ │ ├── wavdec.c │ │ ├── wavenc.c │ │ ├── wc3movie.c │ │ ├── webm_chunk.c │ │ ├── webmdashenc.c │ │ ├── webpenc.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── westwood_aud.c │ │ ├── westwood_vqa.c │ │ ├── wsddec.c │ │ ├── wtv.h │ │ ├── wtv_common.c │ │ ├── wtvdec.c │ │ ├── wtvenc.c │ │ ├── wv.c │ │ ├── wv.h │ │ ├── wvdec.c │ │ ├── wvedec.c │ │ ├── wvenc.c │ │ ├── xa.c │ │ ├── xmv.c │ │ ├── xvag.c │ │ ├── xwma.c │ │ ├── yop.c │ │ ├── yuv4mpeg.h │ │ ├── yuv4mpegdec.c │ │ └── yuv4mpegenc.c │ ├── libavresample │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ ├── neontest.c │ │ │ ├── resample_init.c │ │ │ └── resample_neon.S │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ ├── neontest.c │ │ │ ├── resample_init.c │ │ │ └── resample_neon.S │ │ ├── audio_convert.c │ │ ├── audio_convert.h │ │ ├── audio_data.c │ │ ├── audio_data.h │ │ ├── audio_mix.c │ │ ├── audio_mix.h │ │ ├── audio_mix_matrix.c │ │ ├── avresample.h │ │ ├── avresampleres.rc │ │ ├── dither.c │ │ ├── dither.h │ │ ├── internal.h │ │ ├── libavresample.v │ │ ├── options.c │ │ ├── resample.c │ │ ├── resample.h │ │ ├── resample_template.c │ │ ├── tests │ │ │ └── avresample.c │ │ ├── utils.c │ │ ├── version.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── audio_convert.asm │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_mix.asm │ │ │ ├── audio_mix_init.c │ │ │ ├── dither.asm │ │ │ ├── dither_init.c │ │ │ ├── util.asm │ │ │ └── w64xmmtest.c │ ├── libavutil │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_init.c │ │ │ ├── float_dsp_neon.S │ │ │ ├── neontest.h │ │ │ └── timer.h │ │ ├── adler32.c │ │ ├── adler32.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── aes_ctr.c │ │ ├── aes_ctr.h │ │ ├── aes_internal.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_arm.h │ │ │ ├── float_dsp_init_arm.c │ │ │ ├── float_dsp_init_neon.c │ │ │ ├── float_dsp_init_vfp.c │ │ │ ├── float_dsp_neon.S │ │ │ ├── float_dsp_vfp.S │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── neontest.h │ │ │ └── timer.h │ │ ├── atomic.c │ │ ├── atomic.h │ │ ├── atomic_gcc.h │ │ ├── atomic_suncc.h │ │ ├── atomic_win32.h │ │ ├── attributes.h │ │ ├── audio_fifo.c │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avr32 │ │ │ ├── bswap.h │ │ │ └── intreadwrite.h │ │ ├── avstring.c │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── avutilres.rc │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bfin │ │ │ ├── bswap.h │ │ │ └── timer.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── bprint.c │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buffer_internal.h │ │ ├── camellia.c │ │ ├── camellia.h │ │ ├── cast5.c │ │ ├── cast5.h │ │ ├── channel_layout.c │ │ ├── channel_layout.h │ │ ├── color_utils.c │ │ ├── color_utils.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_internal.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── des.c │ │ ├── des.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── display.c │ │ ├── display.h │ │ ├── downmix_info.c │ │ ├── downmix_info.h │ │ ├── dynarray.h │ │ ├── error.c │ │ ├── error.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── ffmath.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── file.c │ │ ├── file.h │ │ ├── file_open.c │ │ ├── fixed_dsp.c │ │ ├── fixed_dsp.h │ │ ├── float_dsp.c │ │ ├── float_dsp.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── hwcontext.c │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.c │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_cuda_internal.h │ │ ├── hwcontext_d3d11va.c │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.c │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.c │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_internal.h │ │ ├── hwcontext_qsv.c │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.c │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.c │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.c │ │ ├── hwcontext_videotoolbox.h │ │ ├── imgutils.c │ │ ├── imgutils.h │ │ ├── imgutils_internal.h │ │ ├── integer.c │ │ ├── integer.h │ │ ├── internal.h │ │ ├── intfloat.h │ │ ├── intmath.c │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── lfg.c │ │ ├── lfg.h │ │ ├── libavutil.v │ │ ├── libm.h │ │ ├── lls.c │ │ ├── lls.h │ │ ├── log.c │ │ ├── log.h │ │ ├── log2_tab.c │ │ ├── lzo.c │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.c │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.c │ │ ├── mathematics.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mem_internal.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── asmdefs.h │ │ │ ├── float_dsp_mips.c │ │ │ ├── generic_macros_msa.h │ │ │ ├── intreadwrite.h │ │ │ ├── libm_mips.h │ │ │ └── mmiutils.h │ │ ├── motion_vector.h │ │ ├── murmur3.c │ │ ├── murmur3.h │ │ ├── opencl.c │ │ ├── opencl.h │ │ ├── opencl_internal.c │ │ ├── opencl_internal.h │ │ ├── opt.c │ │ ├── opt.h │ │ ├── parseutils.c │ │ ├── parseutils.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── pixdesc.c │ │ ├── pixdesc.h │ │ ├── pixelutils.c │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_altivec.c │ │ │ ├── float_dsp_altivec.h │ │ │ ├── float_dsp_init.c │ │ │ ├── float_dsp_vsx.c │ │ │ ├── float_dsp_vsx.h │ │ │ ├── intreadwrite.h │ │ │ ├── timer.h │ │ │ └── util_altivec.h │ │ ├── qsort.h │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── rational.c │ │ ├── rational.h │ │ ├── rc4.c │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── reverse.c │ │ ├── reverse.h │ │ ├── ripemd.c │ │ ├── ripemd.h │ │ ├── samplefmt.c │ │ ├── samplefmt.h │ │ ├── sh4 │ │ │ └── bswap.h │ │ ├── sha.c │ │ ├── sha.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── slicethread.c │ │ ├── slicethread.h │ │ ├── softfloat.h │ │ ├── softfloat_ieee754.h │ │ ├── softfloat_tables.h │ │ ├── spherical.c │ │ ├── spherical.h │ │ ├── stereo3d.c │ │ ├── stereo3d.h │ │ ├── tablegen.h │ │ ├── tea.c │ │ ├── tea.h │ │ ├── tests │ │ │ ├── adler32.c │ │ │ ├── aes.c │ │ │ ├── aes_ctr.c │ │ │ ├── atomic.c │ │ │ ├── audio_fifo.c │ │ │ ├── avstring.c │ │ │ ├── base64.c │ │ │ ├── blowfish.c │ │ │ ├── bprint.c │ │ │ ├── camellia.c │ │ │ ├── cast5.c │ │ │ ├── color_utils.c │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── crc.c │ │ │ ├── des.c │ │ │ ├── dict.c │ │ │ ├── display.c │ │ │ ├── error.c │ │ │ ├── eval.c │ │ │ ├── fifo.c │ │ │ ├── file.c │ │ │ ├── hash.c │ │ │ ├── hmac.c │ │ │ ├── imgutils.c │ │ │ ├── lfg.c │ │ │ ├── lls.c │ │ │ ├── log.c │ │ │ ├── lzo.c │ │ │ ├── md5.c │ │ │ ├── murmur3.c │ │ │ ├── opt.c │ │ │ ├── parseutils.c │ │ │ ├── pca.c │ │ │ ├── pixdesc.c │ │ │ ├── pixelutils.c │ │ │ ├── pixfmt_best.c │ │ │ ├── random_seed.c │ │ │ ├── rational.c │ │ │ ├── ripemd.c │ │ │ ├── sha.c │ │ │ ├── sha512.c │ │ │ ├── softfloat.c │ │ │ ├── tea.c │ │ │ ├── tree.c │ │ │ ├── twofish.c │ │ │ ├── utf8.c │ │ │ └── xtea.c │ │ ├── thread.h │ │ ├── threadmessage.c │ │ ├── threadmessage.h │ │ ├── time.c │ │ ├── time.h │ │ ├── time_internal.h │ │ ├── timecode.c │ │ ├── timecode.h │ │ ├── timer.h │ │ ├── timestamp.h │ │ ├── tomi │ │ │ └── intreadwrite.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── twofish.c │ │ ├── twofish.h │ │ ├── utils.c │ │ ├── version.h │ │ ├── wchar_filename.h │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpuid.asm │ │ │ ├── emms.asm │ │ │ ├── emms.h │ │ │ ├── fixed_dsp.asm │ │ │ ├── fixed_dsp_init.c │ │ │ ├── float_dsp.asm │ │ │ ├── float_dsp_init.c │ │ │ ├── imgutils.asm │ │ │ ├── imgutils_init.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── lls.asm │ │ │ ├── lls_init.c │ │ │ ├── pixelutils.asm │ │ │ ├── pixelutils.h │ │ │ ├── pixelutils_init.c │ │ │ ├── timer.h │ │ │ ├── w64xmmtest.h │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ │ ├── xga_font_data.c │ │ ├── xga_font_data.h │ │ ├── xtea.c │ │ └── xtea.h │ ├── libpostproc │ │ ├── Makefile │ │ ├── libpostproc.v │ │ ├── postprocess.c │ │ ├── postprocess.h │ │ ├── postprocess_altivec_template.c │ │ ├── postprocess_internal.h │ │ ├── postprocess_template.c │ │ ├── postprocres.rc │ │ └── version.h │ ├── libswresample │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ ├── neontest.c │ │ │ ├── resample.S │ │ │ └── resample_init.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ ├── neontest.c │ │ │ ├── resample.S │ │ │ └── resample_init.c │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── dither.c │ │ ├── dither_template.c │ │ ├── libswresample.v │ │ ├── log2_tab.c │ │ ├── noise_shaping_data.c │ │ ├── options.c │ │ ├── rematrix.c │ │ ├── rematrix_template.c │ │ ├── resample.c │ │ ├── resample.h │ │ ├── resample_dsp.c │ │ ├── resample_template.c │ │ ├── soxr_resample.c │ │ ├── swresample.c │ │ ├── swresample.h │ │ ├── swresample_frame.c │ │ ├── swresample_internal.h │ │ ├── swresampleres.rc │ │ ├── tests │ │ │ └── swresample.c │ │ ├── version.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── audio_convert.asm │ │ │ ├── audio_convert_init.c │ │ │ ├── rematrix.asm │ │ │ ├── rematrix_init.c │ │ │ ├── resample.asm │ │ │ ├── resample_init.c │ │ │ └── w64xmmtest.c │ ├── libswscale │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── hscale.S │ │ │ ├── output.S │ │ │ ├── swscale.c │ │ │ ├── swscale_unscaled.c │ │ │ └── yuv2rgb_neon.S │ │ ├── alphablend.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── hscale.S │ │ │ ├── output.S │ │ │ ├── rgb2yuv_neon_16.S │ │ │ ├── rgb2yuv_neon_32.S │ │ │ ├── rgb2yuv_neon_common.S │ │ │ ├── swscale.c │ │ │ ├── swscale_unscaled.c │ │ │ └── yuv2rgb_neon.S │ │ ├── bayer_template.c │ │ ├── gamma.c │ │ ├── hscale.c │ │ ├── hscale_fast_bilinear.c │ │ ├── input.c │ │ ├── libswscale.v │ │ ├── log2_tab.c │ │ ├── options.c │ │ ├── output.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── swscale_altivec.c │ │ │ ├── yuv2rgb_altivec.c │ │ │ ├── yuv2rgb_altivec.h │ │ │ └── yuv2yuv_altivec.c │ │ ├── rgb2rgb.c │ │ ├── rgb2rgb.h │ │ ├── rgb2rgb_template.c │ │ ├── slice.c │ │ ├── swscale.c │ │ ├── swscale.h │ │ ├── swscale_internal.h │ │ ├── swscale_unscaled.c │ │ ├── swscaleres.rc │ │ ├── tests │ │ │ ├── colorspace.c │ │ │ ├── pixdesc_query.c │ │ │ └── swscale.c │ │ ├── utils.c │ │ ├── version.h │ │ ├── vscale.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── hscale_fast_bilinear_simd.c │ │ │ ├── input.asm │ │ │ ├── output.asm │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_template.c │ │ │ ├── scale.asm │ │ │ ├── swscale.c │ │ │ ├── swscale_template.c │ │ │ ├── w64xmmtest.c │ │ │ ├── yuv2rgb.c │ │ │ └── yuv2rgb_template.c │ │ └── yuv2rgb.c │ ├── presets │ │ ├── libvpx-1080p.ffpreset │ │ ├── libvpx-1080p50_60.ffpreset │ │ ├── libvpx-360p.ffpreset │ │ ├── libvpx-720p.ffpreset │ │ └── libvpx-720p50_60.ffpreset │ ├── tests │ │ ├── Makefile │ │ ├── api │ │ │ ├── Makefile │ │ │ ├── api-band-test.c │ │ │ ├── api-codec-param-test.c │ │ │ ├── api-flac-test.c │ │ │ ├── api-h264-test.c │ │ │ ├── api-seek-test.c │ │ │ └── api-threadmessage-test.c │ │ ├── audiogen.c │ │ ├── audiomatch.c │ │ ├── base64.c │ │ ├── checkasm │ │ │ ├── Makefile │ │ │ ├── aacpsdsp.c │ │ │ ├── aarch64 │ │ │ │ └── checkasm.S │ │ │ ├── alacdsp.c │ │ │ ├── arm │ │ │ │ └── checkasm.S │ │ │ ├── audiodsp.c │ │ │ ├── blockdsp.c │ │ │ ├── bswapdsp.c │ │ │ ├── checkasm.c │ │ │ ├── checkasm.h │ │ │ ├── exrdsp.c │ │ │ ├── fixed_dsp.c │ │ │ ├── flacdsp.c │ │ │ ├── float_dsp.c │ │ │ ├── fmtconvert.c │ │ │ ├── g722dsp.c │ │ │ ├── h264dsp.c │ │ │ ├── h264pred.c │ │ │ ├── h264qpel.c │ │ │ ├── hevc_add_res.c │ │ │ ├── hevc_idct.c │ │ │ ├── jpeg2000dsp.c │ │ │ ├── llviddsp.c │ │ │ ├── pixblockdsp.c │ │ │ ├── sbrdsp.c │ │ │ ├── synth_filter.c │ │ │ ├── v210enc.c │ │ │ ├── vf_blend.c │ │ │ ├── vf_colorspace.c │ │ │ ├── videodsp.c │ │ │ ├── vp8dsp.c │ │ │ ├── vp9dsp.c │ │ │ └── x86 │ │ │ │ └── checkasm.asm │ │ ├── copycooker.sh │ │ ├── extended.ffconcat │ │ ├── fate-run.sh │ │ ├── fate-valgrind.supp │ │ ├── fate.sh │ │ ├── fate │ │ │ ├── aac.mak │ │ │ ├── ac3.mak │ │ │ ├── acodec.mak │ │ │ ├── adpcm.mak │ │ │ ├── alac.mak │ │ │ ├── als.mak │ │ │ ├── amrnb.mak │ │ │ ├── amrwb.mak │ │ │ ├── api.mak │ │ │ ├── apng.mak │ │ │ ├── atrac.mak │ │ │ ├── audio.mak │ │ │ ├── avformat.mak │ │ │ ├── bmp.mak │ │ │ ├── canopus.mak │ │ │ ├── cdxl.mak │ │ │ ├── checkasm.mak │ │ │ ├── concatdec.mak │ │ │ ├── cover-art.mak │ │ │ ├── dca.mak │ │ │ ├── demux.mak │ │ │ ├── dfa.mak │ │ │ ├── dnxhd.mak │ │ │ ├── dpcm.mak │ │ │ ├── ea.mak │ │ │ ├── exif.mak │ │ │ ├── ffmpeg.mak │ │ │ ├── ffprobe.mak │ │ │ ├── fft.mak │ │ │ ├── fifo-muxer.mak │ │ │ ├── filter-audio.mak │ │ │ ├── filter-video.mak │ │ │ ├── fits.mak │ │ │ ├── flac.mak │ │ │ ├── flvenc.mak │ │ │ ├── gapless.mak │ │ │ ├── gif.mak │ │ │ ├── h264.mak │ │ │ ├── hevc.mak │ │ │ ├── image.mak │ │ │ ├── indeo.mak │ │ │ ├── libavcodec.mak │ │ │ ├── libavdevice.mak │ │ │ ├── libavformat.mak │ │ │ ├── libavresample.mak │ │ │ ├── libavutil.mak │ │ │ ├── libswresample.mak │ │ │ ├── libswscale.mak │ │ │ ├── lossless-audio.mak │ │ │ ├── lossless-video.mak │ │ │ ├── matroska.mak │ │ │ ├── microsoft.mak │ │ │ ├── monkeysaudio.mak │ │ │ ├── mov.mak │ │ │ ├── mp3.mak │ │ │ ├── mpc.mak │ │ │ ├── mpeg4.mak │ │ │ ├── mpegts.mak │ │ │ ├── mxf.mak │ │ │ ├── opus.mak │ │ │ ├── pcm.mak │ │ │ ├── pixlet.mak │ │ │ ├── probe.mak │ │ │ ├── prores.mak │ │ │ ├── qt.mak │ │ │ ├── qtrle.mak │ │ │ ├── real.mak │ │ │ ├── screen.mak │ │ │ ├── seek.mak │ │ │ ├── source-check.sh │ │ │ ├── source.mak │ │ │ ├── speedhq.mak │ │ │ ├── subtitles.mak │ │ │ ├── utvideo.mak │ │ │ ├── vcodec.mak │ │ │ ├── video.mak │ │ │ ├── voice.mak │ │ │ ├── vorbis.mak │ │ │ ├── vpx.mak │ │ │ ├── vqf.mak │ │ │ ├── wavpack.mak │ │ │ ├── wma.mak │ │ │ └── xvid.mak │ │ ├── ffserver-regression.sh │ │ ├── ffserver.conf │ │ ├── ffserver.regression.ref │ │ ├── filtergraphs │ │ │ ├── alphamerge_alphaextract_rgb │ │ │ ├── alphamerge_alphaextract_yuv │ │ │ ├── anequalizer │ │ │ ├── channelmap_one_int │ │ │ ├── channelmap_one_str │ │ │ ├── colorkey │ │ │ ├── compand │ │ │ ├── concat │ │ │ ├── firequalizer │ │ │ ├── gradfun │ │ │ ├── hqdn3d │ │ │ ├── hstack │ │ │ ├── lavr_mix_output_zero │ │ │ ├── mergeplanes │ │ │ ├── overlay │ │ │ ├── overlay-dvdsub-2397 │ │ │ ├── overlay_nv12 │ │ │ ├── overlay_nv21 │ │ │ ├── overlay_rgb │ │ │ ├── overlay_yuv420 │ │ │ ├── overlay_yuv422 │ │ │ ├── overlay_yuv444 │ │ │ ├── scale2ref_keep_aspect │ │ │ ├── scalenorm │ │ │ ├── select-alternate │ │ │ ├── setpts │ │ │ └── vstack │ │ ├── lavf-regression.sh │ │ ├── md5.sh │ │ ├── ref │ │ │ ├── acodec │ │ │ │ ├── adpcm-adx │ │ │ │ ├── adpcm-adx-trellis │ │ │ │ ├── adpcm-ima_qt │ │ │ │ ├── adpcm-ima_qt-trellis │ │ │ │ ├── adpcm-ima_wav │ │ │ │ ├── adpcm-ima_wav-trellis │ │ │ │ ├── adpcm-ms │ │ │ │ ├── adpcm-ms-trellis │ │ │ │ ├── adpcm-swf │ │ │ │ ├── adpcm-swf-trellis │ │ │ │ ├── adpcm-yamaha │ │ │ │ ├── adpcm-yamaha-trellis │ │ │ │ ├── adpcm_ima_qt │ │ │ │ ├── alac │ │ │ │ ├── flac │ │ │ │ ├── flac-exact-rice │ │ │ │ ├── g723_1 │ │ │ │ ├── mp2 │ │ │ │ ├── mp2fixed │ │ │ │ ├── pcm-alaw │ │ │ │ ├── pcm-f32be │ │ │ │ ├── pcm-f32le │ │ │ │ ├── pcm-f64be │ │ │ │ ├── pcm-f64le │ │ │ │ ├── pcm-mulaw │ │ │ │ ├── pcm-s16be │ │ │ │ ├── pcm-s16be_planar │ │ │ │ ├── pcm-s16le │ │ │ │ ├── pcm-s16le_planar │ │ │ │ ├── pcm-s24be │ │ │ │ ├── pcm-s24le │ │ │ │ ├── pcm-s24le_planar │ │ │ │ ├── pcm-s32be │ │ │ │ ├── pcm-s32le │ │ │ │ ├── pcm-s32le_planar │ │ │ │ ├── pcm-s8 │ │ │ │ ├── pcm-s8_planar │ │ │ │ ├── pcm-u16be │ │ │ │ ├── pcm-u16le │ │ │ │ ├── pcm-u24be │ │ │ │ ├── pcm-u24le │ │ │ │ ├── pcm-u32be │ │ │ │ ├── pcm-u32le │ │ │ │ ├── pcm-u8 │ │ │ │ ├── roqaudio │ │ │ │ ├── s302m │ │ │ │ ├── tta │ │ │ │ └── wavpack │ │ │ ├── fate │ │ │ │ ├── 012v │ │ │ │ ├── 4xm-1 │ │ │ │ ├── 4xm-2 │ │ │ │ ├── 8bps │ │ │ │ ├── aac-autobsf-adtstoasc │ │ │ │ ├── aasc │ │ │ │ ├── acodec-aref │ │ │ │ ├── adpcm-4xm │ │ │ │ ├── adpcm-afc │ │ │ │ ├── adpcm-creative │ │ │ │ ├── adpcm-creative-8-2.6bit │ │ │ │ ├── adpcm-creative-8-2bit │ │ │ │ ├── adpcm-creative-8-4bit │ │ │ │ ├── adpcm-dtk │ │ │ │ ├── adpcm-ea-1 │ │ │ │ ├── adpcm-ea-2 │ │ │ │ ├── adpcm-ea-maxis-xa │ │ │ │ ├── adpcm-ea-r1 │ │ │ │ ├── adpcm-ea-r2 │ │ │ │ ├── adpcm-ea-r3 │ │ │ │ ├── adpcm-ima-amv │ │ │ │ ├── adpcm-ima-apc │ │ │ │ ├── adpcm-ima-dk3 │ │ │ │ ├── adpcm-ima-dk4 │ │ │ │ ├── adpcm-ima-ea-eacs │ │ │ │ ├── adpcm-ima-ea-sead │ │ │ │ ├── adpcm-ima-iss │ │ │ │ ├── adpcm-ima-oki │ │ │ │ ├── adpcm-ima-rad │ │ │ │ ├── adpcm-ima-smjpeg │ │ │ │ ├── adpcm-ima-ws │ │ │ │ ├── adpcm-ima_wav-stereo │ │ │ │ ├── adpcm-ms-mono │ │ │ │ ├── adpcm-thp │ │ │ │ ├── adpcm-vima │ │ │ │ ├── adpcm-xa │ │ │ │ ├── adpcm_ms-stereo │ │ │ │ ├── adts-demux │ │ │ │ ├── adts-id3v1-demux │ │ │ │ ├── adtstoasc_ticket3715 │ │ │ │ ├── aea-demux │ │ │ │ ├── aic │ │ │ │ ├── aic-oddsize │ │ │ │ ├── alg-mm │ │ │ │ ├── aliaspix-bgr │ │ │ │ ├── aliaspix-gray │ │ │ │ ├── amv │ │ │ │ ├── ansi │ │ │ │ ├── ansi256 │ │ │ │ ├── api-h264 │ │ │ │ ├── api-mjpeg-codec-param │ │ │ │ ├── api-png-codec-param │ │ │ │ ├── apng-clock │ │ │ │ ├── apng-osample │ │ │ │ ├── armovie-escape124 │ │ │ │ ├── armovie-escape130 │ │ │ │ ├── asf-repldata │ │ │ │ ├── ast │ │ │ │ ├── async │ │ │ │ ├── audio_fifo │ │ │ │ ├── audiomatch-afconvert-16000-mono-he-adts │ │ │ │ ├── audiomatch-afconvert-16000-mono-he-m4a │ │ │ │ ├── audiomatch-afconvert-16000-mono-lc-adts │ │ │ │ ├── audiomatch-afconvert-16000-mono-lc-m4a │ │ │ │ ├── audiomatch-afconvert-16000-stereo-he-adts │ │ │ │ ├── audiomatch-afconvert-16000-stereo-he-m4a │ │ │ │ ├── audiomatch-afconvert-16000-stereo-he2-adts │ │ │ │ ├── audiomatch-afconvert-16000-stereo-he2-m4a │ │ │ │ ├── audiomatch-afconvert-16000-stereo-lc-adts │ │ │ │ ├── audiomatch-afconvert-16000-stereo-lc-m4a │ │ │ │ ├── audiomatch-afconvert-44100-mono-he-adts │ │ │ │ ├── audiomatch-afconvert-44100-mono-he-m4a │ │ │ │ ├── audiomatch-afconvert-44100-mono-lc-adts │ │ │ │ ├── audiomatch-afconvert-44100-mono-lc-m4a │ │ │ │ ├── audiomatch-afconvert-44100-stereo-he-adts │ │ │ │ ├── audiomatch-afconvert-44100-stereo-he-m4a │ │ │ │ ├── audiomatch-afconvert-44100-stereo-he2-adts │ │ │ │ ├── audiomatch-afconvert-44100-stereo-he2-m4a │ │ │ │ ├── audiomatch-afconvert-44100-stereo-lc-adts │ │ │ │ ├── audiomatch-afconvert-44100-stereo-lc-m4a │ │ │ │ ├── audiomatch-dolby-44100-mono-he-mp4 │ │ │ │ ├── audiomatch-dolby-44100-mono-lc-mp4 │ │ │ │ ├── audiomatch-dolby-44100-stereo-he-mp4 │ │ │ │ ├── audiomatch-dolby-44100-stereo-he2-mp4 │ │ │ │ ├── audiomatch-dolby-44100-stereo-lc-mp4 │ │ │ │ ├── audiomatch-faac-16000-mono-lc-adts │ │ │ │ ├── audiomatch-faac-16000-mono-lc-m4a │ │ │ │ ├── audiomatch-faac-16000-stereo-lc-adts │ │ │ │ ├── audiomatch-faac-16000-stereo-lc-m4a │ │ │ │ ├── audiomatch-faac-44100-mono-lc-adts │ │ │ │ ├── audiomatch-faac-44100-mono-lc-m4a │ │ │ │ ├── audiomatch-faac-44100-stereo-lc-adts │ │ │ │ ├── audiomatch-faac-44100-stereo-lc-m4a │ │ │ │ ├── audiomatch-nero-16000-mono-he-m4a │ │ │ │ ├── audiomatch-nero-16000-mono-lc-m4a │ │ │ │ ├── audiomatch-nero-16000-stereo-he-m4a │ │ │ │ ├── audiomatch-nero-16000-stereo-he2-m4a │ │ │ │ ├── audiomatch-nero-16000-stereo-lc-m4a │ │ │ │ ├── audiomatch-nero-44100-mono-he-m4a │ │ │ │ ├── audiomatch-nero-44100-mono-lc-m4a │ │ │ │ ├── audiomatch-nero-44100-stereo-he-m4a │ │ │ │ ├── audiomatch-nero-44100-stereo-he2-m4a │ │ │ │ ├── audiomatch-nero-44100-stereo-lc-m4a │ │ │ │ ├── audiomatch-quicktime7-44100-stereo-lc-mp4 │ │ │ │ ├── audiomatch-quicktimeX-44100-stereo-lc-m4a │ │ │ │ ├── audiomatch-square-aac │ │ │ │ ├── audiomatch-square-mp3 │ │ │ │ ├── auravision-v1 │ │ │ │ ├── auravision-v2 │ │ │ │ ├── avio-direct │ │ │ │ ├── avstring │ │ │ │ ├── base64 │ │ │ │ ├── bcstm │ │ │ │ ├── bethsoft-vid │ │ │ │ ├── bfi │ │ │ │ ├── bfstm │ │ │ │ ├── bink-demux │ │ │ │ ├── bink-video-b │ │ │ │ ├── bink-video-f │ │ │ │ ├── bink-video-i │ │ │ │ ├── binsub-mksenc │ │ │ │ ├── binsub-movtextenc │ │ │ │ ├── blowfish │ │ │ │ ├── bmp-15bit │ │ │ │ ├── bmp-15bit-mask │ │ │ │ ├── bmp-16bit-mask │ │ │ │ ├── bmp-1bit │ │ │ │ ├── bmp-24bit │ │ │ │ ├── bmp-32bit │ │ │ │ ├── bmp-32bit-mask │ │ │ │ ├── bmp-4bit │ │ │ │ ├── bmp-4bit-os2 │ │ │ │ ├── bmp-8bit │ │ │ │ ├── bmp-8bit-os2 │ │ │ │ ├── bmp-rle4 │ │ │ │ ├── bmp-rle8 │ │ │ │ ├── bmpparser │ │ │ │ ├── bmv-audio │ │ │ │ ├── bmv-video │ │ │ │ ├── bprint │ │ │ │ ├── brenderpix-24 │ │ │ │ ├── brenderpix-565 │ │ │ │ ├── brenderpix-defpal │ │ │ │ ├── brenderpix-intpal │ │ │ │ ├── brenderpix-y400a │ │ │ │ ├── brstm │ │ │ │ ├── caf │ │ │ │ ├── canopus-cllc-argb │ │ │ │ ├── canopus-cllc-rgb │ │ │ │ ├── canopus-cllc-yuy2-noblock │ │ │ │ ├── canopus-hq_hqa-hq │ │ │ │ ├── canopus-hq_hqa-hqa │ │ │ │ ├── canopus-hq_hqa-inter │ │ │ │ ├── canopus-hqx422 │ │ │ │ ├── canopus-hqx422a │ │ │ │ ├── cavs │ │ │ │ ├── cdgraphics │ │ │ │ ├── cdxl-bitline-ham6 │ │ │ │ ├── cdxl-demux │ │ │ │ ├── cdxl-ham6 │ │ │ │ ├── cdxl-ham8 │ │ │ │ ├── cdxl-pal8 │ │ │ │ ├── cdxl-pal8-small │ │ │ │ ├── cine-demux │ │ │ │ ├── cljr │ │ │ │ ├── color_utils │ │ │ │ ├── concat-demuxer-extended-lavf-mxf │ │ │ │ ├── concat-demuxer-extended-lavf-mxf_d10 │ │ │ │ ├── concat-demuxer-simple1-lavf-mxf │ │ │ │ ├── concat-demuxer-simple1-lavf-mxf_d10 │ │ │ │ ├── concat-demuxer-simple2-lavf-ts │ │ │ │ ├── copy-psp │ │ │ │ ├── copy-trac2211-avi │ │ │ │ ├── copy-trac236 │ │ │ │ ├── copy-trac3074 │ │ │ │ ├── copy-trac4914 │ │ │ │ ├── copy-trac4914-avi │ │ │ │ ├── corepng │ │ │ │ ├── crc │ │ │ │ ├── creatureshock-avs │ │ │ │ ├── cscd │ │ │ │ ├── cvid-grayscale │ │ │ │ ├── cvid-palette │ │ │ │ ├── cvid-partial │ │ │ │ ├── cyberia-c93 │ │ │ │ ├── cyuv │ │ │ │ ├── d-cinema-demux │ │ │ │ ├── d-eavp6-demux │ │ │ │ ├── dca-xll │ │ │ │ ├── dca-xll_51_16_192_768_0 │ │ │ │ ├── dca-xll_51_16_192_768_0-dmix_2 │ │ │ │ ├── dca-xll_51_16_192_768_0-dmix_6 │ │ │ │ ├── dca-xll_51_16_192_768_1 │ │ │ │ ├── dca-xll_51_16_192_768_1-dmix_2 │ │ │ │ ├── dca-xll_51_16_192_768_1-dmix_6 │ │ │ │ ├── dca-xll_51_24_48_768 │ │ │ │ ├── dca-xll_51_24_48_768-dmix_2 │ │ │ │ ├── dca-xll_51_24_48_768-dmix_6 │ │ │ │ ├── dca-xll_51_24_48_none │ │ │ │ ├── dca-xll_51_24_48_none-dmix_2 │ │ │ │ ├── dca-xll_51_24_48_none-dmix_6 │ │ │ │ ├── dca-xll_71_24_48_768_0 │ │ │ │ ├── dca-xll_71_24_48_768_0-dmix_2 │ │ │ │ ├── dca-xll_71_24_48_768_0-dmix_6 │ │ │ │ ├── dca-xll_71_24_48_768_1 │ │ │ │ ├── dca-xll_71_24_48_768_1-dmix_2 │ │ │ │ ├── dca-xll_71_24_48_768_1-dmix_6 │ │ │ │ ├── dca-xll_71_24_96_768 │ │ │ │ ├── dca-xll_71_24_96_768-dmix_2 │ │ │ │ ├── dca-xll_71_24_96_768-dmix_6 │ │ │ │ ├── dca-xll_x96_51_24_96_1509 │ │ │ │ ├── dca-xll_x96_51_24_96_1509-dmix_2 │ │ │ │ ├── dca-xll_x96_51_24_96_1509-dmix_6 │ │ │ │ ├── dca-xll_xch_61_24_48_768 │ │ │ │ ├── dca-xll_xch_61_24_48_768-dmix_2 │ │ │ │ ├── dca-xll_xch_61_24_48_768-dmix_6 │ │ │ │ ├── dcinema-encode │ │ │ │ ├── dds-alpha8 │ │ │ │ ├── dds-argb │ │ │ │ ├── dds-argb-aexp │ │ │ │ ├── dds-dx10-bc1 │ │ │ │ ├── dds-dx10-bc1a │ │ │ │ ├── dds-dx10-bc2 │ │ │ │ ├── dds-dx10-bc3 │ │ │ │ ├── dds-dx10-bc4 │ │ │ │ ├── dds-dx10-bc5 │ │ │ │ ├── dds-dxt1 │ │ │ │ ├── dds-dxt1-normalmap │ │ │ │ ├── dds-dxt1a │ │ │ │ ├── dds-dxt2 │ │ │ │ ├── dds-dxt3 │ │ │ │ ├── dds-dxt4 │ │ │ │ ├── dds-dxt5 │ │ │ │ ├── dds-dxt5-aexp │ │ │ │ ├── dds-dxt5-normalmap │ │ │ │ ├── dds-dxt5-normalmap-ati │ │ │ │ ├── dds-dxt5-rbxg │ │ │ │ ├── dds-dxt5-rgxb │ │ │ │ ├── dds-dxt5-rxbg │ │ │ │ ├── dds-dxt5-rxgb │ │ │ │ ├── dds-dxt5-xgbr │ │ │ │ ├── dds-dxt5-xgxr │ │ │ │ ├── dds-dxt5-xrbg │ │ │ │ ├── dds-dxt5-ycocg │ │ │ │ ├── dds-dxt5-ycocg-scaled │ │ │ │ ├── dds-monob │ │ │ │ ├── dds-pal │ │ │ │ ├── dds-pal-ati │ │ │ │ ├── dds-rgb1555 │ │ │ │ ├── dds-rgb16 │ │ │ │ ├── dds-rgb24 │ │ │ │ ├── dds-rgb555 │ │ │ │ ├── dds-rgba │ │ │ │ ├── dds-rgtc1s │ │ │ │ ├── dds-rgtc1u │ │ │ │ ├── dds-rgtc2s │ │ │ │ ├── dds-rgtc2u │ │ │ │ ├── dds-rgtc2u-xy │ │ │ │ ├── dds-uyvy │ │ │ │ ├── dds-xbgr │ │ │ │ ├── dds-xrgb │ │ │ │ ├── dds-y │ │ │ │ ├── dds-ya │ │ │ │ ├── dds-ycocg │ │ │ │ ├── dds-yuyv │ │ │ │ ├── delphine-cin-audio │ │ │ │ ├── delphine-cin-video │ │ │ │ ├── deluxepaint-anm │ │ │ │ ├── dfa1 │ │ │ │ ├── dfa10 │ │ │ │ ├── dfa11 │ │ │ │ ├── dfa2 │ │ │ │ ├── dfa3 │ │ │ │ ├── dfa4 │ │ │ │ ├── dfa5 │ │ │ │ ├── dfa6 │ │ │ │ ├── dfa7 │ │ │ │ ├── dfa8 │ │ │ │ ├── dfa9 │ │ │ │ ├── dict │ │ │ │ ├── dirac │ │ │ │ ├── dirac-low-delay │ │ │ │ ├── display │ │ │ │ ├── dnxhd-mbaff │ │ │ │ ├── dnxhr-12bit │ │ │ │ ├── dnxhr-444 │ │ │ │ ├── dnxhr-parse │ │ │ │ ├── dnxhr-prefix1 │ │ │ │ ├── dnxhr-prefix2 │ │ │ │ ├── dnxhr-prefix3 │ │ │ │ ├── dnxhr-prefix4 │ │ │ │ ├── dnxhr-prefix5 │ │ │ │ ├── dpcm-idroq │ │ │ │ ├── dpcm-interplay │ │ │ │ ├── dpcm-sierra │ │ │ │ ├── dpcm-xan │ │ │ │ ├── dpx │ │ │ │ ├── dpxparser │ │ │ │ ├── dss-lp │ │ │ │ ├── dss-sp │ │ │ │ ├── dxa-feeble │ │ │ │ ├── dxa-scummvm │ │ │ │ ├── dxtory │ │ │ │ ├── dxv-dxt1 │ │ │ │ ├── dxv-dxt5 │ │ │ │ ├── dxv3-dxt1 │ │ │ │ ├── dxv3-dxt5 │ │ │ │ ├── ea-cdata │ │ │ │ ├── ea-cmv │ │ │ │ ├── ea-mad │ │ │ │ ├── ea-tgq │ │ │ │ ├── ea-tgv-1 │ │ │ │ ├── ea-tgv-2 │ │ │ │ ├── ea-tqi │ │ │ │ ├── eval │ │ │ │ ├── exif-image-embedded │ │ │ │ ├── exif-image-jpg │ │ │ │ ├── exif-image-tiff │ │ │ │ ├── exif-image-webp │ │ │ │ ├── exr-rgb-b44a-half-negative-4x4 │ │ │ │ ├── exr-rgb-scanline-b44-half-float-12x8-l1 │ │ │ │ ├── exr-rgb-scanline-b44-half-float-12x8-l2 │ │ │ │ ├── exr-rgb-scanline-b44-uint32 │ │ │ │ ├── exr-rgb-scanline-float-b44 │ │ │ │ ├── exr-rgb-scanline-float-piz-48x32 │ │ │ │ ├── exr-rgb-scanline-half-b44-12x8 │ │ │ │ ├── exr-rgb-scanline-half-b44-13x9 │ │ │ │ ├── exr-rgb-scanline-half-piz-bw │ │ │ │ ├── exr-rgb-scanline-half-piz-color │ │ │ │ ├── exr-rgb-scanline-half-piz-dw-t01 │ │ │ │ ├── exr-rgb-scanline-half-piz-dw-t08 │ │ │ │ ├── exr-rgb-scanline-none-negative-red │ │ │ │ ├── exr-rgb-scanline-pxr24-float-12x8 │ │ │ │ ├── exr-rgb-scanline-pxr24-float-half-l1 │ │ │ │ ├── exr-rgb-scanline-pxr24-float-half-l2 │ │ │ │ ├── exr-rgb-scanline-pxr24-half-float-l1 │ │ │ │ ├── exr-rgb-scanline-pxr24-half-float-l2 │ │ │ │ ├── exr-rgb-scanline-pxr24-half-uint32-13x9 │ │ │ │ ├── exr-rgb-scanline-pxr24-uint32 │ │ │ │ ├── exr-rgb-scanline-raw-half-float-l1 │ │ │ │ ├── exr-rgb-scanline-raw-half-float-l2 │ │ │ │ ├── exr-rgb-scanline-rle-half-float-l1 │ │ │ │ ├── exr-rgb-scanline-rle-half-float-l2 │ │ │ │ ├── exr-rgb-scanline-zip-half-float-l1 │ │ │ │ ├── exr-rgb-scanline-zip-half-float-l2 │ │ │ │ ├── exr-rgb-scanline-zip1-half-float-l1 │ │ │ │ ├── exr-rgb-scanline-zip1-half-float-l1-zero-offsets │ │ │ │ ├── exr-rgb-scanline-zip1-half-float-l2 │ │ │ │ ├── exr-rgb-tile-float-raw-12x8 │ │ │ │ ├── exr-rgb-tile-float-raw-150x130 │ │ │ │ ├── exr-rgb-tile-half-float-b44-12x8-l1 │ │ │ │ ├── exr-rgb-tile-half-float-b44-12x8-l2 │ │ │ │ ├── exr-rgb-tile-half-raw-12x8 │ │ │ │ ├── exr-rgb-tile-pxr24-float-half-l1 │ │ │ │ ├── exr-rgb-tile-pxr24-float-half-l2 │ │ │ │ ├── exr-rgb-tile-pxr24-half-float-l1 │ │ │ │ ├── exr-rgb-tile-pxr24-half-float-l2 │ │ │ │ ├── exr-rgb-tile-raw-half-float-l1 │ │ │ │ ├── exr-rgb-tile-raw-half-float-l2 │ │ │ │ ├── exr-rgb-tile-rle-half-float-l1 │ │ │ │ ├── exr-rgb-tile-rle-half-float-l2 │ │ │ │ ├── exr-rgb-tile-zip-half-float-l1 │ │ │ │ ├── exr-rgb-tile-zip-half-float-l2 │ │ │ │ ├── exr-rgb-tile-zip1-half-float-l1 │ │ │ │ ├── exr-rgb-tile-zip1-half-float-l2 │ │ │ │ ├── exr-rgba-multiscanline-half-b44 │ │ │ │ ├── exr-rgba-scanline-float-half-b44-12x8-l1 │ │ │ │ ├── exr-rgba-scanline-float-half-b44-12x8-l2 │ │ │ │ ├── exr-rgba-scanline-float-half-b44-13x9-l1 │ │ │ │ ├── exr-rgba-scanline-float-half-b44-13x9-l2 │ │ │ │ ├── exr-rgba-scanline-float-half-b44a-12x8-l1 │ │ │ │ ├── exr-rgba-scanline-float-half-b44a-12x8-l2 │ │ │ │ ├── exr-rgba-scanline-float-half-b44a-13x9-l1 │ │ │ │ ├── exr-rgba-scanline-float-half-b44a-13x9-l2 │ │ │ │ ├── exr-slice-pxr24 │ │ │ │ ├── exr-slice-raw │ │ │ │ ├── exr-slice-rle │ │ │ │ ├── exr-slice-zip1 │ │ │ │ ├── exr-slice-zip16 │ │ │ │ ├── exr-y-scanline-zip-half-12x8 │ │ │ │ ├── exr-y-tile-zip-half-12x8 │ │ │ │ ├── ffmpeg-bsf-remove-e │ │ │ │ ├── ffmpeg-bsf-remove-k │ │ │ │ ├── ffmpeg-bsf-remove-r │ │ │ │ ├── ffmpeg-filter_colorkey │ │ │ │ ├── ffmpeg-filter_complex │ │ │ │ ├── ffmpeg-lavfi │ │ │ │ ├── ffprobe_compact │ │ │ │ ├── ffprobe_csv │ │ │ │ ├── ffprobe_default │ │ │ │ ├── ffprobe_flat │ │ │ │ ├── ffprobe_ini │ │ │ │ ├── ffprobe_json │ │ │ │ ├── ffprobe_xml │ │ │ │ ├── fic-avi │ │ │ │ ├── fifo │ │ │ │ ├── fifo-muxer-tst │ │ │ │ ├── film-cvid │ │ │ │ ├── filter-2xbr │ │ │ │ ├── filter-3xbr │ │ │ │ ├── filter-4xbr │ │ │ │ ├── filter-acrossfade │ │ │ │ ├── filter-adelay │ │ │ │ ├── filter-aecho │ │ │ │ ├── filter-aemphasis │ │ │ │ ├── filter-aemphasis-50fm │ │ │ │ ├── filter-aemphasis-75kf │ │ │ │ ├── filter-afade-esin │ │ │ │ ├── filter-afade-exp │ │ │ │ ├── filter-afade-hsin │ │ │ │ ├── filter-afade-iqsin │ │ │ │ ├── filter-afade-log │ │ │ │ ├── filter-afade-qsin │ │ │ │ ├── filter-agate │ │ │ │ ├── filter-alimiter │ │ │ │ ├── filter-allrgb │ │ │ │ ├── filter-allyuv │ │ │ │ ├── filter-alphaextract_alphamerge_rgb │ │ │ │ ├── filter-alphaextract_alphamerge_yuv │ │ │ │ ├── filter-amerge │ │ │ │ ├── filter-anequalizer │ │ │ │ ├── filter-apad │ │ │ │ ├── filter-asetnsamples-nopad │ │ │ │ ├── filter-asetnsamples-pad │ │ │ │ ├── filter-asetrate │ │ │ │ ├── filter-atrim-duration │ │ │ │ ├── filter-atrim-mixed │ │ │ │ ├── filter-atrim-samples │ │ │ │ ├── filter-atrim-time │ │ │ │ ├── filter-boxblur │ │ │ │ ├── filter-chorus │ │ │ │ ├── filter-codecview-mvs │ │ │ │ ├── filter-colorchannelmixer │ │ │ │ ├── filter-colormatrix1 │ │ │ │ ├── filter-colormatrix2 │ │ │ │ ├── filter-compand │ │ │ │ ├── filter-concat │ │ │ │ ├── filter-crop │ │ │ │ ├── filter-crop_scale │ │ │ │ ├── filter-crop_scale_vflip │ │ │ │ ├── filter-crop_vflip │ │ │ │ ├── filter-curves │ │ │ │ ├── filter-dcshift │ │ │ │ ├── filter-delogo │ │ │ │ ├── filter-drawbox │ │ │ │ ├── filter-earwax │ │ │ │ ├── filter-edgedetect │ │ │ │ ├── filter-edgedetect-colormix │ │ │ │ ├── filter-extrastereo │ │ │ │ ├── filter-fade │ │ │ │ ├── filter-fieldorder │ │ │ │ ├── filter-formats │ │ │ │ ├── filter-fps │ │ │ │ ├── filter-fps-cfr │ │ │ │ ├── filter-fps-r │ │ │ │ ├── filter-framepack-columns │ │ │ │ ├── filter-framepack-frameseq │ │ │ │ ├── filter-framepack-lines │ │ │ │ ├── filter-framepack-sbs │ │ │ │ ├── filter-framepack-tab │ │ │ │ ├── filter-framerate-down │ │ │ │ ├── filter-framerate-up │ │ │ │ ├── filter-gradfun │ │ │ │ ├── filter-gradfun-sample │ │ │ │ ├── filter-histogram-levels │ │ │ │ ├── filter-hls │ │ │ │ ├── filter-hls-append │ │ │ │ ├── filter-hq2x │ │ │ │ ├── filter-hq3x │ │ │ │ ├── filter-hq4x │ │ │ │ ├── filter-hqdn3d │ │ │ │ ├── filter-hqdn3d-sample │ │ │ │ ├── filter-hstack │ │ │ │ ├── filter-hue │ │ │ │ ├── filter-idet │ │ │ │ ├── filter-interlace │ │ │ │ ├── filter-interlace-complex │ │ │ │ ├── filter-lavd-life │ │ │ │ ├── filter-lavd-scalenorm │ │ │ │ ├── filter-lavd-testsrc │ │ │ │ ├── filter-mcdeint-fast │ │ │ │ ├── filter-mcdeint-medium │ │ │ │ ├── filter-mergeplanes │ │ │ │ ├── filter-meta-4560-rotate0 │ │ │ │ ├── filter-metadata-avf-aphase-meter-mono │ │ │ │ ├── filter-metadata-avf-aphase-meter-out-of-phase │ │ │ │ ├── filter-metadata-cropdetect │ │ │ │ ├── filter-metadata-ebur128 │ │ │ │ ├── filter-metadata-readvitc-def │ │ │ │ ├── filter-metadata-readvitc-thr │ │ │ │ ├── filter-metadata-scenedetect │ │ │ │ ├── filter-metadata-silencedetect │ │ │ │ ├── filter-mpdecimate │ │ │ │ ├── filter-negate │ │ │ │ ├── filter-null │ │ │ │ ├── filter-overlay │ │ │ │ ├── filter-overlay-dvdsub-2397 │ │ │ │ ├── filter-overlay_gbrap_gbrap │ │ │ │ ├── filter-overlay_gbrp_gbrap │ │ │ │ ├── filter-overlay_rgb │ │ │ │ ├── filter-overlay_rgb_rgba │ │ │ │ ├── filter-overlay_rgba_rgba │ │ │ │ ├── filter-overlay_yuv420 │ │ │ │ ├── filter-overlay_yuv420_yuva420 │ │ │ │ ├── filter-overlay_yuv422 │ │ │ │ ├── filter-overlay_yuv422_yuva422 │ │ │ │ ├── filter-overlay_yuv444 │ │ │ │ ├── filter-overlay_yuv444_yuva444 │ │ │ │ ├── filter-overlay_yuva420_yuva420 │ │ │ │ ├── filter-overlay_yuva422_yuva422 │ │ │ │ ├── filter-overlay_yuva444_yuva444 │ │ │ │ ├── filter-pad │ │ │ │ ├── filter-palettegen-1 │ │ │ │ ├── filter-palettegen-2 │ │ │ │ ├── filter-paletteuse-bayer │ │ │ │ ├── filter-paletteuse-nodither │ │ │ │ ├── filter-paletteuse-sierra2_4a │ │ │ │ ├── filter-phase │ │ │ │ ├── filter-pixdesc-0bgr │ │ │ │ ├── filter-pixdesc-0rgb │ │ │ │ ├── filter-pixdesc-abgr │ │ │ │ ├── filter-pixdesc-argb │ │ │ │ ├── filter-pixdesc-ayuv64le │ │ │ │ ├── filter-pixdesc-bgr0 │ │ │ │ ├── filter-pixdesc-bgr24 │ │ │ │ ├── filter-pixdesc-bgr444be │ │ │ │ ├── filter-pixdesc-bgr444le │ │ │ │ ├── filter-pixdesc-bgr48be │ │ │ │ ├── filter-pixdesc-bgr48le │ │ │ │ ├── filter-pixdesc-bgr4_byte │ │ │ │ ├── filter-pixdesc-bgr555be │ │ │ │ ├── filter-pixdesc-bgr555le │ │ │ │ ├── filter-pixdesc-bgr565be │ │ │ │ ├── filter-pixdesc-bgr565le │ │ │ │ ├── filter-pixdesc-bgr8 │ │ │ │ ├── filter-pixdesc-bgra │ │ │ │ ├── filter-pixdesc-bgra64be │ │ │ │ ├── filter-pixdesc-bgra64le │ │ │ │ ├── filter-pixdesc-gbrap │ │ │ │ ├── filter-pixdesc-gbrap10be │ │ │ │ ├── filter-pixdesc-gbrap10le │ │ │ │ ├── filter-pixdesc-gbrap12be │ │ │ │ ├── filter-pixdesc-gbrap12le │ │ │ │ ├── filter-pixdesc-gbrap16be │ │ │ │ ├── filter-pixdesc-gbrap16le │ │ │ │ ├── filter-pixdesc-gbrp │ │ │ │ ├── filter-pixdesc-gbrp10be │ │ │ │ ├── filter-pixdesc-gbrp10le │ │ │ │ ├── filter-pixdesc-gbrp12be │ │ │ │ ├── filter-pixdesc-gbrp12le │ │ │ │ ├── filter-pixdesc-gbrp14be │ │ │ │ ├── filter-pixdesc-gbrp14le │ │ │ │ ├── filter-pixdesc-gbrp16be │ │ │ │ ├── filter-pixdesc-gbrp16le │ │ │ │ ├── filter-pixdesc-gbrp9be │ │ │ │ ├── filter-pixdesc-gbrp9le │ │ │ │ ├── filter-pixdesc-gray │ │ │ │ ├── filter-pixdesc-gray10be │ │ │ │ ├── filter-pixdesc-gray10le │ │ │ │ ├── filter-pixdesc-gray12be │ │ │ │ ├── filter-pixdesc-gray12le │ │ │ │ ├── filter-pixdesc-gray16be │ │ │ │ ├── filter-pixdesc-gray16le │ │ │ │ ├── filter-pixdesc-gray9be │ │ │ │ ├── filter-pixdesc-gray9le │ │ │ │ ├── filter-pixdesc-monob │ │ │ │ ├── filter-pixdesc-monow │ │ │ │ ├── filter-pixdesc-nv12 │ │ │ │ ├── filter-pixdesc-nv21 │ │ │ │ ├── filter-pixdesc-p010be │ │ │ │ ├── filter-pixdesc-p010le │ │ │ │ ├── filter-pixdesc-rgb0 │ │ │ │ ├── filter-pixdesc-rgb24 │ │ │ │ ├── filter-pixdesc-rgb444be │ │ │ │ ├── filter-pixdesc-rgb444le │ │ │ │ ├── filter-pixdesc-rgb48be │ │ │ │ ├── filter-pixdesc-rgb48le │ │ │ │ ├── filter-pixdesc-rgb4_byte │ │ │ │ ├── filter-pixdesc-rgb555be │ │ │ │ ├── filter-pixdesc-rgb555le │ │ │ │ ├── filter-pixdesc-rgb565be │ │ │ │ ├── filter-pixdesc-rgb565le │ │ │ │ ├── filter-pixdesc-rgb8 │ │ │ │ ├── filter-pixdesc-rgba │ │ │ │ ├── filter-pixdesc-rgba64be │ │ │ │ ├── filter-pixdesc-rgba64le │ │ │ │ ├── filter-pixdesc-uyvy422 │ │ │ │ ├── filter-pixdesc-xyz12be │ │ │ │ ├── filter-pixdesc-xyz12le │ │ │ │ ├── filter-pixdesc-ya8 │ │ │ │ ├── filter-pixdesc-yuv410p │ │ │ │ ├── filter-pixdesc-yuv411p │ │ │ │ ├── filter-pixdesc-yuv420p │ │ │ │ ├── filter-pixdesc-yuv420p10be │ │ │ │ ├── filter-pixdesc-yuv420p10le │ │ │ │ ├── filter-pixdesc-yuv420p12be │ │ │ │ ├── filter-pixdesc-yuv420p12le │ │ │ │ ├── filter-pixdesc-yuv420p14be │ │ │ │ ├── filter-pixdesc-yuv420p14le │ │ │ │ ├── filter-pixdesc-yuv420p16be │ │ │ │ ├── filter-pixdesc-yuv420p16le │ │ │ │ ├── filter-pixdesc-yuv420p9be │ │ │ │ ├── filter-pixdesc-yuv420p9le │ │ │ │ ├── filter-pixdesc-yuv422p │ │ │ │ ├── filter-pixdesc-yuv422p10be │ │ │ │ ├── filter-pixdesc-yuv422p10le │ │ │ │ ├── filter-pixdesc-yuv422p12be │ │ │ │ ├── filter-pixdesc-yuv422p12le │ │ │ │ ├── filter-pixdesc-yuv422p14be │ │ │ │ ├── filter-pixdesc-yuv422p14le │ │ │ │ ├── filter-pixdesc-yuv422p16be │ │ │ │ ├── filter-pixdesc-yuv422p16le │ │ │ │ ├── filter-pixdesc-yuv422p9be │ │ │ │ ├── filter-pixdesc-yuv422p9le │ │ │ │ ├── filter-pixdesc-yuv440p │ │ │ │ ├── filter-pixdesc-yuv440p10be │ │ │ │ ├── filter-pixdesc-yuv440p10le │ │ │ │ ├── filter-pixdesc-yuv440p12be │ │ │ │ ├── filter-pixdesc-yuv440p12le │ │ │ │ ├── filter-pixdesc-yuv444p │ │ │ │ ├── filter-pixdesc-yuv444p10be │ │ │ │ ├── filter-pixdesc-yuv444p10le │ │ │ │ ├── filter-pixdesc-yuv444p12be │ │ │ │ ├── filter-pixdesc-yuv444p12le │ │ │ │ ├── filter-pixdesc-yuv444p14be │ │ │ │ ├── filter-pixdesc-yuv444p14le │ │ │ │ ├── filter-pixdesc-yuv444p16be │ │ │ │ ├── filter-pixdesc-yuv444p16le │ │ │ │ ├── filter-pixdesc-yuv444p9be │ │ │ │ ├── filter-pixdesc-yuv444p9le │ │ │ │ ├── filter-pixdesc-yuva420p │ │ │ │ ├── filter-pixdesc-yuva420p10be │ │ │ │ ├── filter-pixdesc-yuva420p10le │ │ │ │ ├── filter-pixdesc-yuva420p16be │ │ │ │ ├── filter-pixdesc-yuva420p16le │ │ │ │ ├── filter-pixdesc-yuva420p9be │ │ │ │ ├── filter-pixdesc-yuva420p9le │ │ │ │ ├── filter-pixdesc-yuva422p │ │ │ │ ├── filter-pixdesc-yuva422p10be │ │ │ │ ├── filter-pixdesc-yuva422p10le │ │ │ │ ├── filter-pixdesc-yuva422p16be │ │ │ │ ├── filter-pixdesc-yuva422p16le │ │ │ │ ├── filter-pixdesc-yuva422p9be │ │ │ │ ├── filter-pixdesc-yuva422p9le │ │ │ │ ├── filter-pixdesc-yuva444p │ │ │ │ ├── filter-pixdesc-yuva444p10be │ │ │ │ ├── filter-pixdesc-yuva444p10le │ │ │ │ ├── filter-pixdesc-yuva444p16be │ │ │ │ ├── filter-pixdesc-yuva444p16le │ │ │ │ ├── filter-pixdesc-yuva444p9be │ │ │ │ ├── filter-pixdesc-yuva444p9le │ │ │ │ ├── filter-pixdesc-yuvj411p │ │ │ │ ├── filter-pixdesc-yuvj420p │ │ │ │ ├── filter-pixdesc-yuvj422p │ │ │ │ ├── filter-pixdesc-yuvj440p │ │ │ │ ├── filter-pixdesc-yuvj444p │ │ │ │ ├── filter-pixdesc-yuyv422 │ │ │ │ ├── filter-pixdesc-yvyu422 │ │ │ │ ├── filter-pixfmts-copy │ │ │ │ ├── filter-pixfmts-crop │ │ │ │ ├── filter-pixfmts-field │ │ │ │ ├── filter-pixfmts-fieldmatch │ │ │ │ ├── filter-pixfmts-fieldorder │ │ │ │ ├── filter-pixfmts-hflip │ │ │ │ ├── filter-pixfmts-histeq │ │ │ │ ├── filter-pixfmts-il │ │ │ │ ├── filter-pixfmts-kerndeint │ │ │ │ ├── filter-pixfmts-lut │ │ │ │ ├── filter-pixfmts-null │ │ │ │ ├── filter-pixfmts-pad │ │ │ │ ├── filter-pixfmts-pullup │ │ │ │ ├── filter-pixfmts-rotate │ │ │ │ ├── filter-pixfmts-scale │ │ │ │ ├── filter-pixfmts-super2xsai │ │ │ │ ├── filter-pixfmts-swapuv │ │ │ │ ├── filter-pixfmts-tinterlace_cvlpf │ │ │ │ ├── filter-pixfmts-tinterlace_merge │ │ │ │ ├── filter-pixfmts-tinterlace_pad │ │ │ │ ├── filter-pixfmts-tinterlace_vlpf │ │ │ │ ├── filter-pixfmts-vflip │ │ │ │ ├── filter-pp │ │ │ │ ├── filter-pp1 │ │ │ │ ├── filter-pp2 │ │ │ │ ├── filter-pp3 │ │ │ │ ├── filter-pp4 │ │ │ │ ├── filter-pp5 │ │ │ │ ├── filter-pp6 │ │ │ │ ├── filter-qp │ │ │ │ ├── filter-refcmp-psnr-rgb │ │ │ │ ├── filter-refcmp-psnr-yuv │ │ │ │ ├── filter-refcmp-ssim-rgb │ │ │ │ ├── filter-refcmp-ssim-yuv │ │ │ │ ├── filter-removegrain-mode-00 │ │ │ │ ├── filter-removegrain-mode-01 │ │ │ │ ├── filter-removegrain-mode-02 │ │ │ │ ├── filter-removegrain-mode-03 │ │ │ │ ├── filter-removegrain-mode-04 │ │ │ │ ├── filter-removegrain-mode-05 │ │ │ │ ├── filter-removegrain-mode-06 │ │ │ │ ├── filter-removegrain-mode-07 │ │ │ │ ├── filter-removegrain-mode-08 │ │ │ │ ├── filter-removegrain-mode-09 │ │ │ │ ├── filter-removegrain-mode-10 │ │ │ │ ├── filter-removegrain-mode-11 │ │ │ │ ├── filter-removegrain-mode-12 │ │ │ │ ├── filter-removegrain-mode-13 │ │ │ │ ├── filter-removegrain-mode-14 │ │ │ │ ├── filter-removegrain-mode-15 │ │ │ │ ├── filter-removegrain-mode-16 │ │ │ │ ├── filter-removegrain-mode-17 │ │ │ │ ├── filter-removegrain-mode-18 │ │ │ │ ├── filter-removegrain-mode-19 │ │ │ │ ├── filter-removegrain-mode-20 │ │ │ │ ├── filter-removegrain-mode-21 │ │ │ │ ├── filter-removegrain-mode-22 │ │ │ │ ├── filter-removegrain-mode-23 │ │ │ │ ├── filter-removegrain-mode-24 │ │ │ │ ├── filter-rgbtestsrc │ │ │ │ ├── filter-scale200 │ │ │ │ ├── filter-scale2ref_keep_aspect │ │ │ │ ├── filter-scale500 │ │ │ │ ├── filter-scalechroma │ │ │ │ ├── filter-select │ │ │ │ ├── filter-select-alternate │ │ │ │ ├── filter-separatefields │ │ │ │ ├── filter-setdar │ │ │ │ ├── filter-setpts │ │ │ │ ├── filter-setsar │ │ │ │ ├── filter-showpalette │ │ │ │ ├── filter-shuffleframes │ │ │ │ ├── filter-shuffleplanes-dup-luma │ │ │ │ ├── filter-shuffleplanes-swapuv │ │ │ │ ├── filter-silenceremove │ │ │ │ ├── filter-smptebars │ │ │ │ ├── filter-smptehdbars │ │ │ │ ├── filter-stereo3d-abr-ml │ │ │ │ ├── filter-stereo3d-abr-mr │ │ │ │ ├── filter-stereo3d-al-sbsl │ │ │ │ ├── filter-stereo3d-ar-abl │ │ │ │ ├── filter-stereo3d-sbsl-abl │ │ │ │ ├── filter-stereo3d-sbsl-abr │ │ │ │ ├── filter-stereo3d-sbsl-agmc │ │ │ │ ├── filter-stereo3d-sbsl-agmd │ │ │ │ ├── filter-stereo3d-sbsl-agmg │ │ │ │ ├── filter-stereo3d-sbsl-agmh │ │ │ │ ├── filter-stereo3d-sbsl-al │ │ │ │ ├── filter-stereo3d-sbsl-arbg │ │ │ │ ├── filter-stereo3d-sbsl-arcc │ │ │ │ ├── filter-stereo3d-sbsl-arcd │ │ │ │ ├── filter-stereo3d-sbsl-arcg │ │ │ │ ├── filter-stereo3d-sbsl-arch │ │ │ │ ├── filter-stereo3d-sbsl-argg │ │ │ │ ├── filter-stereo3d-sbsl-aybc │ │ │ │ ├── filter-stereo3d-sbsl-aybd │ │ │ │ ├── filter-stereo3d-sbsl-aybg │ │ │ │ ├── filter-stereo3d-sbsl-aybh │ │ │ │ ├── filter-stereo3d-sbsl-sbsr │ │ │ │ ├── filter-stereotools │ │ │ │ ├── filter-swaprect │ │ │ │ ├── filter-tblend │ │ │ │ ├── filter-telecine │ │ │ │ ├── filter-testsrc2-rgb24 │ │ │ │ ├── filter-testsrc2-rgba │ │ │ │ ├── filter-testsrc2-yuv420p │ │ │ │ ├── filter-testsrc2-yuv444p │ │ │ │ ├── filter-thumbnail │ │ │ │ ├── filter-tile │ │ │ │ ├── filter-transpose │ │ │ │ ├── filter-tremolo │ │ │ │ ├── filter-trim-duration │ │ │ │ ├── filter-trim-frame │ │ │ │ ├── filter-trim-mixed │ │ │ │ ├── filter-trim-time │ │ │ │ ├── filter-unsharp │ │ │ │ ├── filter-vectorscope_color │ │ │ │ ├── filter-vectorscope_color2 │ │ │ │ ├── filter-vectorscope_color3 │ │ │ │ ├── filter-vectorscope_color4 │ │ │ │ ├── filter-vectorscope_gray │ │ │ │ ├── filter-vectorscope_xy │ │ │ │ ├── filter-vflip │ │ │ │ ├── filter-vflip_crop │ │ │ │ ├── filter-vflip_vflip │ │ │ │ ├── filter-vstack │ │ │ │ ├── filter-w3fdif-complex │ │ │ │ ├── filter-w3fdif-simple │ │ │ │ ├── filter-waveform_column │ │ │ │ ├── filter-waveform_envelope │ │ │ │ ├── filter-waveform_row │ │ │ │ ├── filter-waveform_uv │ │ │ │ ├── filter-weave │ │ │ │ ├── filter-yadif-mode0 │ │ │ │ ├── filter-yadif-mode1 │ │ │ │ ├── filter-yadif10 │ │ │ │ ├── filter-yadif16 │ │ │ │ ├── filter-yuvtestsrc-yuv444p │ │ │ │ ├── filter-yuvtestsrc-yuv444p12 │ │ │ │ ├── fits-demux │ │ │ │ ├── fitsdec-bitpix-32 │ │ │ │ ├── fitsdec-bitpix-64 │ │ │ │ ├── fitsdec-blank_bitpix32 │ │ │ │ ├── fitsdec-ext_data_min_max │ │ │ │ ├── fitsdec-gbrap16 │ │ │ │ ├── fitsdec-gbrp │ │ │ │ ├── fitsdec-gbrp16 │ │ │ │ ├── fitsdec-gray │ │ │ │ ├── fitsdec-multi │ │ │ │ ├── fitsenc-gbrap │ │ │ │ ├── fitsenc-gbrap16be │ │ │ │ ├── fitsenc-gbrp │ │ │ │ ├── fitsenc-gbrp16be │ │ │ │ ├── fitsenc-gray │ │ │ │ ├── fitsenc-gray16be │ │ │ │ ├── flcl1905 │ │ │ │ ├── flic-af11-palette-change │ │ │ │ ├── flic-af12 │ │ │ │ ├── flic-magiccarpet │ │ │ │ ├── flv-add_keyframe_index │ │ │ │ ├── flv-demux │ │ │ │ ├── force_key_frames │ │ │ │ ├── fraps-v0 │ │ │ │ ├── fraps-v1 │ │ │ │ ├── fraps-v2 │ │ │ │ ├── fraps-v3 │ │ │ │ ├── fraps-v4 │ │ │ │ ├── fraps-v5 │ │ │ │ ├── frwu │ │ │ │ ├── g2m2 │ │ │ │ ├── g2m3 │ │ │ │ ├── g2m4 │ │ │ │ ├── g722-encode │ │ │ │ ├── g722dec-1 │ │ │ │ ├── g723_1-dec-1 │ │ │ │ ├── g723_1-dec-2 │ │ │ │ ├── g723_1-dec-3 │ │ │ │ ├── g723_1-dec-4 │ │ │ │ ├── g723_1-dec-5 │ │ │ │ ├── g723_1-dec-6 │ │ │ │ ├── g723_1-dec-7 │ │ │ │ ├── g723_1-dec-8 │ │ │ │ ├── g726-encode-2bit │ │ │ │ ├── g726-encode-3bit │ │ │ │ ├── g726-encode-4bit │ │ │ │ ├── g726-encode-5bit │ │ │ │ ├── g729-0 │ │ │ │ ├── g729-1 │ │ │ │ ├── gapless-mp3 │ │ │ │ ├── gaplessenc-itunes-to-ipod-aac │ │ │ │ ├── gaplessenc-pcm-to-mov-aac │ │ │ │ ├── gaplessinfo-itunes1 │ │ │ │ ├── gaplessinfo-itunes2 │ │ │ │ ├── gif-color │ │ │ │ ├── gif-deal │ │ │ │ ├── gif-demux │ │ │ │ ├── gif-disposal-background │ │ │ │ ├── gif-disposal-restore │ │ │ │ ├── gif-gray │ │ │ │ ├── gifenc-bgr4_byte │ │ │ │ ├── gifenc-bgr8 │ │ │ │ ├── gifenc-gray │ │ │ │ ├── gifenc-pal8 │ │ │ │ ├── gifenc-rgb4_byte │ │ │ │ ├── gifenc-rgb8 │ │ │ │ ├── gsm-ms │ │ │ │ ├── gsm-toast │ │ │ │ ├── h264-3386 │ │ │ │ ├── h264-attachment-631 │ │ │ │ ├── h264-brokensps-2580 │ │ │ │ ├── h264-bsf-mp4toannexb │ │ │ │ ├── h264-conformance-aud_mw_e │ │ │ │ ├── h264-conformance-ba1_ft_c │ │ │ │ ├── h264-conformance-ba1_sony_d │ │ │ │ ├── h264-conformance-ba2_sony_f │ │ │ │ ├── h264-conformance-ba3_sva_c │ │ │ │ ├── h264-conformance-ba_mw_d │ │ │ │ ├── h264-conformance-bamq1_jvc_c │ │ │ │ ├── h264-conformance-bamq2_jvc_c │ │ │ │ ├── h264-conformance-banm_mw_d │ │ │ │ ├── h264-conformance-basqp1_sony_c │ │ │ │ ├── h264-conformance-caba1_sony_d │ │ │ │ ├── h264-conformance-caba1_sva_b │ │ │ │ ├── h264-conformance-caba2_sony_e │ │ │ │ ├── h264-conformance-caba2_sva_b │ │ │ │ ├── h264-conformance-caba3_sony_c │ │ │ │ ├── h264-conformance-caba3_sva_b │ │ │ │ ├── h264-conformance-caba3_toshiba_e │ │ │ │ ├── h264-conformance-cabac_mot_fld0_full │ │ │ │ ├── h264-conformance-cabac_mot_frm0_full │ │ │ │ ├── h264-conformance-cabac_mot_mbaff0_full │ │ │ │ ├── h264-conformance-cabac_mot_picaff0_full │ │ │ │ ├── h264-conformance-cabaci3_sony_b │ │ │ │ ├── h264-conformance-cabast3_sony_e │ │ │ │ ├── h264-conformance-cabastbr3_sony_b │ │ │ │ ├── h264-conformance-cabref3_sand_d │ │ │ │ ├── h264-conformance-cacqp3_sony_d │ │ │ │ ├── h264-conformance-cafi1_sva_c │ │ │ │ ├── h264-conformance-cama1_sony_c │ │ │ │ ├── h264-conformance-cama1_toshiba_b │ │ │ │ ├── h264-conformance-cama1_vtc_c │ │ │ │ ├── h264-conformance-cama2_vtc_b │ │ │ │ ├── h264-conformance-cama3_sand_e │ │ │ │ ├── h264-conformance-cama3_vtc_b │ │ │ │ ├── h264-conformance-camaci3_sony_c │ │ │ │ ├── h264-conformance-camanl1_toshiba_b │ │ │ │ ├── h264-conformance-camanl2_toshiba_b │ │ │ │ ├── h264-conformance-camanl3_sand_e │ │ │ │ ├── h264-conformance-camasl3_sony_b │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l30 │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l31 │ │ │ │ ├── h264-conformance-canl1_sony_e │ │ │ │ ├── h264-conformance-canl1_sva_b │ │ │ │ ├── h264-conformance-canl1_toshiba_g │ │ │ │ ├── h264-conformance-canl2_sony_e │ │ │ │ ├── h264-conformance-canl2_sva_b │ │ │ │ ├── h264-conformance-canl3_sony_c │ │ │ │ ├── h264-conformance-canl3_sva_b │ │ │ │ ├── h264-conformance-canl4_sva_b │ │ │ │ ├── h264-conformance-canlma2_sony_c │ │ │ │ ├── h264-conformance-canlma3_sony_c │ │ │ │ ├── h264-conformance-capa1_toshiba_b │ │ │ │ ├── h264-conformance-capama3_sand_f │ │ │ │ ├── h264-conformance-capcm1_sand_e │ │ │ │ ├── h264-conformance-capcmnl1_sand_e │ │ │ │ ├── h264-conformance-capm3_sony_d │ │ │ │ ├── h264-conformance-caqp1_sony_b │ │ │ │ ├── h264-conformance-cavlc_mot_fld0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_frm0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_mbaff0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_picaff0_full_b │ │ │ │ ├── h264-conformance-cawp1_toshiba_e │ │ │ │ ├── h264-conformance-cawp5_toshiba_e │ │ │ │ ├── h264-conformance-ci1_ft_b │ │ │ │ ├── h264-conformance-ci_mw_d │ │ │ │ ├── h264-conformance-cvbs3_sony_c │ │ │ │ ├── h264-conformance-cvcanlma2_sony_c │ │ │ │ ├── h264-conformance-cvfc1_sony_c │ │ │ │ ├── h264-conformance-cvfi1_sony_d │ │ │ │ ├── h264-conformance-cvfi1_sva_c │ │ │ │ ├── h264-conformance-cvfi2_sony_h │ │ │ │ ├── h264-conformance-cvfi2_sva_c │ │ │ │ ├── h264-conformance-cvma1_sony_d │ │ │ │ ├── h264-conformance-cvma1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl2_toshiba_b │ │ │ │ ├── h264-conformance-cvmapaqp3_sony_e │ │ │ │ ├── h264-conformance-cvmaqp2_sony_g │ │ │ │ ├── h264-conformance-cvmaqp3_sony_d │ │ │ │ ├── h264-conformance-cvmp_mot_fld_l30_b │ │ │ │ ├── h264-conformance-cvmp_mot_frm_l31_b │ │ │ │ ├── h264-conformance-cvnlfi1_sony_c │ │ │ │ ├── h264-conformance-cvnlfi2_sony_h │ │ │ │ ├── h264-conformance-cvpa1_toshiba_b │ │ │ │ ├── h264-conformance-cvpcmnl1_sva_c │ │ │ │ ├── h264-conformance-cvpcmnl2_sva_c │ │ │ │ ├── h264-conformance-cvwp1_toshiba_e │ │ │ │ ├── h264-conformance-cvwp2_toshiba_e │ │ │ │ ├── h264-conformance-cvwp3_toshiba_e │ │ │ │ ├── h264-conformance-cvwp5_toshiba_e │ │ │ │ ├── h264-conformance-fi1_sony_e │ │ │ │ ├── h264-conformance-frext-alphaconformanceg │ │ │ │ ├── h264-conformance-frext-bcrm_freh10 │ │ │ │ ├── h264-conformance-frext-brcm_freh11 │ │ │ │ ├── h264-conformance-frext-brcm_freh3 │ │ │ │ ├── h264-conformance-frext-brcm_freh4 │ │ │ │ ├── h264-conformance-frext-brcm_freh5 │ │ │ │ ├── h264-conformance-frext-brcm_freh8 │ │ │ │ ├── h264-conformance-frext-brcm_freh9 │ │ │ │ ├── h264-conformance-frext-freh12_b │ │ │ │ ├── h264-conformance-frext-freh1_b │ │ │ │ ├── h264-conformance-frext-freh2_b │ │ │ │ ├── h264-conformance-frext-freh6 │ │ │ │ ├── h264-conformance-frext-freh7_b │ │ │ │ ├── h264-conformance-frext-frext01_jvc_d │ │ │ │ ├── h264-conformance-frext-frext02_jvc_c │ │ │ │ ├── h264-conformance-frext-frext1_panasonic_c │ │ │ │ ├── h264-conformance-frext-frext2_panasonic_b │ │ │ │ ├── h264-conformance-frext-frext3_panasonic_d │ │ │ │ ├── h264-conformance-frext-frext4_panasonic_a │ │ │ │ ├── h264-conformance-frext-frext_mmco4_sony_b │ │ │ │ ├── h264-conformance-frext-hcaff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hcafr1_hhi_c │ │ │ │ ├── h264-conformance-frext-hcafr2_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr3_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr4_hhi_a │ │ │ │ ├── h264-conformance-frext-hcamff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hi422fr10_sony_b │ │ │ │ ├── h264-conformance-frext-hi422fr13_sony_b │ │ │ │ ├── h264-conformance-frext-hi422fr1_sony_a │ │ │ │ ├── h264-conformance-frext-hi422fr6_sony_a │ │ │ │ ├── h264-conformance-frext-hpca_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcadq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcafl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcaflnl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcalq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcamapalq_bcrm_b │ │ │ │ ├── h264-conformance-frext-hpcamolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcanl_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcaq2lq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcv_brcm_a │ │ │ │ ├── h264-conformance-frext-hpcvfl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvflnl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvmolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcvnl_brcm_a │ │ │ │ ├── h264-conformance-frext-pph10i1_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i2_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i3_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i4_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i5_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i6_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i7_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i1_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i2_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i3_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i4_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i5_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i6_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph422i7_panasonic_a │ │ │ │ ├── h264-conformance-hcbp2_hhi_a │ │ │ │ ├── h264-conformance-hcmp1_hhi_a │ │ │ │ ├── h264-conformance-ls_sva_d │ │ │ │ ├── h264-conformance-midr_mw_d │ │ │ │ ├── h264-conformance-mps_mw_a │ │ │ │ ├── h264-conformance-mr1_bt_a │ │ │ │ ├── h264-conformance-mr1_mw_a │ │ │ │ ├── h264-conformance-mr2_mw_a │ │ │ │ ├── h264-conformance-mr2_tandberg_e │ │ │ │ ├── h264-conformance-mr3_tandberg_b │ │ │ │ ├── h264-conformance-mr4_tandberg_c │ │ │ │ ├── h264-conformance-mr5_tandberg_c │ │ │ │ ├── h264-conformance-mr6_bt_b │ │ │ │ ├── h264-conformance-mr7_bt_b │ │ │ │ ├── h264-conformance-mr8_bt_b │ │ │ │ ├── h264-conformance-mr9_bt_b │ │ │ │ ├── h264-conformance-mv1_brcm_d │ │ │ │ ├── h264-conformance-nl1_sony_d │ │ │ │ ├── h264-conformance-nl2_sony_h │ │ │ │ ├── h264-conformance-nl3_sva_e │ │ │ │ ├── h264-conformance-nlmq1_jvc_c │ │ │ │ ├── h264-conformance-nlmq2_jvc_c │ │ │ │ ├── h264-conformance-nrf_mw_e │ │ │ │ ├── h264-conformance-sharp_mp_field_1_b │ │ │ │ ├── h264-conformance-sharp_mp_field_2_b │ │ │ │ ├── h264-conformance-sharp_mp_field_3_b │ │ │ │ ├── h264-conformance-sharp_mp_paff_1r2 │ │ │ │ ├── h264-conformance-sharp_mp_paff_2r │ │ │ │ ├── h264-conformance-sl1_sva_b │ │ │ │ ├── h264-conformance-sva_ba1_b │ │ │ │ ├── h264-conformance-sva_ba2_d │ │ │ │ ├── h264-conformance-sva_base_b │ │ │ │ ├── h264-conformance-sva_cl1_e │ │ │ │ ├── h264-conformance-sva_fm1_e │ │ │ │ ├── h264-conformance-sva_nl1_b │ │ │ │ ├── h264-conformance-sva_nl2_e │ │ │ │ ├── h264-crop-to-container │ │ │ │ ├── h264-direct-bff │ │ │ │ ├── h264-dts_5frames │ │ │ │ ├── h264-extradata-reload │ │ │ │ ├── h264-extreme-plane-pred │ │ │ │ ├── h264-interlace-crop │ │ │ │ ├── h264-intra-refresh-recovery │ │ │ │ ├── h264-invalid-ref-mod │ │ │ │ ├── h264-lossless │ │ │ │ ├── h264-missing-frame │ │ │ │ ├── h264-mixed-nal-coding │ │ │ │ ├── h264-reinit-large_420_8-to-small_420_8 │ │ │ │ ├── h264-reinit-small_420_8-to-large_444_10 │ │ │ │ ├── h264-reinit-small_420_9-to-small_420_8 │ │ │ │ ├── h264-reinit-small_422_9-to-small_420_9 │ │ │ │ ├── h264-skip-nointra │ │ │ │ ├── h264-skip-nokey │ │ │ │ ├── h264-twofields-packet │ │ │ │ ├── h264-unescaped-extradata │ │ │ │ ├── h264-xavc-4389 │ │ │ │ ├── h264_mp4toannexb_ticket2991 │ │ │ │ ├── h264_mp4toannexb_ticket5927 │ │ │ │ ├── h264_mp4toannexb_ticket5927_2 │ │ │ │ ├── hap-chunk │ │ │ │ ├── hap1 │ │ │ │ ├── hap5 │ │ │ │ ├── hapy │ │ │ │ ├── hash │ │ │ │ ├── hevc-conformance-ADJUST_IPRED_ANGLE_A_RExt_Mitsubishi_1 │ │ │ │ ├── hevc-conformance-AMP_A_Samsung_4 │ │ │ │ ├── hevc-conformance-AMP_A_Samsung_6 │ │ │ │ ├── hevc-conformance-AMP_B_Samsung_4 │ │ │ │ ├── hevc-conformance-AMP_B_Samsung_6 │ │ │ │ ├── hevc-conformance-AMP_D_Hisilicon │ │ │ │ ├── hevc-conformance-AMP_E_Hisilicon │ │ │ │ ├── hevc-conformance-AMP_F_Hisilicon_3 │ │ │ │ ├── hevc-conformance-AMVP_A_MTK_4 │ │ │ │ ├── hevc-conformance-AMVP_B_MTK_4 │ │ │ │ ├── hevc-conformance-AMVP_C_Samsung_4 │ │ │ │ ├── hevc-conformance-AMVP_C_Samsung_6 │ │ │ │ ├── hevc-conformance-BUMPING_A_ericsson_1 │ │ │ │ ├── hevc-conformance-CAINIT_A_SHARP_4 │ │ │ │ ├── hevc-conformance-CAINIT_B_SHARP_4 │ │ │ │ ├── hevc-conformance-CAINIT_C_SHARP_3 │ │ │ │ ├── hevc-conformance-CAINIT_D_SHARP_3 │ │ │ │ ├── hevc-conformance-CAINIT_E_SHARP_3 │ │ │ │ ├── hevc-conformance-CAINIT_F_SHARP_3 │ │ │ │ ├── hevc-conformance-CAINIT_G_SHARP_3 │ │ │ │ ├── hevc-conformance-CAINIT_H_SHARP_3 │ │ │ │ ├── hevc-conformance-CIP_A_Panasonic_3 │ │ │ │ ├── hevc-conformance-CIP_C_Panasonic_2 │ │ │ │ ├── hevc-conformance-CONFWIN_A_Sony_1 │ │ │ │ ├── hevc-conformance-DBLK_A_MAIN10_VIXS_3 │ │ │ │ ├── hevc-conformance-DBLK_A_SONY_3 │ │ │ │ ├── hevc-conformance-DBLK_B_SONY_3 │ │ │ │ ├── hevc-conformance-DBLK_C_SONY_3 │ │ │ │ ├── hevc-conformance-DBLK_D_VIXS_2 │ │ │ │ ├── hevc-conformance-DBLK_E_VIXS_2 │ │ │ │ ├── hevc-conformance-DBLK_F_VIXS_2 │ │ │ │ ├── hevc-conformance-DBLK_G_VIXS_2 │ │ │ │ ├── hevc-conformance-DELTAQP_A_BRCM_4 │ │ │ │ ├── hevc-conformance-DELTAQP_B_SONY_3 │ │ │ │ ├── hevc-conformance-DELTAQP_C_SONY_3 │ │ │ │ ├── hevc-conformance-DSLICE_A_HHI_5 │ │ │ │ ├── hevc-conformance-DSLICE_B_HHI_5 │ │ │ │ ├── hevc-conformance-DSLICE_C_HHI_5 │ │ │ │ ├── hevc-conformance-ENTP_A_Qualcomm_1 │ │ │ │ ├── hevc-conformance-ENTP_B_Qualcomm_1 │ │ │ │ ├── hevc-conformance-ENTP_C_Qualcomm_1 │ │ │ │ ├── hevc-conformance-EXT_A_ericsson_4 │ │ │ │ ├── hevc-conformance-FILLER_A_Sony_1 │ │ │ │ ├── hevc-conformance-HRD_A_Fujitsu_2 │ │ │ │ ├── hevc-conformance-HRD_A_Fujitsu_3 │ │ │ │ ├── hevc-conformance-INITQP_A_Sony_1 │ │ │ │ ├── hevc-conformance-INITQP_B_Sony_1 │ │ │ │ ├── hevc-conformance-IPCM_A_RExt_NEC │ │ │ │ ├── hevc-conformance-IPCM_B_RExt_NEC │ │ │ │ ├── hevc-conformance-IPRED_A_docomo_2 │ │ │ │ ├── hevc-conformance-IPRED_B_Nokia_3 │ │ │ │ ├── hevc-conformance-IPRED_C_Mitsubishi_3 │ │ │ │ ├── hevc-conformance-LS_A_Orange_2 │ │ │ │ ├── hevc-conformance-LS_B_ORANGE_4 │ │ │ │ ├── hevc-conformance-LTRPSPS_A_Qualcomm_1 │ │ │ │ ├── hevc-conformance-MAXBINS_A_TI_4 │ │ │ │ ├── hevc-conformance-MAXBINS_B_TI_4 │ │ │ │ ├── hevc-conformance-MAXBINS_C_TI_4 │ │ │ │ ├── hevc-conformance-MERGE_A_TI_3 │ │ │ │ ├── hevc-conformance-MERGE_B_TI_3 │ │ │ │ ├── hevc-conformance-MERGE_C_TI_3 │ │ │ │ ├── hevc-conformance-MERGE_D_TI_3 │ │ │ │ ├── hevc-conformance-MERGE_E_TI_3 │ │ │ │ ├── hevc-conformance-MERGE_F_MTK_4 │ │ │ │ ├── hevc-conformance-MERGE_G_HHI_4 │ │ │ │ ├── hevc-conformance-MVCLIP_A_qualcomm_3 │ │ │ │ ├── hevc-conformance-MVDL1ZERO_A_docomo_3 │ │ │ │ ├── hevc-conformance-MVEDGE_A_qualcomm_3 │ │ │ │ ├── hevc-conformance-Main_422_10_A_RExt_Sony_1 │ │ │ │ ├── hevc-conformance-Main_422_10_B_RExt_Sony_1 │ │ │ │ ├── hevc-conformance-NUT_A_ericsson_5 │ │ │ │ ├── hevc-conformance-NoOutPrior_A_Qualcomm_1 │ │ │ │ ├── hevc-conformance-NoOutPrior_B_Qualcomm_1 │ │ │ │ ├── hevc-conformance-OPFLAG_A_Qualcomm_1 │ │ │ │ ├── hevc-conformance-OPFLAG_B_Qualcomm_1 │ │ │ │ ├── hevc-conformance-OPFLAG_C_Qualcomm_1 │ │ │ │ ├── hevc-conformance-PERSIST_RPARAM_A_RExt_Sony_1 │ │ │ │ ├── hevc-conformance-PICSIZE_A_Bossen_1 │ │ │ │ ├── hevc-conformance-PICSIZE_B_Bossen_1 │ │ │ │ ├── hevc-conformance-PICSIZE_C_Bossen_1 │ │ │ │ ├── hevc-conformance-PICSIZE_D_Bossen_1 │ │ │ │ ├── hevc-conformance-PMERGE_A_TI_3 │ │ │ │ ├── hevc-conformance-PMERGE_B_TI_3 │ │ │ │ ├── hevc-conformance-PMERGE_C_TI_3 │ │ │ │ ├── hevc-conformance-PMERGE_D_TI_3 │ │ │ │ ├── hevc-conformance-PMERGE_E_TI_3 │ │ │ │ ├── hevc-conformance-POC_A_Bossen_3 │ │ │ │ ├── hevc-conformance-PPS_A_qualcomm_7 │ │ │ │ ├── hevc-conformance-PS_A_VIDYO_3 │ │ │ │ ├── hevc-conformance-PS_B_VIDYO_3 │ │ │ │ ├── hevc-conformance-QMATRIX_A_RExt_Sony_1 │ │ │ │ ├── hevc-conformance-RAP_A_docomo_4 │ │ │ │ ├── hevc-conformance-RAP_B_Bossen_1 │ │ │ │ ├── hevc-conformance-RPLM_A_qualcomm_4 │ │ │ │ ├── hevc-conformance-RPLM_B_qualcomm_4 │ │ │ │ ├── hevc-conformance-RPS_A_docomo_4 │ │ │ │ ├── hevc-conformance-RPS_B_qualcomm_5 │ │ │ │ ├── hevc-conformance-RPS_C_ericsson_5 │ │ │ │ ├── hevc-conformance-RPS_D_ericsson_6 │ │ │ │ ├── hevc-conformance-RPS_E_qualcomm_5 │ │ │ │ ├── hevc-conformance-RPS_F_docomo_1 │ │ │ │ ├── hevc-conformance-RQT_A_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_B_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_C_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_D_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_E_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_F_HHI_4 │ │ │ │ ├── hevc-conformance-RQT_G_HHI_4 │ │ │ │ ├── hevc-conformance-SAO_A_MediaTek_4 │ │ │ │ ├── hevc-conformance-SAO_A_RExt_MediaTek_1 │ │ │ │ ├── hevc-conformance-SAO_B_MediaTek_5 │ │ │ │ ├── hevc-conformance-SAO_C_Samsung_4 │ │ │ │ ├── hevc-conformance-SAO_C_Samsung_5 │ │ │ │ ├── hevc-conformance-SAO_D_Samsung_4 │ │ │ │ ├── hevc-conformance-SAO_D_Samsung_5 │ │ │ │ ├── hevc-conformance-SAO_E_Canon_4 │ │ │ │ ├── hevc-conformance-SAO_F_Canon_3 │ │ │ │ ├── hevc-conformance-SAO_G_Canon_3 │ │ │ │ ├── hevc-conformance-SDH_A_Orange_3 │ │ │ │ ├── hevc-conformance-SLICES_A_Rovi_3 │ │ │ │ ├── hevc-conformance-SLIST_A_Sony_4 │ │ │ │ ├── hevc-conformance-SLIST_B_Sony_8 │ │ │ │ ├── hevc-conformance-SLIST_C_Sony_3 │ │ │ │ ├── hevc-conformance-SLIST_D_Sony_9 │ │ │ │ ├── hevc-conformance-SLPPLP_A_VIDYO_1 │ │ │ │ ├── hevc-conformance-SLPPLP_A_VIDYO_2 │ │ │ │ ├── hevc-conformance-STRUCT_A_Samsung_5 │ │ │ │ ├── hevc-conformance-STRUCT_B_Samsung_4 │ │ │ │ ├── hevc-conformance-STRUCT_B_Samsung_6 │ │ │ │ ├── hevc-conformance-TILES_A_Cisco_2 │ │ │ │ ├── hevc-conformance-TILES_B_Cisco_1 │ │ │ │ ├── hevc-conformance-TMVP_A_MS_3 │ │ │ │ ├── hevc-conformance-TSCL_A_VIDYO_5 │ │ │ │ ├── hevc-conformance-TSCL_B_VIDYO_4 │ │ │ │ ├── hevc-conformance-TSKIP_A_MS_3 │ │ │ │ ├── hevc-conformance-TUSIZE_A_Samsung_1 │ │ │ │ ├── hevc-conformance-VPSID_A_VIDYO_1 │ │ │ │ ├── hevc-conformance-VPSID_A_VIDYO_2 │ │ │ │ ├── hevc-conformance-WPP_A_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_A_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WPP_B_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_B_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WPP_C_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_C_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WPP_D_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_D_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WPP_E_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_E_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WPP_F_ericsson_MAIN10_2 │ │ │ │ ├── hevc-conformance-WPP_F_ericsson_MAIN_2 │ │ │ │ ├── hevc-conformance-WP_A_MAIN10_Toshiba_3 │ │ │ │ ├── hevc-conformance-WP_A_Toshiba_3 │ │ │ │ ├── hevc-conformance-WP_B_Toshiba_3 │ │ │ │ ├── hevc-conformance-WP_MAIN10_B_Toshiba_3 │ │ │ │ ├── hevc-conformance-cip_B_NEC_3 │ │ │ │ ├── hevc-conformance-ipcm_A_NEC_3 │ │ │ │ ├── hevc-conformance-ipcm_B_NEC_3 │ │ │ │ ├── hevc-conformance-ipcm_C_NEC_3 │ │ │ │ ├── hevc-conformance-ipcm_D_NEC_3 │ │ │ │ ├── hevc-conformance-ipcm_E_NEC_2 │ │ │ │ ├── hevc-extradata-reload │ │ │ │ ├── hevc-paired-fields │ │ │ │ ├── hevc-paramchange-yuv420p-yuv420p10 │ │ │ │ ├── hmac │ │ │ │ ├── id-cin-video │ │ │ │ ├── idroq-video-encode │ │ │ │ ├── iff-byterun1 │ │ │ │ ├── iff-fibonacci │ │ │ │ ├── iff-ilbm │ │ │ │ ├── iff-pcm │ │ │ │ ├── iirfilter │ │ │ │ ├── imgutils │ │ │ │ ├── indeo2-delta │ │ │ │ ├── indeo2-intra │ │ │ │ ├── indeo3-1 │ │ │ │ ├── indeo3-2 │ │ │ │ ├── indeo4 │ │ │ │ ├── indeo5 │ │ │ │ ├── interplay-mve-16bit │ │ │ │ ├── interplay-mve-8bit │ │ │ │ ├── iscc │ │ │ │ ├── iv8-demux │ │ │ │ ├── j2k-dwt │ │ │ │ ├── jpeg2000-dcinema │ │ │ │ ├── jpg-12bpp │ │ │ │ ├── jpg-jfif │ │ │ │ ├── jv │ │ │ │ ├── jv-demux │ │ │ │ ├── kgv1 │ │ │ │ ├── kmvc │ │ │ │ ├── lagarith-red │ │ │ │ ├── lagarith-rgb24 │ │ │ │ ├── lagarith-rgb32 │ │ │ │ ├── lagarith-ticket4119 │ │ │ │ ├── lagarith-ticket4119-cfr │ │ │ │ ├── lagarith-ticket4119-drop │ │ │ │ ├── lagarith-ticket4119-pass │ │ │ │ ├── lagarith-ticket4119-vfr │ │ │ │ ├── lagarith-yuy2 │ │ │ │ ├── lagarith-yv12 │ │ │ │ ├── lfg │ │ │ │ ├── libavcodec-htmlsubtitles │ │ │ │ ├── libavcodec-options │ │ │ │ ├── limited_input_seek │ │ │ │ ├── limited_input_seek-copyts │ │ │ │ ├── lmlm4-demux │ │ │ │ ├── loco-rgb │ │ │ │ ├── loco-yuy2 │ │ │ │ ├── lossless-alac │ │ │ │ ├── lossless-meridianaudio │ │ │ │ ├── lossless-monkeysaudio-399 │ │ │ │ ├── lossless-shorten │ │ │ │ ├── lossless-tak │ │ │ │ ├── lossless-truehd-5.1 │ │ │ │ ├── lossless-truehd-5.1-downmix-2.0 │ │ │ │ ├── lossless-tta │ │ │ │ ├── lossless-tta-encrypted │ │ │ │ ├── lossless-wma │ │ │ │ ├── lossless-wma24-1 │ │ │ │ ├── lossless-wma24-2 │ │ │ │ ├── lossless-wma24-rawtile │ │ │ │ ├── m4v │ │ │ │ ├── m4v-cfr │ │ │ │ ├── magicyuv-rgb │ │ │ │ ├── magicyuv-rgba │ │ │ │ ├── magicyuv-y400i │ │ │ │ ├── magicyuv-y420 │ │ │ │ ├── magicyuv-y422i │ │ │ │ ├── magicyuv-y444 │ │ │ │ ├── magicyuv-y4444i │ │ │ │ ├── mapchan-2ch-extract-ch0-ch2-trailing │ │ │ │ ├── mapchan-3ch-extract-ch0-ch2-trailing │ │ │ │ ├── mapchan-6ch-extract-2 │ │ │ │ ├── mapchan-6ch-extract-2-downmix-mono │ │ │ │ ├── mapchan-silent-mono │ │ │ │ ├── matroska-spherical-mono │ │ │ │ ├── maxis-xa │ │ │ │ ├── md5 │ │ │ │ ├── mdec │ │ │ │ ├── mdec-v3 │ │ │ │ ├── mimic │ │ │ │ ├── mjpegb │ │ │ │ ├── mkv │ │ │ │ ├── mkv-1242 │ │ │ │ ├── mlv-demux │ │ │ │ ├── motionpixels │ │ │ │ ├── mov-1elist-1ctts │ │ │ │ ├── mov-1elist-ends-last-bframe │ │ │ │ ├── mov-1elist-noctts │ │ │ │ ├── mov-2elist-elist1-ends-bframe │ │ │ │ ├── mov-3elist │ │ │ │ ├── mov-3elist-1ctts │ │ │ │ ├── mov-3elist-encrypted │ │ │ │ ├── mov-aac-2048-priming │ │ │ │ ├── mov-displaymatrix │ │ │ │ ├── mov-elist-starts-ctts-2ndsample │ │ │ │ ├── mov-init-nonkeyframe │ │ │ │ ├── mov-mp3-demux │ │ │ │ ├── mov-spherical-mono │ │ │ │ ├── mov-zombie │ │ │ │ ├── movenc │ │ │ │ ├── mpc7-demux │ │ │ │ ├── mpc8-demux │ │ │ │ ├── mpeg2-field-enc │ │ │ │ ├── mpeg2-ticket186 │ │ │ │ ├── mpeg2-ticket6024 │ │ │ │ ├── mpeg4-als-conformance-00 │ │ │ │ ├── mpeg4-als-conformance-01 │ │ │ │ ├── mpeg4-als-conformance-02 │ │ │ │ ├── mpeg4-als-conformance-03 │ │ │ │ ├── mpeg4-als-conformance-04 │ │ │ │ ├── mpeg4-als-conformance-05 │ │ │ │ ├── mpeg4-bsf-unpack-bframes │ │ │ │ ├── mpeg4-packed │ │ │ │ ├── mpeg4-resolution-change-down-down │ │ │ │ ├── mpeg4-resolution-change-down-up │ │ │ │ ├── mpeg4-resolution-change-up-down │ │ │ │ ├── mpeg4-resolution-change-up-up │ │ │ │ ├── mpegts-probe-latm │ │ │ │ ├── msmpeg4v1 │ │ │ │ ├── msrle-8bit │ │ │ │ ├── mss1-pal │ │ │ │ ├── mss2-pal │ │ │ │ ├── mss2-pals │ │ │ │ ├── mss2-rgb555 │ │ │ │ ├── mss2-rgb555s │ │ │ │ ├── mss2-wmv │ │ │ │ ├── msvideo1-16bit │ │ │ │ ├── msvideo1-8bit │ │ │ │ ├── mszh │ │ │ │ ├── mts2 │ │ │ │ ├── mts2-xesc │ │ │ │ ├── mtv │ │ │ │ ├── murmur3 │ │ │ │ ├── mv-mvc1 │ │ │ │ ├── mv-mvc2 │ │ │ │ ├── mv-sgirle │ │ │ │ ├── mxf-demux │ │ │ │ ├── mxf-essencegroup-demux │ │ │ │ ├── mxf-metadata-source-ref1 │ │ │ │ ├── mxf-metadata-source-ref2 │ │ │ │ ├── mxf-missing-index-demux │ │ │ │ ├── mxf-multiple-components-demux │ │ │ │ ├── mxf-probe-d10 │ │ │ │ ├── mxf-probe-dnxhd │ │ │ │ ├── mxf-probe-dv25 │ │ │ │ ├── mxpeg │ │ │ │ ├── nc-demux │ │ │ │ ├── nistsphere-demux │ │ │ │ ├── noproxy │ │ │ │ ├── nsv-demux │ │ │ │ ├── nuv-rtjpeg │ │ │ │ ├── nuv-rtjpeg-fh │ │ │ │ ├── oggopus-demux │ │ │ │ ├── oggvp8-demux │ │ │ │ ├── oma-demux │ │ │ │ ├── on2avc │ │ │ │ ├── opt │ │ │ │ ├── paf-audio │ │ │ │ ├── paf-demux │ │ │ │ ├── paf-video │ │ │ │ ├── parseutils │ │ │ │ ├── pcm-planar │ │ │ │ ├── pcm_dvd │ │ │ │ ├── pcm_s16be-stereo │ │ │ │ ├── pcm_s16le-stereo │ │ │ │ ├── pcm_u8-mono │ │ │ │ ├── pcm_u8-stereo │ │ │ │ ├── pict │ │ │ │ ├── pictor │ │ │ │ ├── pixelutils │ │ │ │ ├── pixfmt_best │ │ │ │ ├── pixlet-rgb │ │ │ │ ├── pmp-demux │ │ │ │ ├── png-gray16 │ │ │ │ ├── png-gray8 │ │ │ │ ├── png-int-rgb24 │ │ │ │ ├── png-rgb24 │ │ │ │ ├── png-rgb48 │ │ │ │ ├── png-rgba │ │ │ │ ├── png-rgba64 │ │ │ │ ├── png-ya16 │ │ │ │ ├── png-ya8 │ │ │ │ ├── pngparser │ │ │ │ ├── prores-422 │ │ │ │ ├── prores-422_hq │ │ │ │ ├── prores-422_lt │ │ │ │ ├── prores-422_proxy │ │ │ │ ├── prores-alpha │ │ │ │ ├── prores-alpha_skip │ │ │ │ ├── prores-gray │ │ │ │ ├── prores-transparency │ │ │ │ ├── prores-transparency_skip │ │ │ │ ├── psd-duo-tone-color │ │ │ │ ├── psd-gray16 │ │ │ │ ├── psd-gray8 │ │ │ │ ├── psd-lena-127x127-rgb24 │ │ │ │ ├── psd-lena-256c │ │ │ │ ├── psd-lena-bitmap │ │ │ │ ├── psd-lena-rgb-rle-127x127-16b │ │ │ │ ├── psd-lena-rgb-rle-127x127-8b │ │ │ │ ├── psd-lena-rgba-rle-128x128-8b │ │ │ │ ├── psd-rgb24 │ │ │ │ ├── psd-rgb48 │ │ │ │ ├── psd-rgba │ │ │ │ ├── psd-rgba64 │ │ │ │ ├── psd-ya16 │ │ │ │ ├── psd-ya8 │ │ │ │ ├── psx-str-demux │ │ │ │ ├── ptx │ │ │ │ ├── pva-demux │ │ │ │ ├── qcp-demux │ │ │ │ ├── qpeg │ │ │ │ ├── qt-alaw-mono │ │ │ │ ├── qt-alaw-stereo │ │ │ │ ├── qt-ima4-mono │ │ │ │ ├── qt-ima4-stereo │ │ │ │ ├── qt-mac3-mono │ │ │ │ ├── qt-mac3-stereo │ │ │ │ ├── qt-mac6-mono │ │ │ │ ├── qt-mac6-stereo │ │ │ │ ├── qt-ulaw-mono │ │ │ │ ├── qt-ulaw-stereo │ │ │ │ ├── qtrle-16bit │ │ │ │ ├── qtrle-1bit │ │ │ │ ├── qtrle-24bit │ │ │ │ ├── qtrle-2bit │ │ │ │ ├── qtrle-32bit │ │ │ │ ├── qtrle-4bit │ │ │ │ ├── qtrle-8bit │ │ │ │ ├── quickdraw │ │ │ │ ├── r210 │ │ │ │ ├── ra-144 │ │ │ │ ├── ra3-144 │ │ │ │ ├── ralf │ │ │ │ ├── random_seed │ │ │ │ ├── redcode-demux │ │ │ │ ├── redspark-demux │ │ │ │ ├── rgb24-mkv │ │ │ │ ├── rgbapng-4816 │ │ │ │ ├── ripemd │ │ │ │ ├── rl2 │ │ │ │ ├── roqvideo │ │ │ │ ├── rpza │ │ │ │ ├── rscc-16bit │ │ │ │ ├── rscc-24bit │ │ │ │ ├── rscc-32bit │ │ │ │ ├── rscc-8bit │ │ │ │ ├── rsd-demux │ │ │ │ ├── rtmpdh │ │ │ │ ├── rv20-1239 │ │ │ │ ├── rv30 │ │ │ │ ├── rv40 │ │ │ │ ├── sanm │ │ │ │ ├── screenpresso-16bit │ │ │ │ ├── screenpresso-24bit │ │ │ │ ├── screenpresso-32bit │ │ │ │ ├── segment-adts-to-mkv-header-000 │ │ │ │ ├── segment-adts-to-mkv-header-001 │ │ │ │ ├── segment-adts-to-mkv-header-002 │ │ │ │ ├── segment-adts-to-mkv-header-all │ │ │ │ ├── segment-mp4-to-ts │ │ │ │ ├── sgi-gray16 │ │ │ │ ├── sgi-gray16-rle │ │ │ │ ├── sgi-gray8 │ │ │ │ ├── sgi-gray8-rle │ │ │ │ ├── sgi-rgb24 │ │ │ │ ├── sgi-rgb24-rle │ │ │ │ ├── sgi-rgb48 │ │ │ │ ├── sgi-rgb48-rle │ │ │ │ ├── sgi-rgba │ │ │ │ ├── sgi-rgba-rle │ │ │ │ ├── sgi-rgba64 │ │ │ │ ├── sgi-rgba64-rle │ │ │ │ ├── sha │ │ │ │ ├── sha512 │ │ │ │ ├── sierra-vmd-audio │ │ │ │ ├── sierra-vmd-video │ │ │ │ ├── siff-demux │ │ │ │ ├── smacker-audio │ │ │ │ ├── smacker-video │ │ │ │ ├── smc │ │ │ │ ├── smjpeg │ │ │ │ ├── smjpeg-demux │ │ │ │ ├── smvjpeg │ │ │ │ ├── source │ │ │ │ ├── sp5x │ │ │ │ ├── speedhq-422 │ │ │ │ ├── speedhq-422-singlefield │ │ │ │ ├── srtp │ │ │ │ ├── sub-aqtitle │ │ │ │ ├── sub-ass-to-ass-transcode │ │ │ │ ├── sub-cc │ │ │ │ ├── sub-cc-realtime │ │ │ │ ├── sub-charenc │ │ │ │ ├── sub-jacosub │ │ │ │ ├── sub-microdvd │ │ │ │ ├── sub-microdvd-remux │ │ │ │ ├── sub-movtext │ │ │ │ ├── sub-mpl2 │ │ │ │ ├── sub-mpsub │ │ │ │ ├── sub-mpsub-frames │ │ │ │ ├── sub-pjs │ │ │ │ ├── sub-realtext │ │ │ │ ├── sub-sami │ │ │ │ ├── sub-sami2 │ │ │ │ ├── sub-scc │ │ │ │ ├── sub-srt │ │ │ │ ├── sub-srt-badsyntax │ │ │ │ ├── sub-srt-empty-events │ │ │ │ ├── sub-srt-madness-timeshift │ │ │ │ ├── sub-srt-rrn-remux │ │ │ │ ├── sub-ssa-to-ass-remux │ │ │ │ ├── sub-stl │ │ │ │ ├── sub-subripenc │ │ │ │ ├── sub-subviewer │ │ │ │ ├── sub-subviewer1 │ │ │ │ ├── sub-textenc │ │ │ │ ├── sub-vplayer │ │ │ │ ├── sub-webvtt │ │ │ │ ├── sub-webvtt2 │ │ │ │ ├── sub-webvttenc │ │ │ │ ├── sub2video │ │ │ │ ├── sunraster-1bit-raw │ │ │ │ ├── sunraster-1bit-rle │ │ │ │ ├── sunraster-24bit-raw │ │ │ │ ├── sunraster-24bit-rle │ │ │ │ ├── sunraster-8bit-raw │ │ │ │ ├── sunraster-8bit-rle │ │ │ │ ├── sunraster-8bit_gray-raw │ │ │ │ ├── svq1 │ │ │ │ ├── svq1-headerswap │ │ │ │ ├── svq3-1 │ │ │ │ ├── svq3-2 │ │ │ │ ├── svq3-watermark │ │ │ │ ├── sws-pixdesc-query │ │ │ │ ├── targa-conformance-CBW8 │ │ │ │ ├── targa-conformance-CCM8 │ │ │ │ ├── targa-conformance-CTC16 │ │ │ │ ├── targa-conformance-CTC24 │ │ │ │ ├── targa-conformance-CTC32 │ │ │ │ ├── targa-conformance-UBW8 │ │ │ │ ├── targa-conformance-UCM8 │ │ │ │ ├── targa-conformance-UTC16 │ │ │ │ ├── targa-conformance-UTC24 │ │ │ │ ├── targa-conformance-UTC32 │ │ │ │ ├── targa-top-to-bottom │ │ │ │ ├── tdsc │ │ │ │ ├── tea │ │ │ │ ├── theora-coeff-level64 │ │ │ │ ├── theora-offset │ │ │ │ ├── thp │ │ │ │ ├── tiertex-seq │ │ │ │ ├── tiff-fax-g3 │ │ │ │ ├── tiff-fax-g3s │ │ │ │ ├── time_base │ │ │ │ ├── timefilter │ │ │ │ ├── tmv │ │ │ │ ├── truemotion1-15 │ │ │ │ ├── truemotion1-24 │ │ │ │ ├── truemotion2 │ │ │ │ ├── truemotion2rt-high │ │ │ │ ├── truemotion2rt-low │ │ │ │ ├── truemotion2rt-mid │ │ │ │ ├── ts-demux │ │ │ │ ├── ts-opus-demux │ │ │ │ ├── tscc-15bit │ │ │ │ ├── tscc-32bit │ │ │ │ ├── tscc2-avi │ │ │ │ ├── tscc2-mov │ │ │ │ ├── txd-16bpp │ │ │ │ ├── txd-odd │ │ │ │ ├── txd-pal8 │ │ │ │ ├── ulti │ │ │ │ ├── unknown_layout-ac3 │ │ │ │ ├── unknown_layout-pcm │ │ │ │ ├── url │ │ │ │ ├── utvideo_rgb_left │ │ │ │ ├── utvideo_rgb_median │ │ │ │ ├── utvideo_rgba_left │ │ │ │ ├── utvideo_rgba_median │ │ │ │ ├── utvideo_rgba_single_symbol │ │ │ │ ├── utvideo_yuv420_left │ │ │ │ ├── utvideo_yuv420_median │ │ │ │ ├── utvideo_yuv422_left │ │ │ │ ├── utvideo_yuv422_median │ │ │ │ ├── utvideoenc_rgb_left │ │ │ │ ├── utvideoenc_rgb_median │ │ │ │ ├── utvideoenc_rgb_none │ │ │ │ ├── utvideoenc_rgba_left │ │ │ │ ├── utvideoenc_rgba_median │ │ │ │ ├── utvideoenc_rgba_none │ │ │ │ ├── utvideoenc_yuv420_left │ │ │ │ ├── utvideoenc_yuv420_median │ │ │ │ ├── utvideoenc_yuv420_none │ │ │ │ ├── utvideoenc_yuv422_left │ │ │ │ ├── utvideoenc_yuv422_median │ │ │ │ ├── utvideoenc_yuv422_none │ │ │ │ ├── v210 │ │ │ │ ├── v410dec │ │ │ │ ├── v410enc │ │ │ │ ├── vb │ │ │ │ ├── vble │ │ │ │ ├── vc1-ism │ │ │ │ ├── vc1_ilaced_twomv │ │ │ │ ├── vc1_sa00040 │ │ │ │ ├── vc1_sa00050 │ │ │ │ ├── vc1_sa10091 │ │ │ │ ├── vc1_sa10143 │ │ │ │ ├── vc1_sa20021 │ │ │ │ ├── vcr1 │ │ │ │ ├── vcr2 │ │ │ │ ├── videoxl │ │ │ │ ├── vmnc-16bit │ │ │ │ ├── vmnc-32bit │ │ │ │ ├── vorbis-1833-chapters │ │ │ │ ├── vp31 │ │ │ │ ├── vp5 │ │ │ │ ├── vp60 │ │ │ │ ├── vp61 │ │ │ │ ├── vp6a │ │ │ │ ├── vp6a-skip_alpha │ │ │ │ ├── vp6f │ │ │ │ ├── vp7 │ │ │ │ ├── vp8-2451 │ │ │ │ ├── vp8-alpha │ │ │ │ ├── vp8-sign-bias │ │ │ │ ├── vp8-size-change │ │ │ │ ├── vp8-test-vector-001 │ │ │ │ ├── vp8-test-vector-002 │ │ │ │ ├── vp8-test-vector-003 │ │ │ │ ├── vp8-test-vector-004 │ │ │ │ ├── vp8-test-vector-005 │ │ │ │ ├── vp8-test-vector-006 │ │ │ │ ├── vp8-test-vector-007 │ │ │ │ ├── vp8-test-vector-008 │ │ │ │ ├── vp8-test-vector-009 │ │ │ │ ├── vp8-test-vector-010 │ │ │ │ ├── vp8-test-vector-011 │ │ │ │ ├── vp8-test-vector-012 │ │ │ │ ├── vp8-test-vector-013 │ │ │ │ ├── vp8-test-vector-014 │ │ │ │ ├── vp8-test-vector-015 │ │ │ │ ├── vp8-test-vector-016 │ │ │ │ ├── vp8-test-vector-017 │ │ │ │ ├── vp9-00-quantizer-00 │ │ │ │ ├── vp9-00-quantizer-01 │ │ │ │ ├── vp9-00-quantizer-02 │ │ │ │ ├── vp9-00-quantizer-03 │ │ │ │ ├── vp9-00-quantizer-04 │ │ │ │ ├── vp9-00-quantizer-05 │ │ │ │ ├── vp9-00-quantizer-06 │ │ │ │ ├── vp9-00-quantizer-07 │ │ │ │ ├── vp9-00-quantizer-08 │ │ │ │ ├── vp9-00-quantizer-09 │ │ │ │ ├── vp9-00-quantizer-10 │ │ │ │ ├── vp9-00-quantizer-11 │ │ │ │ ├── vp9-00-quantizer-12 │ │ │ │ ├── vp9-00-quantizer-13 │ │ │ │ ├── vp9-00-quantizer-14 │ │ │ │ ├── vp9-00-quantizer-15 │ │ │ │ ├── vp9-00-quantizer-16 │ │ │ │ ├── vp9-00-quantizer-17 │ │ │ │ ├── vp9-00-quantizer-18 │ │ │ │ ├── vp9-00-quantizer-19 │ │ │ │ ├── vp9-00-quantizer-20 │ │ │ │ ├── vp9-00-quantizer-21 │ │ │ │ ├── vp9-00-quantizer-22 │ │ │ │ ├── vp9-00-quantizer-23 │ │ │ │ ├── vp9-00-quantizer-24 │ │ │ │ ├── vp9-00-quantizer-25 │ │ │ │ ├── vp9-00-quantizer-26 │ │ │ │ ├── vp9-00-quantizer-27 │ │ │ │ ├── vp9-00-quantizer-28 │ │ │ │ ├── vp9-00-quantizer-29 │ │ │ │ ├── vp9-00-quantizer-30 │ │ │ │ ├── vp9-00-quantizer-31 │ │ │ │ ├── vp9-00-quantizer-32 │ │ │ │ ├── vp9-00-quantizer-33 │ │ │ │ ├── vp9-00-quantizer-34 │ │ │ │ ├── vp9-00-quantizer-35 │ │ │ │ ├── vp9-00-quantizer-36 │ │ │ │ ├── vp9-00-quantizer-37 │ │ │ │ ├── vp9-00-quantizer-38 │ │ │ │ ├── vp9-00-quantizer-39 │ │ │ │ ├── vp9-00-quantizer-40 │ │ │ │ ├── vp9-00-quantizer-41 │ │ │ │ ├── vp9-00-quantizer-42 │ │ │ │ ├── vp9-00-quantizer-43 │ │ │ │ ├── vp9-00-quantizer-44 │ │ │ │ ├── vp9-00-quantizer-45 │ │ │ │ ├── vp9-00-quantizer-46 │ │ │ │ ├── vp9-00-quantizer-47 │ │ │ │ ├── vp9-00-quantizer-48 │ │ │ │ ├── vp9-00-quantizer-49 │ │ │ │ ├── vp9-00-quantizer-50 │ │ │ │ ├── vp9-00-quantizer-51 │ │ │ │ ├── vp9-00-quantizer-52 │ │ │ │ ├── vp9-00-quantizer-53 │ │ │ │ ├── vp9-00-quantizer-54 │ │ │ │ ├── vp9-00-quantizer-55 │ │ │ │ ├── vp9-00-quantizer-56 │ │ │ │ ├── vp9-00-quantizer-57 │ │ │ │ ├── vp9-00-quantizer-58 │ │ │ │ ├── vp9-00-quantizer-59 │ │ │ │ ├── vp9-00-quantizer-60 │ │ │ │ ├── vp9-00-quantizer-61 │ │ │ │ ├── vp9-00-quantizer-62 │ │ │ │ ├── vp9-00-quantizer-63 │ │ │ │ ├── vp9-01-sharpness-1 │ │ │ │ ├── vp9-01-sharpness-2 │ │ │ │ ├── vp9-01-sharpness-3 │ │ │ │ ├── vp9-01-sharpness-4 │ │ │ │ ├── vp9-01-sharpness-5 │ │ │ │ ├── vp9-01-sharpness-6 │ │ │ │ ├── vp9-01-sharpness-7 │ │ │ │ ├── vp9-02-size-08x08 │ │ │ │ ├── vp9-02-size-08x10 │ │ │ │ ├── vp9-02-size-08x16 │ │ │ │ ├── vp9-02-size-08x18 │ │ │ │ ├── vp9-02-size-08x32 │ │ │ │ ├── vp9-02-size-08x34 │ │ │ │ ├── vp9-02-size-08x64 │ │ │ │ ├── vp9-02-size-08x66 │ │ │ │ ├── vp9-02-size-10x08 │ │ │ │ ├── vp9-02-size-10x10 │ │ │ │ ├── vp9-02-size-10x16 │ │ │ │ ├── vp9-02-size-10x18 │ │ │ │ ├── vp9-02-size-10x32 │ │ │ │ ├── vp9-02-size-10x34 │ │ │ │ ├── vp9-02-size-10x64 │ │ │ │ ├── vp9-02-size-10x66 │ │ │ │ ├── vp9-02-size-16x08 │ │ │ │ ├── vp9-02-size-16x10 │ │ │ │ ├── vp9-02-size-16x16 │ │ │ │ ├── vp9-02-size-16x18 │ │ │ │ ├── vp9-02-size-16x32 │ │ │ │ ├── vp9-02-size-16x34 │ │ │ │ ├── vp9-02-size-16x64 │ │ │ │ ├── vp9-02-size-16x66 │ │ │ │ ├── vp9-02-size-18x08 │ │ │ │ ├── vp9-02-size-18x10 │ │ │ │ ├── vp9-02-size-18x16 │ │ │ │ ├── vp9-02-size-18x18 │ │ │ │ ├── vp9-02-size-18x32 │ │ │ │ ├── vp9-02-size-18x34 │ │ │ │ ├── vp9-02-size-18x64 │ │ │ │ ├── vp9-02-size-18x66 │ │ │ │ ├── vp9-02-size-32x08 │ │ │ │ ├── vp9-02-size-32x10 │ │ │ │ ├── vp9-02-size-32x16 │ │ │ │ ├── vp9-02-size-32x18 │ │ │ │ ├── vp9-02-size-32x32 │ │ │ │ ├── vp9-02-size-32x34 │ │ │ │ ├── vp9-02-size-32x64 │ │ │ │ ├── vp9-02-size-32x66 │ │ │ │ ├── vp9-02-size-34x08 │ │ │ │ ├── vp9-02-size-34x10 │ │ │ │ ├── vp9-02-size-34x16 │ │ │ │ ├── vp9-02-size-34x18 │ │ │ │ ├── vp9-02-size-34x32 │ │ │ │ ├── vp9-02-size-34x34 │ │ │ │ ├── vp9-02-size-34x64 │ │ │ │ ├── vp9-02-size-34x66 │ │ │ │ ├── vp9-02-size-64x08 │ │ │ │ ├── vp9-02-size-64x10 │ │ │ │ ├── vp9-02-size-64x16 │ │ │ │ ├── vp9-02-size-64x18 │ │ │ │ ├── vp9-02-size-64x32 │ │ │ │ ├── vp9-02-size-64x34 │ │ │ │ ├── vp9-02-size-64x64 │ │ │ │ ├── vp9-02-size-64x66 │ │ │ │ ├── vp9-02-size-66x08 │ │ │ │ ├── vp9-02-size-66x10 │ │ │ │ ├── vp9-02-size-66x16 │ │ │ │ ├── vp9-02-size-66x18 │ │ │ │ ├── vp9-02-size-66x32 │ │ │ │ ├── vp9-02-size-66x34 │ │ │ │ ├── vp9-02-size-66x64 │ │ │ │ ├── vp9-02-size-66x66 │ │ │ │ ├── vp9-03-deltaq │ │ │ │ ├── vp9-03-size-196x196 │ │ │ │ ├── vp9-03-size-196x198 │ │ │ │ ├── vp9-03-size-196x200 │ │ │ │ ├── vp9-03-size-196x202 │ │ │ │ ├── vp9-03-size-196x208 │ │ │ │ ├── vp9-03-size-196x210 │ │ │ │ ├── vp9-03-size-196x224 │ │ │ │ ├── vp9-03-size-196x226 │ │ │ │ ├── vp9-03-size-198x196 │ │ │ │ ├── vp9-03-size-198x198 │ │ │ │ ├── vp9-03-size-198x200 │ │ │ │ ├── vp9-03-size-198x202 │ │ │ │ ├── vp9-03-size-198x208 │ │ │ │ ├── vp9-03-size-198x210 │ │ │ │ ├── vp9-03-size-198x224 │ │ │ │ ├── vp9-03-size-198x226 │ │ │ │ ├── vp9-03-size-200x196 │ │ │ │ ├── vp9-03-size-200x198 │ │ │ │ ├── vp9-03-size-200x200 │ │ │ │ ├── vp9-03-size-200x202 │ │ │ │ ├── vp9-03-size-200x208 │ │ │ │ ├── vp9-03-size-200x210 │ │ │ │ ├── vp9-03-size-200x224 │ │ │ │ ├── vp9-03-size-200x226 │ │ │ │ ├── vp9-03-size-202x196 │ │ │ │ ├── vp9-03-size-202x198 │ │ │ │ ├── vp9-03-size-202x200 │ │ │ │ ├── vp9-03-size-202x202 │ │ │ │ ├── vp9-03-size-202x208 │ │ │ │ ├── vp9-03-size-202x210 │ │ │ │ ├── vp9-03-size-202x224 │ │ │ │ ├── vp9-03-size-202x226 │ │ │ │ ├── vp9-03-size-208x196 │ │ │ │ ├── vp9-03-size-208x198 │ │ │ │ ├── vp9-03-size-208x200 │ │ │ │ ├── vp9-03-size-208x202 │ │ │ │ ├── vp9-03-size-208x208 │ │ │ │ ├── vp9-03-size-208x210 │ │ │ │ ├── vp9-03-size-208x224 │ │ │ │ ├── vp9-03-size-208x226 │ │ │ │ ├── vp9-03-size-210x196 │ │ │ │ ├── vp9-03-size-210x198 │ │ │ │ ├── vp9-03-size-210x200 │ │ │ │ ├── vp9-03-size-210x202 │ │ │ │ ├── vp9-03-size-210x208 │ │ │ │ ├── vp9-03-size-210x210 │ │ │ │ ├── vp9-03-size-210x224 │ │ │ │ ├── vp9-03-size-210x226 │ │ │ │ ├── vp9-03-size-224x196 │ │ │ │ ├── vp9-03-size-224x198 │ │ │ │ ├── vp9-03-size-224x200 │ │ │ │ ├── vp9-03-size-224x202 │ │ │ │ ├── vp9-03-size-224x208 │ │ │ │ ├── vp9-03-size-224x210 │ │ │ │ ├── vp9-03-size-224x224 │ │ │ │ ├── vp9-03-size-224x226 │ │ │ │ ├── vp9-03-size-226x196 │ │ │ │ ├── vp9-03-size-226x198 │ │ │ │ ├── vp9-03-size-226x200 │ │ │ │ ├── vp9-03-size-226x202 │ │ │ │ ├── vp9-03-size-226x208 │ │ │ │ ├── vp9-03-size-226x210 │ │ │ │ ├── vp9-03-size-226x224 │ │ │ │ ├── vp9-03-size-226x226 │ │ │ │ ├── vp9-05-resize │ │ │ │ ├── vp9-06-bilinear │ │ │ │ ├── vp9-09-lf_deltas │ │ │ │ ├── vp9-10-show-existing-frame │ │ │ │ ├── vp9-10-show-existing-frame2 │ │ │ │ ├── vp9-15-segkey_adpq │ │ │ │ ├── vp9-16-intra-only │ │ │ │ ├── vp9-2pass-akiyo │ │ │ │ ├── vp9-parallelmode-akiyo │ │ │ │ ├── vp9-segmentation-aq-akiyo │ │ │ │ ├── vp9-segmentation-sf-akiyo │ │ │ │ ├── vp9-tiling-pedestrian │ │ │ │ ├── vp9-trac3849 │ │ │ │ ├── vp9-trac4359 │ │ │ │ ├── vp9p1-04-yuv422 │ │ │ │ ├── vp9p1-04-yuv440 │ │ │ │ ├── vp9p1-04-yuv444 │ │ │ │ ├── vp9p2-20-10bit-yuv420 │ │ │ │ ├── vp9p2-20-12bit-yuv420 │ │ │ │ ├── vp9p3-20-10bit-yuv422 │ │ │ │ ├── vp9p3-20-10bit-yuv440 │ │ │ │ ├── vp9p3-20-10bit-yuv444 │ │ │ │ ├── vp9p3-20-12bit-yuv422 │ │ │ │ ├── vp9p3-20-12bit-yuv440 │ │ │ │ ├── vp9p3-20-12bit-yuv444 │ │ │ │ ├── vqa-cc │ │ │ │ ├── vqf-demux │ │ │ │ ├── w64 │ │ │ │ ├── wav-ac3 │ │ │ │ ├── wavpack-channels-4.0 │ │ │ │ ├── wavpack-channels-5.1 │ │ │ │ ├── wavpack-channels-6.1 │ │ │ │ ├── wavpack-channels-7.1 │ │ │ │ ├── wavpack-channels-monofloat │ │ │ │ ├── wavpack-channels-monoint │ │ │ │ ├── wavpack-clipping │ │ │ │ ├── wavpack-cuesheet │ │ │ │ ├── wavpack-falsestereo │ │ │ │ ├── wavpack-lossless-12bit │ │ │ │ ├── wavpack-lossless-16bit │ │ │ │ ├── wavpack-lossless-24bit │ │ │ │ ├── wavpack-lossless-32bit │ │ │ │ ├── wavpack-lossless-8bit │ │ │ │ ├── wavpack-lossless-float │ │ │ │ ├── wavpack-lossy-16bit │ │ │ │ ├── wavpack-lossy-24bit │ │ │ │ ├── wavpack-lossy-32bit │ │ │ │ ├── wavpack-lossy-8bit │ │ │ │ ├── wavpack-lossy-float │ │ │ │ ├── wavpack-matroskamode │ │ │ │ ├── wavpack-speed-default │ │ │ │ ├── wavpack-speed-fast │ │ │ │ ├── wavpack-speed-high │ │ │ │ ├── wavpack-speed-vhigh │ │ │ │ ├── wavpack-zerolsbs │ │ │ │ ├── wc3movie-xan │ │ │ │ ├── webm-dash-manifest │ │ │ │ ├── webm-dash-manifest-live │ │ │ │ ├── webm-dash-manifest-live-bandwidth │ │ │ │ ├── webm-dash-manifest-representations │ │ │ │ ├── webm-dash-manifest-unaligned-audio-streams │ │ │ │ ├── webm-dash-manifest-unaligned-video-streams │ │ │ │ ├── webp-rgb-lena-lossless │ │ │ │ ├── webp-rgb-lena-lossless-rgb24 │ │ │ │ ├── webp-rgb-lossless │ │ │ │ ├── webp-rgb-lossy-q80 │ │ │ │ ├── webp-rgba-lossless │ │ │ │ ├── webp-rgba-lossy-q80 │ │ │ │ ├── westwood-aud │ │ │ │ ├── wmv3-drm-dec │ │ │ │ ├── wmv3-drm-nodec │ │ │ │ ├── wmv8-x8intra │ │ │ │ ├── wnv1 │ │ │ │ ├── ws_snd │ │ │ │ ├── wtv-demux │ │ │ │ ├── xbm10 │ │ │ │ ├── xbm11 │ │ │ │ ├── xface │ │ │ │ ├── xmv-demux │ │ │ │ ├── xtea │ │ │ │ ├── xvid-custom-matrix │ │ │ │ ├── xvid-idct │ │ │ │ ├── xwma-demux │ │ │ │ ├── xxan-wc4 │ │ │ │ ├── yop │ │ │ │ ├── zerocodec │ │ │ │ ├── zlib │ │ │ │ ├── zmbv-15bit │ │ │ │ ├── zmbv-16bit │ │ │ │ ├── zmbv-32bit │ │ │ │ └── zmbv-8bit │ │ │ ├── lavf-fate │ │ │ │ ├── avi_cram │ │ │ │ ├── latm │ │ │ │ ├── mov_qtrle_mace6 │ │ │ │ ├── mp3 │ │ │ │ ├── ogg_vp3 │ │ │ │ └── ogg_vp8 │ │ │ ├── lavf │ │ │ │ ├── aiff │ │ │ │ ├── alaw │ │ │ │ ├── apng │ │ │ │ ├── asf │ │ │ │ ├── ast │ │ │ │ ├── au │ │ │ │ ├── avi │ │ │ │ ├── bmp │ │ │ │ ├── caf │ │ │ │ ├── dpx │ │ │ │ ├── dv_fmt │ │ │ │ ├── ffm │ │ │ │ ├── fits │ │ │ │ ├── flm │ │ │ │ ├── flv_fmt │ │ │ │ ├── gif │ │ │ │ ├── gxf │ │ │ │ ├── ircam │ │ │ │ ├── ismv │ │ │ │ ├── jpg │ │ │ │ ├── mka │ │ │ │ ├── mkv │ │ │ │ ├── mmf │ │ │ │ ├── mov │ │ │ │ ├── mpg │ │ │ │ ├── mulaw │ │ │ │ ├── mxf │ │ │ │ ├── mxf_d10 │ │ │ │ ├── mxf_dv25 │ │ │ │ ├── mxf_dvcpro50 │ │ │ │ ├── mxf_opatom │ │ │ │ ├── mxf_opatom_audio │ │ │ │ ├── nut │ │ │ │ ├── ogg │ │ │ │ ├── pam │ │ │ │ ├── pbmpipe │ │ │ │ ├── pcx │ │ │ │ ├── pgm │ │ │ │ ├── pgmpipe │ │ │ │ ├── pixfmt │ │ │ │ ├── png │ │ │ │ ├── ppm │ │ │ │ ├── ppmpipe │ │ │ │ ├── rm │ │ │ │ ├── rso │ │ │ │ ├── sgi │ │ │ │ ├── smjpeg │ │ │ │ ├── sox │ │ │ │ ├── sunrast │ │ │ │ ├── swf │ │ │ │ ├── tga │ │ │ │ ├── tiff │ │ │ │ ├── ts │ │ │ │ ├── tta │ │ │ │ ├── voc │ │ │ │ ├── voc_s16 │ │ │ │ ├── w64 │ │ │ │ ├── wav │ │ │ │ ├── wav_peak │ │ │ │ ├── wav_peak_only │ │ │ │ ├── wtv │ │ │ │ ├── wv │ │ │ │ ├── xbm │ │ │ │ ├── xwd │ │ │ │ └── yuv4mpeg │ │ │ ├── seek │ │ │ │ ├── acodec-adpcm-ima_qt │ │ │ │ ├── acodec-adpcm-ima_qt-trellis │ │ │ │ ├── acodec-adpcm-ima_wav │ │ │ │ ├── acodec-adpcm-ima_wav-trellis │ │ │ │ ├── acodec-adpcm-ms │ │ │ │ ├── acodec-adpcm-ms-trellis │ │ │ │ ├── acodec-adpcm-swf │ │ │ │ ├── acodec-adpcm-swf-trellis │ │ │ │ ├── acodec-adpcm-yamaha │ │ │ │ ├── acodec-adpcm-yamaha-trellis │ │ │ │ ├── acodec-alac │ │ │ │ ├── acodec-flac │ │ │ │ ├── acodec-mp2 │ │ │ │ ├── acodec-pcm-alaw │ │ │ │ ├── acodec-pcm-f32be │ │ │ │ ├── acodec-pcm-f32le │ │ │ │ ├── acodec-pcm-f64be │ │ │ │ ├── acodec-pcm-f64le │ │ │ │ ├── acodec-pcm-mulaw │ │ │ │ ├── acodec-pcm-s16be │ │ │ │ ├── acodec-pcm-s16le │ │ │ │ ├── acodec-pcm-s24be │ │ │ │ ├── acodec-pcm-s24le │ │ │ │ ├── acodec-pcm-s32be │ │ │ │ ├── acodec-pcm-s32le │ │ │ │ ├── acodec-pcm-s8 │ │ │ │ ├── acodec-pcm-u8 │ │ │ │ ├── cache-pipe │ │ │ │ ├── extra-mp3 │ │ │ │ ├── extra-mp4 │ │ │ │ ├── lavf-aiff │ │ │ │ ├── lavf-alaw │ │ │ │ ├── lavf-asf │ │ │ │ ├── lavf-au │ │ │ │ ├── lavf-avi │ │ │ │ ├── lavf-bmp │ │ │ │ ├── lavf-dv_fmt │ │ │ │ ├── lavf-ffm │ │ │ │ ├── lavf-flv_fmt │ │ │ │ ├── lavf-gif │ │ │ │ ├── lavf-gxf │ │ │ │ ├── lavf-jpg │ │ │ │ ├── lavf-mkv │ │ │ │ ├── lavf-mmf │ │ │ │ ├── lavf-mov │ │ │ │ ├── lavf-mpg │ │ │ │ ├── lavf-mulaw │ │ │ │ ├── lavf-mxf │ │ │ │ ├── lavf-mxf_d10 │ │ │ │ ├── lavf-mxf_dv25 │ │ │ │ ├── lavf-mxf_dvcpro50 │ │ │ │ ├── lavf-mxf_opatom │ │ │ │ ├── lavf-mxf_opatom_audio │ │ │ │ ├── lavf-nut │ │ │ │ ├── lavf-ogg │ │ │ │ ├── lavf-pbmpipe │ │ │ │ ├── lavf-pcx │ │ │ │ ├── lavf-pgm │ │ │ │ ├── lavf-pgmpipe │ │ │ │ ├── lavf-ppm │ │ │ │ ├── lavf-ppmpipe │ │ │ │ ├── lavf-rm │ │ │ │ ├── lavf-sgi │ │ │ │ ├── lavf-swf │ │ │ │ ├── lavf-tga │ │ │ │ ├── lavf-tiff │ │ │ │ ├── lavf-ts │ │ │ │ ├── lavf-voc │ │ │ │ ├── lavf-wav │ │ │ │ ├── lavf-wtv │ │ │ │ ├── lavf-yuv4mpeg │ │ │ │ ├── mkv-codec-delay │ │ │ │ ├── vsynth_lena-asv1 │ │ │ │ ├── vsynth_lena-asv2 │ │ │ │ ├── vsynth_lena-dnxhd-1080i │ │ │ │ ├── vsynth_lena-dnxhd-4k-hr-lb │ │ │ │ ├── vsynth_lena-dnxhd-720p │ │ │ │ ├── vsynth_lena-dnxhd-720p-rd │ │ │ │ ├── vsynth_lena-dv │ │ │ │ ├── vsynth_lena-dv-411 │ │ │ │ ├── vsynth_lena-dv-50 │ │ │ │ ├── vsynth_lena-ffv1 │ │ │ │ ├── vsynth_lena-flashsv │ │ │ │ ├── vsynth_lena-flv │ │ │ │ ├── vsynth_lena-h261 │ │ │ │ ├── vsynth_lena-h263 │ │ │ │ ├── vsynth_lena-h263p │ │ │ │ ├── vsynth_lena-huffyuv │ │ │ │ ├── vsynth_lena-jpegls │ │ │ │ ├── vsynth_lena-ljpeg │ │ │ │ ├── vsynth_lena-mjpeg │ │ │ │ ├── vsynth_lena-mpeg1 │ │ │ │ ├── vsynth_lena-mpeg1b │ │ │ │ ├── vsynth_lena-mpeg2-422 │ │ │ │ ├── vsynth_lena-mpeg2-idct-int │ │ │ │ ├── vsynth_lena-mpeg2-ilace │ │ │ │ ├── vsynth_lena-mpeg2-ivlc-qprd │ │ │ │ ├── vsynth_lena-mpeg2-thread │ │ │ │ ├── vsynth_lena-mpeg2-thread-ivlc │ │ │ │ ├── vsynth_lena-mpeg4 │ │ │ │ ├── vsynth_lena-mpeg4-adap │ │ │ │ ├── vsynth_lena-mpeg4-adv │ │ │ │ ├── vsynth_lena-mpeg4-error │ │ │ │ ├── vsynth_lena-mpeg4-nr │ │ │ │ ├── vsynth_lena-mpeg4-nsse │ │ │ │ ├── vsynth_lena-mpeg4-qpel │ │ │ │ ├── vsynth_lena-mpeg4-qprd │ │ │ │ ├── vsynth_lena-mpeg4-rc │ │ │ │ ├── vsynth_lena-mpeg4-thread │ │ │ │ ├── vsynth_lena-msmpeg4 │ │ │ │ ├── vsynth_lena-msmpeg4v2 │ │ │ │ ├── vsynth_lena-rgb │ │ │ │ ├── vsynth_lena-roqvideo │ │ │ │ ├── vsynth_lena-rv10 │ │ │ │ ├── vsynth_lena-rv20 │ │ │ │ ├── vsynth_lena-snow │ │ │ │ ├── vsynth_lena-snow-ll │ │ │ │ ├── vsynth_lena-svq1 │ │ │ │ ├── vsynth_lena-wmv1 │ │ │ │ ├── vsynth_lena-wmv2 │ │ │ │ └── vsynth_lena-yuv │ │ │ ├── vsynth │ │ │ │ ├── vsynth1-amv │ │ │ │ ├── vsynth1-asv1 │ │ │ │ ├── vsynth1-asv2 │ │ │ │ ├── vsynth1-avui │ │ │ │ ├── vsynth1-bpp1 │ │ │ │ ├── vsynth1-bpp15 │ │ │ │ ├── vsynth1-cinepak │ │ │ │ ├── vsynth1-cljr │ │ │ │ ├── vsynth1-dnxhd-1080i │ │ │ │ ├── vsynth1-dnxhd-1080i-10bit │ │ │ │ ├── vsynth1-dnxhd-1080i-colr │ │ │ │ ├── vsynth1-dnxhd-2k-hr-hq │ │ │ │ ├── vsynth1-dnxhd-4k-hr-lb │ │ │ │ ├── vsynth1-dnxhd-720p │ │ │ │ ├── vsynth1-dnxhd-720p-10bit │ │ │ │ ├── vsynth1-dnxhd-720p-hr-lb │ │ │ │ ├── vsynth1-dnxhd-720p-rd │ │ │ │ ├── vsynth1-dnxhd-edge1-hr │ │ │ │ ├── vsynth1-dnxhd-edge2-hr │ │ │ │ ├── vsynth1-dnxhd-edge3-hr │ │ │ │ ├── vsynth1-dnxhd-hr-hq-mov │ │ │ │ ├── vsynth1-dnxhd-hr-lb-mov │ │ │ │ ├── vsynth1-dnxhd-hr-sq-mov │ │ │ │ ├── vsynth1-dnxhd-uhd-hr-sq │ │ │ │ ├── vsynth1-dnxhd_1080i │ │ │ │ ├── vsynth1-dv │ │ │ │ ├── vsynth1-dv-411 │ │ │ │ ├── vsynth1-dv-50 │ │ │ │ ├── vsynth1-dv_411 │ │ │ │ ├── vsynth1-ffv1 │ │ │ │ ├── vsynth1-ffv1-v0 │ │ │ │ ├── vsynth1-ffv1-v3-bgr0 │ │ │ │ ├── vsynth1-ffv1-v3-rgb48 │ │ │ │ ├── vsynth1-ffv1-v3-yuv420p │ │ │ │ ├── vsynth1-ffv1-v3-yuv422p10 │ │ │ │ ├── vsynth1-ffv1-v3-yuv444p16 │ │ │ │ ├── vsynth1-ffvhuff │ │ │ │ ├── vsynth1-ffvhuff420p12 │ │ │ │ ├── vsynth1-ffvhuff422p10left │ │ │ │ ├── vsynth1-ffvhuff444 │ │ │ │ ├── vsynth1-ffvhuff444p16 │ │ │ │ ├── vsynth1-flashsv │ │ │ │ ├── vsynth1-flashsv2 │ │ │ │ ├── vsynth1-flv │ │ │ │ ├── vsynth1-h261 │ │ │ │ ├── vsynth1-h261-trellis │ │ │ │ ├── vsynth1-h263 │ │ │ │ ├── vsynth1-h263-obmc │ │ │ │ ├── vsynth1-h263p │ │ │ │ ├── vsynth1-huffyuv │ │ │ │ ├── vsynth1-huffyuvbgr24 │ │ │ │ ├── vsynth1-huffyuvbgra │ │ │ │ ├── vsynth1-jpeg2000 │ │ │ │ ├── vsynth1-jpeg2000-97 │ │ │ │ ├── vsynth1-jpegls │ │ │ │ ├── vsynth1-ljpeg │ │ │ │ ├── vsynth1-mjpeg │ │ │ │ ├── vsynth1-mjpeg-422 │ │ │ │ ├── vsynth1-mjpeg-444 │ │ │ │ ├── vsynth1-mjpeg-huffman │ │ │ │ ├── vsynth1-mjpeg-trell │ │ │ │ ├── vsynth1-mjpeg-trell-huffman │ │ │ │ ├── vsynth1-mov-bgr24 │ │ │ │ ├── vsynth1-mov-bpp15 │ │ │ │ ├── vsynth1-mov-bpp16 │ │ │ │ ├── vsynth1-mpeg1 │ │ │ │ ├── vsynth1-mpeg1b │ │ │ │ ├── vsynth1-mpeg2 │ │ │ │ ├── vsynth1-mpeg2-422 │ │ │ │ ├── vsynth1-mpeg2-idct-int │ │ │ │ ├── vsynth1-mpeg2-ilace │ │ │ │ ├── vsynth1-mpeg2-ivlc-qprd │ │ │ │ ├── vsynth1-mpeg2-thread │ │ │ │ ├── vsynth1-mpeg2-thread-ivlc │ │ │ │ ├── vsynth1-mpeg4 │ │ │ │ ├── vsynth1-mpeg4-adap │ │ │ │ ├── vsynth1-mpeg4-adv │ │ │ │ ├── vsynth1-mpeg4-error │ │ │ │ ├── vsynth1-mpeg4-nr │ │ │ │ ├── vsynth1-mpeg4-nsse │ │ │ │ ├── vsynth1-mpeg4-qpel │ │ │ │ ├── vsynth1-mpeg4-qprd │ │ │ │ ├── vsynth1-mpeg4-rc │ │ │ │ ├── vsynth1-mpeg4-thread │ │ │ │ ├── vsynth1-mpng │ │ │ │ ├── vsynth1-msmpeg4 │ │ │ │ ├── vsynth1-msmpeg4v2 │ │ │ │ ├── vsynth1-msvideo1 │ │ │ │ ├── vsynth1-prores │ │ │ │ ├── vsynth1-prores_ks │ │ │ │ ├── vsynth1-qtrle │ │ │ │ ├── vsynth1-qtrlegray │ │ │ │ ├── vsynth1-r210 │ │ │ │ ├── vsynth1-rgb │ │ │ │ ├── vsynth1-roqvideo │ │ │ │ ├── vsynth1-rv10 │ │ │ │ ├── vsynth1-rv20 │ │ │ │ ├── vsynth1-snow │ │ │ │ ├── vsynth1-snow-hpel │ │ │ │ ├── vsynth1-snow-ll │ │ │ │ ├── vsynth1-svq1 │ │ │ │ ├── vsynth1-v210 │ │ │ │ ├── vsynth1-v210-10 │ │ │ │ ├── vsynth1-v308 │ │ │ │ ├── vsynth1-v408 │ │ │ │ ├── vsynth1-vc2-420p │ │ │ │ ├── vsynth1-vc2-420p10 │ │ │ │ ├── vsynth1-vc2-420p12 │ │ │ │ ├── vsynth1-vc2-422p │ │ │ │ ├── vsynth1-vc2-422p10 │ │ │ │ ├── vsynth1-vc2-422p12 │ │ │ │ ├── vsynth1-vc2-444p │ │ │ │ ├── vsynth1-vc2-444p10 │ │ │ │ ├── vsynth1-vc2-444p12 │ │ │ │ ├── vsynth1-wmv1 │ │ │ │ ├── vsynth1-wmv2 │ │ │ │ ├── vsynth1-xface │ │ │ │ ├── vsynth1-y41p │ │ │ │ ├── vsynth1-yuv │ │ │ │ ├── vsynth1-yuv4 │ │ │ │ ├── vsynth1-zlib │ │ │ │ ├── vsynth1-zmbv │ │ │ │ ├── vsynth2-amv │ │ │ │ ├── vsynth2-asv1 │ │ │ │ ├── vsynth2-asv2 │ │ │ │ ├── vsynth2-avui │ │ │ │ ├── vsynth2-bpp1 │ │ │ │ ├── vsynth2-bpp15 │ │ │ │ ├── vsynth2-cinepak │ │ │ │ ├── vsynth2-cljr │ │ │ │ ├── vsynth2-dnxhd-1080i │ │ │ │ ├── vsynth2-dnxhd-1080i-10bit │ │ │ │ ├── vsynth2-dnxhd-1080i-colr │ │ │ │ ├── vsynth2-dnxhd-2k-hr-hq │ │ │ │ ├── vsynth2-dnxhd-4k-hr-lb │ │ │ │ ├── vsynth2-dnxhd-720p │ │ │ │ ├── vsynth2-dnxhd-720p-10bit │ │ │ │ ├── vsynth2-dnxhd-720p-hr-lb │ │ │ │ ├── vsynth2-dnxhd-720p-rd │ │ │ │ ├── vsynth2-dnxhd-edge1-hr │ │ │ │ ├── vsynth2-dnxhd-edge2-hr │ │ │ │ ├── vsynth2-dnxhd-edge3-hr │ │ │ │ ├── vsynth2-dnxhd-hr-hq-mov │ │ │ │ ├── vsynth2-dnxhd-hr-lb-mov │ │ │ │ ├── vsynth2-dnxhd-hr-sq-mov │ │ │ │ ├── vsynth2-dnxhd-uhd-hr-sq │ │ │ │ ├── vsynth2-dv │ │ │ │ ├── vsynth2-dv-411 │ │ │ │ ├── vsynth2-dv-50 │ │ │ │ ├── vsynth2-ffv1 │ │ │ │ ├── vsynth2-ffv1-v0 │ │ │ │ ├── vsynth2-ffv1-v3-bgr0 │ │ │ │ ├── vsynth2-ffv1-v3-rgb48 │ │ │ │ ├── vsynth2-ffv1-v3-yuv420p │ │ │ │ ├── vsynth2-ffv1-v3-yuv422p10 │ │ │ │ ├── vsynth2-ffv1-v3-yuv444p16 │ │ │ │ ├── vsynth2-ffvhuff │ │ │ │ ├── vsynth2-ffvhuff420p12 │ │ │ │ ├── vsynth2-ffvhuff422p10left │ │ │ │ ├── vsynth2-ffvhuff444 │ │ │ │ ├── vsynth2-ffvhuff444p16 │ │ │ │ ├── vsynth2-flashsv │ │ │ │ ├── vsynth2-flashsv2 │ │ │ │ ├── vsynth2-flv │ │ │ │ ├── vsynth2-h261 │ │ │ │ ├── vsynth2-h261-trellis │ │ │ │ ├── vsynth2-h263 │ │ │ │ ├── vsynth2-h263-obmc │ │ │ │ ├── vsynth2-h263p │ │ │ │ ├── vsynth2-huffyuv │ │ │ │ ├── vsynth2-huffyuvbgr24 │ │ │ │ ├── vsynth2-huffyuvbgra │ │ │ │ ├── vsynth2-jpeg2000 │ │ │ │ ├── vsynth2-jpeg2000-97 │ │ │ │ ├── vsynth2-jpegls │ │ │ │ ├── vsynth2-ljpeg │ │ │ │ ├── vsynth2-mjpeg │ │ │ │ ├── vsynth2-mjpeg-422 │ │ │ │ ├── vsynth2-mjpeg-444 │ │ │ │ ├── vsynth2-mjpeg-huffman │ │ │ │ ├── vsynth2-mjpeg-trell │ │ │ │ ├── vsynth2-mjpeg-trell-huffman │ │ │ │ ├── vsynth2-mov-bgr24 │ │ │ │ ├── vsynth2-mov-bpp15 │ │ │ │ ├── vsynth2-mov-bpp16 │ │ │ │ ├── vsynth2-mpeg1 │ │ │ │ ├── vsynth2-mpeg1b │ │ │ │ ├── vsynth2-mpeg2 │ │ │ │ ├── vsynth2-mpeg2-422 │ │ │ │ ├── vsynth2-mpeg2-idct-int │ │ │ │ ├── vsynth2-mpeg2-ilace │ │ │ │ ├── vsynth2-mpeg2-ivlc-qprd │ │ │ │ ├── vsynth2-mpeg2-thread │ │ │ │ ├── vsynth2-mpeg2-thread-ivlc │ │ │ │ ├── vsynth2-mpeg4 │ │ │ │ ├── vsynth2-mpeg4-adap │ │ │ │ ├── vsynth2-mpeg4-adv │ │ │ │ ├── vsynth2-mpeg4-error │ │ │ │ ├── vsynth2-mpeg4-nr │ │ │ │ ├── vsynth2-mpeg4-nsse │ │ │ │ ├── vsynth2-mpeg4-qpel │ │ │ │ ├── vsynth2-mpeg4-qprd │ │ │ │ ├── vsynth2-mpeg4-rc │ │ │ │ ├── vsynth2-mpeg4-thread │ │ │ │ ├── vsynth2-mpng │ │ │ │ ├── vsynth2-msmpeg4 │ │ │ │ ├── vsynth2-msmpeg4v2 │ │ │ │ ├── vsynth2-msvideo1 │ │ │ │ ├── vsynth2-prores │ │ │ │ ├── vsynth2-prores_ks │ │ │ │ ├── vsynth2-qtrle │ │ │ │ ├── vsynth2-qtrlegray │ │ │ │ ├── vsynth2-r210 │ │ │ │ ├── vsynth2-rgb │ │ │ │ ├── vsynth2-roqvideo │ │ │ │ ├── vsynth2-rv10 │ │ │ │ ├── vsynth2-rv20 │ │ │ │ ├── vsynth2-snow │ │ │ │ ├── vsynth2-snow-hpel │ │ │ │ ├── vsynth2-snow-ll │ │ │ │ ├── vsynth2-svq1 │ │ │ │ ├── vsynth2-v210 │ │ │ │ ├── vsynth2-v210-10 │ │ │ │ ├── vsynth2-v308 │ │ │ │ ├── vsynth2-v408 │ │ │ │ ├── vsynth2-vc2-420p │ │ │ │ ├── vsynth2-vc2-420p10 │ │ │ │ ├── vsynth2-vc2-420p12 │ │ │ │ ├── vsynth2-vc2-422p │ │ │ │ ├── vsynth2-vc2-422p10 │ │ │ │ ├── vsynth2-vc2-422p12 │ │ │ │ ├── vsynth2-vc2-444p │ │ │ │ ├── vsynth2-vc2-444p10 │ │ │ │ ├── vsynth2-vc2-444p12 │ │ │ │ ├── vsynth2-wmv1 │ │ │ │ ├── vsynth2-wmv2 │ │ │ │ ├── vsynth2-xface │ │ │ │ ├── vsynth2-y41p │ │ │ │ ├── vsynth2-yuv │ │ │ │ ├── vsynth2-yuv4 │ │ │ │ ├── vsynth2-zlib │ │ │ │ ├── vsynth3-amv │ │ │ │ ├── vsynth3-asv1 │ │ │ │ ├── vsynth3-asv2 │ │ │ │ ├── vsynth3-bpp1 │ │ │ │ ├── vsynth3-bpp15 │ │ │ │ ├── vsynth3-cljr │ │ │ │ ├── vsynth3-dnxhd-1080i-10bit │ │ │ │ ├── vsynth3-dnxhd-1080i-colr │ │ │ │ ├── vsynth3-dnxhd-2k-hr-hq │ │ │ │ ├── vsynth3-dnxhd-4k-hr-lb │ │ │ │ ├── vsynth3-dnxhd-720p-hr-lb │ │ │ │ ├── vsynth3-dnxhd-edge1-hr │ │ │ │ ├── vsynth3-dnxhd-edge2-hr │ │ │ │ ├── vsynth3-dnxhd-edge3-hr │ │ │ │ ├── vsynth3-dnxhd-hr-hq-mov │ │ │ │ ├── vsynth3-dnxhd-hr-lb-mov │ │ │ │ ├── vsynth3-dnxhd-hr-sq-mov │ │ │ │ ├── vsynth3-dnxhd-uhd-hr-sq │ │ │ │ ├── vsynth3-ffv1 │ │ │ │ ├── vsynth3-ffv1-v0 │ │ │ │ ├── vsynth3-ffv1-v3-bgr0 │ │ │ │ ├── vsynth3-ffv1-v3-rgb48 │ │ │ │ ├── vsynth3-ffv1-v3-yuv420p │ │ │ │ ├── vsynth3-ffv1-v3-yuv422p10 │ │ │ │ ├── vsynth3-ffv1-v3-yuv444p16 │ │ │ │ ├── vsynth3-ffvhuff │ │ │ │ ├── vsynth3-ffvhuff420p12 │ │ │ │ ├── vsynth3-ffvhuff422p10left │ │ │ │ ├── vsynth3-ffvhuff444 │ │ │ │ ├── vsynth3-ffvhuff444p16 │ │ │ │ ├── vsynth3-flashsv │ │ │ │ ├── vsynth3-flashsv2 │ │ │ │ ├── vsynth3-flv │ │ │ │ ├── vsynth3-huffyuv │ │ │ │ ├── vsynth3-huffyuvbgr24 │ │ │ │ ├── vsynth3-huffyuvbgra │ │ │ │ ├── vsynth3-jpeg2000 │ │ │ │ ├── vsynth3-jpeg2000-97 │ │ │ │ ├── vsynth3-jpegls │ │ │ │ ├── vsynth3-ljpeg │ │ │ │ ├── vsynth3-mjpeg │ │ │ │ ├── vsynth3-mjpeg-422 │ │ │ │ ├── vsynth3-mjpeg-444 │ │ │ │ ├── vsynth3-mjpeg-huffman │ │ │ │ ├── vsynth3-mjpeg-trell │ │ │ │ ├── vsynth3-mjpeg-trell-huffman │ │ │ │ ├── vsynth3-mov-bgr24 │ │ │ │ ├── vsynth3-mov-bpp15 │ │ │ │ ├── vsynth3-mov-bpp16 │ │ │ │ ├── vsynth3-mpeg1 │ │ │ │ ├── vsynth3-mpeg1b │ │ │ │ ├── vsynth3-mpeg2 │ │ │ │ ├── vsynth3-mpeg2-422 │ │ │ │ ├── vsynth3-mpeg2-idct-int │ │ │ │ ├── vsynth3-mpeg2-ilace │ │ │ │ ├── vsynth3-mpeg2-ivlc-qprd │ │ │ │ ├── vsynth3-mpeg2-thread │ │ │ │ ├── vsynth3-mpeg2-thread-ivlc │ │ │ │ ├── vsynth3-mpeg4 │ │ │ │ ├── vsynth3-mpeg4-adap │ │ │ │ ├── vsynth3-mpeg4-adv │ │ │ │ ├── vsynth3-mpeg4-error │ │ │ │ ├── vsynth3-mpeg4-nr │ │ │ │ ├── vsynth3-mpeg4-nsse │ │ │ │ ├── vsynth3-mpeg4-qpel │ │ │ │ ├── vsynth3-mpeg4-qprd │ │ │ │ ├── vsynth3-mpeg4-rc │ │ │ │ ├── vsynth3-mpeg4-thread │ │ │ │ ├── vsynth3-mpng │ │ │ │ ├── vsynth3-msmpeg4 │ │ │ │ ├── vsynth3-msmpeg4v2 │ │ │ │ ├── vsynth3-prores │ │ │ │ ├── vsynth3-prores_ks │ │ │ │ ├── vsynth3-qtrle │ │ │ │ ├── vsynth3-r210 │ │ │ │ ├── vsynth3-rgb │ │ │ │ ├── vsynth3-svq1 │ │ │ │ ├── vsynth3-v210 │ │ │ │ ├── vsynth3-v210-10 │ │ │ │ ├── vsynth3-v308 │ │ │ │ ├── vsynth3-v408 │ │ │ │ ├── vsynth3-wmv1 │ │ │ │ ├── vsynth3-wmv2 │ │ │ │ ├── vsynth3-xface │ │ │ │ ├── vsynth3-yuv │ │ │ │ ├── vsynth3-yuv4 │ │ │ │ ├── vsynth3-zlib │ │ │ │ ├── vsynth_lena-amv │ │ │ │ ├── vsynth_lena-asv1 │ │ │ │ ├── vsynth_lena-asv2 │ │ │ │ ├── vsynth_lena-avui │ │ │ │ ├── vsynth_lena-bpp1 │ │ │ │ ├── vsynth_lena-bpp15 │ │ │ │ ├── vsynth_lena-cinepak │ │ │ │ ├── vsynth_lena-cljr │ │ │ │ ├── vsynth_lena-dnxhd-1080i │ │ │ │ ├── vsynth_lena-dnxhd-1080i-10bit │ │ │ │ ├── vsynth_lena-dnxhd-1080i-colr │ │ │ │ ├── vsynth_lena-dnxhd-2k-hr-hq │ │ │ │ ├── vsynth_lena-dnxhd-4k-hr-lb │ │ │ │ ├── vsynth_lena-dnxhd-720p │ │ │ │ ├── vsynth_lena-dnxhd-720p-10bit │ │ │ │ ├── vsynth_lena-dnxhd-720p-hr-lb │ │ │ │ ├── vsynth_lena-dnxhd-720p-rd │ │ │ │ ├── vsynth_lena-dnxhd-edge1-hr │ │ │ │ ├── vsynth_lena-dnxhd-edge2-hr │ │ │ │ ├── vsynth_lena-dnxhd-edge3-hr │ │ │ │ ├── vsynth_lena-dnxhd-hr-hq-mov │ │ │ │ ├── vsynth_lena-dnxhd-hr-lb-mov │ │ │ │ ├── vsynth_lena-dnxhd-hr-sq-mov │ │ │ │ ├── vsynth_lena-dnxhd-uhd-hr-sq │ │ │ │ ├── vsynth_lena-dnxhd_1080i │ │ │ │ ├── vsynth_lena-dv │ │ │ │ ├── vsynth_lena-dv-411 │ │ │ │ ├── vsynth_lena-dv-50 │ │ │ │ ├── vsynth_lena-dv_411 │ │ │ │ ├── vsynth_lena-ffv1 │ │ │ │ ├── vsynth_lena-ffv1-v0 │ │ │ │ ├── vsynth_lena-ffv1-v3-bgr0 │ │ │ │ ├── vsynth_lena-ffv1-v3-rgb48 │ │ │ │ ├── vsynth_lena-ffv1-v3-yuv420p │ │ │ │ ├── vsynth_lena-ffv1-v3-yuv422p10 │ │ │ │ ├── vsynth_lena-ffv1-v3-yuv444p16 │ │ │ │ ├── vsynth_lena-ffvhuff │ │ │ │ ├── vsynth_lena-ffvhuff420p12 │ │ │ │ ├── vsynth_lena-ffvhuff422p10left │ │ │ │ ├── vsynth_lena-ffvhuff444 │ │ │ │ ├── vsynth_lena-ffvhuff444p16 │ │ │ │ ├── vsynth_lena-flashsv │ │ │ │ ├── vsynth_lena-flashsv2 │ │ │ │ ├── vsynth_lena-flv │ │ │ │ ├── vsynth_lena-h261 │ │ │ │ ├── vsynth_lena-h261-trellis │ │ │ │ ├── vsynth_lena-h263 │ │ │ │ ├── vsynth_lena-h263-obmc │ │ │ │ ├── vsynth_lena-h263p │ │ │ │ ├── vsynth_lena-huffyuv │ │ │ │ ├── vsynth_lena-huffyuvbgr24 │ │ │ │ ├── vsynth_lena-huffyuvbgra │ │ │ │ ├── vsynth_lena-jpeg2000 │ │ │ │ ├── vsynth_lena-jpeg2000-97 │ │ │ │ ├── vsynth_lena-jpegls │ │ │ │ ├── vsynth_lena-ljpeg │ │ │ │ ├── vsynth_lena-mjpeg │ │ │ │ ├── vsynth_lena-mjpeg-422 │ │ │ │ ├── vsynth_lena-mjpeg-444 │ │ │ │ ├── vsynth_lena-mjpeg-huffman │ │ │ │ ├── vsynth_lena-mjpeg-trell │ │ │ │ ├── vsynth_lena-mjpeg-trell-huffman │ │ │ │ ├── vsynth_lena-mov-bgr24 │ │ │ │ ├── vsynth_lena-mov-bpp15 │ │ │ │ ├── vsynth_lena-mov-bpp16 │ │ │ │ ├── vsynth_lena-mpeg1 │ │ │ │ ├── vsynth_lena-mpeg1b │ │ │ │ ├── vsynth_lena-mpeg2 │ │ │ │ ├── vsynth_lena-mpeg2-422 │ │ │ │ ├── vsynth_lena-mpeg2-idct-int │ │ │ │ ├── vsynth_lena-mpeg2-ilace │ │ │ │ ├── vsynth_lena-mpeg2-ivlc-qprd │ │ │ │ ├── vsynth_lena-mpeg2-thread │ │ │ │ ├── vsynth_lena-mpeg2-thread-ivlc │ │ │ │ ├── vsynth_lena-mpeg4 │ │ │ │ ├── vsynth_lena-mpeg4-adap │ │ │ │ ├── vsynth_lena-mpeg4-adv │ │ │ │ ├── vsynth_lena-mpeg4-error │ │ │ │ ├── vsynth_lena-mpeg4-nr │ │ │ │ ├── vsynth_lena-mpeg4-nsse │ │ │ │ ├── vsynth_lena-mpeg4-qpel │ │ │ │ ├── vsynth_lena-mpeg4-qprd │ │ │ │ ├── vsynth_lena-mpeg4-rc │ │ │ │ ├── vsynth_lena-mpeg4-thread │ │ │ │ ├── vsynth_lena-mpng │ │ │ │ ├── vsynth_lena-msmpeg4 │ │ │ │ ├── vsynth_lena-msmpeg4v2 │ │ │ │ ├── vsynth_lena-msvideo1 │ │ │ │ ├── vsynth_lena-prores │ │ │ │ ├── vsynth_lena-prores_ks │ │ │ │ ├── vsynth_lena-qtrle │ │ │ │ ├── vsynth_lena-qtrlegray │ │ │ │ ├── vsynth_lena-r210 │ │ │ │ ├── vsynth_lena-rgb │ │ │ │ ├── vsynth_lena-roqvideo │ │ │ │ ├── vsynth_lena-rv10 │ │ │ │ ├── vsynth_lena-rv20 │ │ │ │ ├── vsynth_lena-snow │ │ │ │ ├── vsynth_lena-snow-hpel │ │ │ │ ├── vsynth_lena-snow-ll │ │ │ │ ├── vsynth_lena-svq1 │ │ │ │ ├── vsynth_lena-v210 │ │ │ │ ├── vsynth_lena-v210-10 │ │ │ │ ├── vsynth_lena-v308 │ │ │ │ ├── vsynth_lena-v408 │ │ │ │ ├── vsynth_lena-vc2-420p │ │ │ │ ├── vsynth_lena-vc2-420p10 │ │ │ │ ├── vsynth_lena-vc2-420p12 │ │ │ │ ├── vsynth_lena-vc2-422p │ │ │ │ ├── vsynth_lena-vc2-422p10 │ │ │ │ ├── vsynth_lena-vc2-422p12 │ │ │ │ ├── vsynth_lena-vc2-444p │ │ │ │ ├── vsynth_lena-vc2-444p10 │ │ │ │ ├── vsynth_lena-vc2-444p12 │ │ │ │ ├── vsynth_lena-wmv1 │ │ │ │ ├── vsynth_lena-wmv2 │ │ │ │ ├── vsynth_lena-xface │ │ │ │ ├── vsynth_lena-y41p │ │ │ │ ├── vsynth_lena-yuv │ │ │ │ ├── vsynth_lena-yuv4 │ │ │ │ ├── vsynth_lena-zlib │ │ │ │ └── vsynth_lena-zmbv │ │ │ ├── vsynth1 │ │ │ │ ├── cljr │ │ │ │ └── yuv │ │ │ └── vsynth_lena │ │ │ │ ├── cljr │ │ │ │ ├── huffyuv │ │ │ │ └── yuv │ │ ├── refcmp-metadata.awk │ │ ├── reference.pnm │ │ ├── regression-funcs.sh │ │ ├── rotozoom.c │ │ ├── simple1.ffconcat │ │ ├── simple2.ffconcat │ │ ├── test.ffmeta │ │ ├── tiny_psnr.c │ │ ├── tiny_ssim.c │ │ ├── utils.c │ │ └── videogen.c │ └── tools │ │ ├── Makefile │ │ ├── aviocat.c │ │ ├── bisect-create │ │ ├── bookmarklets.html │ │ ├── clean-diff │ │ ├── coverity.c │ │ ├── crypto_bench.c │ │ ├── cws2fws.c │ │ ├── dvd2concat │ │ ├── enum_options.c │ │ ├── ffescape.c │ │ ├── ffeval.c │ │ ├── ffhash.c │ │ ├── fourcc2pixfmt.c │ │ ├── gen-rc │ │ ├── graph2dot.c │ │ ├── ismindex.c │ │ ├── libav-merge-next-commit │ │ ├── loudnorm.rb │ │ ├── make_chlayout_test │ │ ├── missing_codec_desc │ │ ├── murge │ │ ├── normalize.py │ │ ├── patcheck │ │ ├── pktdumper.c │ │ ├── plotframes │ │ ├── probetest.c │ │ ├── qt-faststart.c │ │ ├── seek_print.c │ │ ├── sidxindex.c │ │ ├── sofa2wavs.c │ │ ├── target_dec_fuzzer.c │ │ ├── trasher.c │ │ ├── uncoded_frame.c │ │ ├── unwrap-diff │ │ ├── yuvcmp.c │ │ ├── zmqsend.c │ │ └── zmqshell.py │ ├── libexif │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README-Win32.txt │ ├── aclocal.m4 │ ├── auto-m4 │ │ ├── gettext.m4 │ │ ├── iconv.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ └── progtest.m4 │ ├── binary │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cam_features.c │ │ │ ├── photographer.c │ │ │ ├── thumbnail.c │ │ │ └── write-exif.c │ │ └── watcom │ │ │ ├── Makefile.in │ │ │ └── _stdint.h │ ├── depcomp │ ├── doc │ │ ├── Doxyfile │ │ ├── Doxyfile-internals │ │ ├── Doxyfile-internals.in │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.apidocs │ │ ├── footer.html │ │ └── libexif-api.html.tar.gz │ ├── install-sh │ ├── libexif-uninstalled.pc.in │ ├── libexif.pc.in │ ├── libexif.spec │ ├── libexif.spec.in │ ├── libexif │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _stdint.h │ │ ├── canon │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-canon.c │ │ │ ├── exif-mnote-data-canon.h │ │ │ ├── mnote-canon-entry.c │ │ │ ├── mnote-canon-entry.h │ │ │ ├── mnote-canon-tag.c │ │ │ └── mnote-canon-tag.h │ │ ├── exif-byte-order.c │ │ ├── exif-byte-order.h │ │ ├── exif-content.c │ │ ├── exif-content.h │ │ ├── exif-data-type.h │ │ ├── exif-data.c │ │ ├── exif-data.h │ │ ├── exif-entry.c │ │ ├── exif-entry.h │ │ ├── exif-format.c │ │ ├── exif-format.h │ │ ├── exif-ifd.c │ │ ├── exif-ifd.h │ │ ├── exif-loader.c │ │ ├── exif-loader.h │ │ ├── exif-log.c │ │ ├── exif-log.h │ │ ├── exif-mem.c │ │ ├── exif-mem.h │ │ ├── exif-mnote-data-priv.h │ │ ├── exif-mnote-data.c │ │ ├── exif-mnote-data.h │ │ ├── exif-system.h │ │ ├── exif-tag.c │ │ ├── exif-tag.h │ │ ├── exif-utils.c │ │ ├── exif-utils.h │ │ ├── exif.h │ │ ├── fuji │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-fuji.c │ │ │ ├── exif-mnote-data-fuji.h │ │ │ ├── mnote-fuji-entry.c │ │ │ ├── mnote-fuji-entry.h │ │ │ ├── mnote-fuji-tag.c │ │ │ └── mnote-fuji-tag.h │ │ ├── i18n.h │ │ ├── libexif.sym │ │ ├── olympus │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-olympus.c │ │ │ ├── exif-mnote-data-olympus.h │ │ │ ├── mnote-olympus-entry.c │ │ │ ├── mnote-olympus-entry.h │ │ │ ├── mnote-olympus-tag.c │ │ │ └── mnote-olympus-tag.h │ │ └── pentax │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-pentax.c │ │ │ ├── exif-mnote-data-pentax.h │ │ │ ├── mnote-pentax-entry.c │ │ │ ├── mnote-pentax-entry.h │ │ │ ├── mnote-pentax-tag.c │ │ │ └── mnote-pentax-tag.h │ ├── ltmain.sh │ ├── m4m │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gp-byteorder.m4 │ │ ├── gp-check-library.m4 │ │ ├── gp-check-popt.m4 │ │ ├── gp-check-shell-environment.m4 │ │ ├── gp-config-msg.m4 │ │ ├── gp-documentation.m4 │ │ ├── gp-gettext-hack.m4 │ │ ├── gp-packaging.m4 │ │ ├── gp-pkg-config.m4 │ │ ├── gp-references.m4 │ │ └── stdint.m4 │ ├── missing │ ├── mkinstalldirs │ ├── po │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── be.gmo │ │ ├── be.po │ │ ├── boldquot.sed │ │ ├── bs.gmo │ │ ├── bs.po │ │ ├── cs.gmo │ │ ├── cs.po │ │ ├── da.gmo │ │ ├── da.po │ │ ├── de.gmo │ │ ├── de.po │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── en_AU.gmo │ │ ├── en_AU.po │ │ ├── en_CA.gmo │ │ ├── en_CA.po │ │ ├── en_GB.gmo │ │ ├── en_GB.po │ │ ├── es.gmo │ │ ├── es.po │ │ ├── fr.gmo │ │ ├── fr.po │ │ ├── insert-header.sin │ │ ├── it.gmo │ │ ├── it.po │ │ ├── ja.gmo │ │ ├── ja.po │ │ ├── libexif-12.pot │ │ ├── nl.gmo │ │ ├── nl.po │ │ ├── pl.gmo │ │ ├── pl.po │ │ ├── pt.gmo │ │ ├── pt.po │ │ ├── pt_BR.gmo │ │ ├── pt_BR.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── ru.gmo │ │ ├── ru.po │ │ ├── sk.gmo │ │ ├── sk.po │ │ ├── sq.gmo │ │ ├── sq.po │ │ ├── sr.gmo │ │ ├── sr.po │ │ ├── stamp-po │ │ ├── sv.gmo │ │ ├── sv.po │ │ ├── tr.gmo │ │ ├── tr.po │ │ ├── uk.gmo │ │ ├── uk.po │ │ ├── vi.gmo │ │ ├── vi.po │ │ ├── zh_CN.gmo │ │ └── zh_CN.po │ └── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── nls │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check-localedir.in │ │ ├── check-nls.in │ │ ├── print-localedir.c │ │ ├── test-codeset.c │ │ └── test-nls.c │ │ ├── test-integers.c │ │ ├── test-mem.c │ │ ├── test-mnote.c │ │ ├── test-parse.c │ │ ├── test-sorted.c │ │ ├── test-tagtable.c │ │ └── test-value.c │ ├── libjpeg-turbo │ ├── BUILDING.md │ ├── Brewfile │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE.md │ ├── README.ijg │ ├── README.md │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── cmakescripts │ │ ├── BuildPackages.cmake │ │ ├── GNUInstallDirs.cmake │ │ ├── cmake_uninstall.cmake.in │ │ └── testclean.cmake │ ├── cmyk.h │ ├── coderules.txt │ ├── djpeg.1 │ ├── djpeg.c │ ├── doc │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── doxygen-extra.css │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── group___turbo_j_p_e_g.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ ├── all_63.html │ │ │ ├── all_63.js │ │ │ ├── all_64.html │ │ │ ├── all_64.js │ │ │ ├── all_68.html │ │ │ ├── all_68.js │ │ │ ├── all_6e.html │ │ │ ├── all_6e.js │ │ │ ├── all_6f.html │ │ │ ├── all_6f.js │ │ │ ├── all_72.html │ │ │ ├── all_72.js │ │ │ ├── all_74.html │ │ │ ├── all_74.js │ │ │ ├── all_77.html │ │ │ ├── all_77.js │ │ │ ├── all_78.html │ │ │ ├── all_78.js │ │ │ ├── all_79.html │ │ │ ├── all_79.js │ │ │ ├── classes_74.html │ │ │ ├── classes_74.js │ │ │ ├── close.png │ │ │ ├── enums_74.html │ │ │ ├── enums_74.js │ │ │ ├── enumvalues_74.html │ │ │ ├── enumvalues_74.js │ │ │ ├── functions_74.html │ │ │ ├── functions_74.js │ │ │ ├── groups_74.html │ │ │ ├── groups_74.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── typedefs_74.html │ │ │ ├── typedefs_74.js │ │ │ ├── variables_63.html │ │ │ ├── variables_63.js │ │ │ ├── variables_64.html │ │ │ ├── variables_64.js │ │ │ ├── variables_68.html │ │ │ ├── variables_68.js │ │ │ ├── variables_6e.html │ │ │ ├── variables_6e.js │ │ │ ├── variables_6f.html │ │ │ ├── variables_6f.js │ │ │ ├── variables_72.html │ │ │ ├── variables_72.js │ │ │ ├── variables_74.html │ │ │ ├── variables_74.js │ │ │ ├── variables_77.html │ │ │ ├── variables_77.js │ │ │ ├── variables_78.html │ │ │ ├── variables_78.js │ │ │ ├── variables_79.html │ │ │ └── variables_79.js │ │ │ ├── structtjregion.html │ │ │ ├── structtjscalingfactor.html │ │ │ ├── structtjtransform.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── doxygen-extra.css │ ├── doxygen.config │ ├── example.txt │ ├── jaricom.c │ ├── java │ │ ├── CMakeLists.txt │ │ ├── MANIFEST.MF │ │ ├── README │ │ ├── TJBench.java │ │ ├── TJExample.java │ │ ├── TJUnitTest.java │ │ ├── doc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── org │ │ │ │ └── libjpegturbo │ │ │ │ │ └── turbojpeg │ │ │ │ │ ├── TJ.html │ │ │ │ │ ├── TJCompressor.html │ │ │ │ │ ├── TJCustomFilter.html │ │ │ │ │ ├── TJDecompressor.html │ │ │ │ │ ├── TJException.html │ │ │ │ │ ├── TJScalingFactor.html │ │ │ │ │ ├── TJTransform.html │ │ │ │ │ ├── TJTransformer.html │ │ │ │ │ ├── YUVImage.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── org │ │ │ └── libjpegturbo │ │ │ │ └── turbojpeg │ │ │ │ ├── TJ.java │ │ │ │ ├── TJCompressor.java │ │ │ │ ├── TJCustomFilter.java │ │ │ │ ├── TJDecompressor.java │ │ │ │ ├── TJException.java │ │ │ │ ├── TJLoader-unix.java.in │ │ │ │ ├── TJLoader-win.java.in │ │ │ │ ├── TJScalingFactor.java │ │ │ │ ├── TJTransform.java │ │ │ │ ├── TJTransformer.java │ │ │ │ └── YUVImage.java │ │ ├── org_libjpegturbo_turbojpeg_TJ.h │ │ ├── org_libjpegturbo_turbojpeg_TJCompressor.h │ │ ├── org_libjpegturbo_turbojpeg_TJDecompressor.h │ │ └── org_libjpegturbo_turbojpeg_TJTransformer.h │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolext.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcicc.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h.in │ ├── jconfig.txt │ ├── jconfigint.h.in │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jcstest.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst-tj.c │ ├── jdatadst.c │ ├── jdatasrc-tj.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcoefct.h │ ├── jdcol565.c │ ├── jdcolext.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdicc.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmainct.h │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmaster.h │ ├── jdmerge.c │ ├── jdmrg565.c │ ├── jdmrgext.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdsample.h │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpeg_nbits_table.h │ ├── jpegcomp.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jsimd.h │ ├── jsimd_none.c │ ├── jsimddct.h │ ├── jstdhuff.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.map.in │ ├── libjpeg.txt │ ├── md5 │ │ ├── CMakeLists.txt │ │ ├── md5.c │ │ ├── md5.h │ │ ├── md5cmp.c │ │ └── md5hl.c │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── release │ │ ├── Distribution.xml.in │ │ ├── License.rtf │ │ ├── ReadMe.txt │ │ ├── Welcome.rtf │ │ ├── deb-control.in │ │ ├── installer.nsi.in │ │ ├── libjpeg.pc.in │ │ ├── libturbojpeg.pc.in │ │ ├── makecygwinpkg.in │ │ ├── makedpkg.in │ │ ├── makemacpkg.in │ │ ├── makerpm.in │ │ ├── makesrpm.in │ │ ├── maketarball.in │ │ ├── rpm.spec.in │ │ └── uninstall.in │ ├── sharedlib │ │ └── CMakeLists.txt │ ├── simd │ │ ├── CMakeLists.txt │ │ ├── arm │ │ │ ├── jsimd.c │ │ │ └── jsimd_neon.S │ │ ├── arm64 │ │ │ ├── jsimd.c │ │ │ └── jsimd_neon.S │ │ ├── gas-preprocessor.in │ │ ├── i386 │ │ │ ├── jccolext-avx2.asm │ │ │ ├── jccolext-mmx.asm │ │ │ ├── jccolext-sse2.asm │ │ │ ├── jccolor-avx2.asm │ │ │ ├── jccolor-mmx.asm │ │ │ ├── jccolor-sse2.asm │ │ │ ├── jcgray-avx2.asm │ │ │ ├── jcgray-mmx.asm │ │ │ ├── jcgray-sse2.asm │ │ │ ├── jcgryext-avx2.asm │ │ │ ├── jcgryext-mmx.asm │ │ │ ├── jcgryext-sse2.asm │ │ │ ├── jchuff-sse2.asm │ │ │ ├── jcphuff-sse2.asm │ │ │ ├── jcsample-avx2.asm │ │ │ ├── jcsample-mmx.asm │ │ │ ├── jcsample-sse2.asm │ │ │ ├── jdcolext-avx2.asm │ │ │ ├── jdcolext-mmx.asm │ │ │ ├── jdcolext-sse2.asm │ │ │ ├── jdcolor-avx2.asm │ │ │ ├── jdcolor-mmx.asm │ │ │ ├── jdcolor-sse2.asm │ │ │ ├── jdmerge-avx2.asm │ │ │ ├── jdmerge-mmx.asm │ │ │ ├── jdmerge-sse2.asm │ │ │ ├── jdmrgext-avx2.asm │ │ │ ├── jdmrgext-mmx.asm │ │ │ ├── jdmrgext-sse2.asm │ │ │ ├── jdsample-avx2.asm │ │ │ ├── jdsample-mmx.asm │ │ │ ├── jdsample-sse2.asm │ │ │ ├── jfdctflt-3dn.asm │ │ │ ├── jfdctflt-sse.asm │ │ │ ├── jfdctfst-mmx.asm │ │ │ ├── jfdctfst-sse2.asm │ │ │ ├── jfdctint-avx2.asm │ │ │ ├── jfdctint-mmx.asm │ │ │ ├── jfdctint-sse2.asm │ │ │ ├── jidctflt-3dn.asm │ │ │ ├── jidctflt-sse.asm │ │ │ ├── jidctflt-sse2.asm │ │ │ ├── jidctfst-mmx.asm │ │ │ ├── jidctfst-sse2.asm │ │ │ ├── jidctint-avx2.asm │ │ │ ├── jidctint-mmx.asm │ │ │ ├── jidctint-sse2.asm │ │ │ ├── jidctred-mmx.asm │ │ │ ├── jidctred-sse2.asm │ │ │ ├── jquant-3dn.asm │ │ │ ├── jquant-mmx.asm │ │ │ ├── jquant-sse.asm │ │ │ ├── jquantf-sse2.asm │ │ │ ├── jquanti-avx2.asm │ │ │ ├── jquanti-sse2.asm │ │ │ ├── jsimd.c │ │ │ └── jsimdcpu.asm │ │ ├── jsimd.h │ │ ├── jsimdcfg.inc.h │ │ ├── loongson │ │ │ ├── jccolext-mmi.c │ │ │ ├── jccolor-mmi.c │ │ │ ├── jcsample-mmi.c │ │ │ ├── jcsample.h │ │ │ ├── jdcolext-mmi.c │ │ │ ├── jdcolor-mmi.c │ │ │ ├── jdsample-mmi.c │ │ │ ├── jfdctint-mmi.c │ │ │ ├── jidctint-mmi.c │ │ │ ├── jquanti-mmi.c │ │ │ ├── jsimd.c │ │ │ ├── jsimd_mmi.h │ │ │ └── loongson-mmintrin.h │ │ ├── mips │ │ │ ├── jsimd.c │ │ │ ├── jsimd_dspr2.S │ │ │ └── jsimd_dspr2_asm.h │ │ ├── nasm │ │ │ ├── jcolsamp.inc │ │ │ ├── jdct.inc │ │ │ ├── jpeg_nbits_table.inc │ │ │ └── jsimdext.inc │ │ ├── powerpc │ │ │ ├── jccolext-altivec.c │ │ │ ├── jccolor-altivec.c │ │ │ ├── jcgray-altivec.c │ │ │ ├── jcgryext-altivec.c │ │ │ ├── jcsample-altivec.c │ │ │ ├── jcsample.h │ │ │ ├── jdcolext-altivec.c │ │ │ ├── jdcolor-altivec.c │ │ │ ├── jdmerge-altivec.c │ │ │ ├── jdmrgext-altivec.c │ │ │ ├── jdsample-altivec.c │ │ │ ├── jfdctfst-altivec.c │ │ │ ├── jfdctint-altivec.c │ │ │ ├── jidctfst-altivec.c │ │ │ ├── jidctint-altivec.c │ │ │ ├── jquanti-altivec.c │ │ │ ├── jsimd.c │ │ │ └── jsimd_altivec.h │ │ └── x86_64 │ │ │ ├── jccolext-avx2.asm │ │ │ ├── jccolext-sse2.asm │ │ │ ├── jccolor-avx2.asm │ │ │ ├── jccolor-sse2.asm │ │ │ ├── jcgray-avx2.asm │ │ │ ├── jcgray-sse2.asm │ │ │ ├── jcgryext-avx2.asm │ │ │ ├── jcgryext-sse2.asm │ │ │ ├── jchuff-sse2.asm │ │ │ ├── jcphuff-sse2.asm │ │ │ ├── jcsample-avx2.asm │ │ │ ├── jcsample-sse2.asm │ │ │ ├── jdcolext-avx2.asm │ │ │ ├── jdcolext-sse2.asm │ │ │ ├── jdcolor-avx2.asm │ │ │ ├── jdcolor-sse2.asm │ │ │ ├── jdmerge-avx2.asm │ │ │ ├── jdmerge-sse2.asm │ │ │ ├── jdmrgext-avx2.asm │ │ │ ├── jdmrgext-sse2.asm │ │ │ ├── jdsample-avx2.asm │ │ │ ├── jdsample-sse2.asm │ │ │ ├── jfdctflt-sse.asm │ │ │ ├── jfdctfst-sse2.asm │ │ │ ├── jfdctint-avx2.asm │ │ │ ├── jfdctint-sse2.asm │ │ │ ├── jidctflt-sse2.asm │ │ │ ├── jidctfst-sse2.asm │ │ │ ├── jidctint-avx2.asm │ │ │ ├── jidctint-sse2.asm │ │ │ ├── jidctred-sse2.asm │ │ │ ├── jquantf-sse2.asm │ │ │ ├── jquanti-avx2.asm │ │ │ ├── jquanti-sse2.asm │ │ │ ├── jsimd.c │ │ │ └── jsimdcpu.asm │ ├── structure.txt │ ├── testimages │ │ ├── nightshot_iso_100.bmp │ │ ├── nightshot_iso_100.txt │ │ ├── test1.icc │ │ ├── test1.icc.txt │ │ ├── test2.icc │ │ ├── test2.icc.txt │ │ ├── testimgari.jpg │ │ ├── testimgint.jpg │ │ ├── testorig.jpg │ │ ├── testorig.ppm │ │ ├── testorig12.jpg │ │ ├── vgl_5674_0098.bmp │ │ ├── vgl_6434_0018a.bmp │ │ └── vgl_6548_0026a.bmp │ ├── tjbench.c │ ├── tjbenchtest.in │ ├── tjbenchtest.java.in │ ├── tjexample.c │ ├── tjexampletest.in │ ├── tjexampletest.java.in │ ├── tjunittest.c │ ├── tjutil.c │ ├── tjutil.h │ ├── transupp.c │ ├── transupp.h │ ├── turbojpeg-jni.c │ ├── turbojpeg-mapfile │ ├── turbojpeg-mapfile.jni │ ├── turbojpeg.c │ ├── turbojpeg.h │ ├── usage.txt │ ├── win │ │ ├── jconfig.h.in │ │ ├── jpeg62-memsrcdst.def │ │ ├── jpeg62.def │ │ ├── jpeg7-memsrcdst.def │ │ ├── jpeg7.def │ │ ├── jpeg8.def │ │ └── jsimdcfg.inc │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c │ ├── libpng │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ └── filter_neon_intrinsics.c │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── README.txt │ │ ├── arm-neon │ │ │ ├── README │ │ │ ├── android-ndk.c │ │ │ ├── linux-auxv.c │ │ │ └── linux.c │ │ ├── conftest │ │ │ ├── README │ │ │ ├── pngcp.dfa │ │ │ ├── read.dfa │ │ │ ├── s_read.dfa │ │ │ ├── s_write.dfa │ │ │ ├── simple.dfa │ │ │ └── write.dfa │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── iccfrompng.c │ │ │ ├── pngpixel.c │ │ │ ├── pngtopng.c │ │ │ └── simpleover.c │ │ ├── gregbook │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile.mingw32 │ │ │ ├── Makefile.sgi │ │ │ ├── Makefile.unx │ │ │ ├── Makefile.w32 │ │ │ ├── README │ │ │ ├── makevms.com │ │ │ ├── readpng.c │ │ │ ├── readpng.h │ │ │ ├── readpng2.c │ │ │ ├── readpng2.h │ │ │ ├── readppm.c │ │ │ ├── rpng-win.c │ │ │ ├── rpng-x.c │ │ │ ├── rpng2-win.c │ │ │ ├── rpng2-x.c │ │ │ ├── toucan.png │ │ │ ├── wpng.c │ │ │ ├── writepng.c │ │ │ └── writepng.h │ │ ├── libtests │ │ │ ├── fakepng.c │ │ │ ├── gentests.sh │ │ │ ├── makepng.c │ │ │ ├── pngimage.c │ │ │ ├── pngstest-errors.h │ │ │ ├── pngstest.c │ │ │ ├── pngunknown.c │ │ │ ├── pngvalid.c │ │ │ ├── readpng.c │ │ │ ├── tarith.c │ │ │ └── timepng.c │ │ ├── mips-msa │ │ │ ├── README │ │ │ └── linux.c │ │ ├── oss-fuzz │ │ │ ├── Dockerfile │ │ │ ├── README.txt │ │ │ ├── build.sh │ │ │ ├── libpng_read_fuzzer.cc │ │ │ ├── libpng_read_fuzzer.options │ │ │ ├── newcc │ │ │ └── png.dict │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ ├── pngminus │ │ │ ├── README │ │ │ ├── makefile.std │ │ │ ├── makefile.tc3 │ │ │ ├── makevms.com │ │ │ ├── png2pnm.bat │ │ │ ├── png2pnm.c │ │ │ ├── png2pnm.sh │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── pnm2png.bat │ │ │ ├── pnm2png.c │ │ │ └── pnm2png.sh │ │ ├── pngsuite │ │ │ ├── README │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── ftbbn0g01.png │ │ │ ├── ftbbn0g02.png │ │ │ ├── ftbbn0g04.png │ │ │ ├── ftbbn2c16.png │ │ │ ├── ftbbn3p08.png │ │ │ ├── ftbgn2c16.png │ │ │ ├── ftbgn3p08.png │ │ │ ├── ftbrn2c08.png │ │ │ ├── ftbwn0g16.png │ │ │ ├── ftbwn3p08.png │ │ │ ├── ftbyn3p08.png │ │ │ ├── ftp0n0g08.png │ │ │ ├── ftp0n2c08.png │ │ │ ├── ftp0n3p08.png │ │ │ └── ftp1n3p08.png │ │ ├── powerpc-vsx │ │ │ ├── README │ │ │ ├── linux.c │ │ │ └── linux_aux.c │ │ ├── testpngs │ │ │ ├── crashers │ │ │ │ ├── bad_iCCP.png │ │ │ │ ├── badadler.png │ │ │ │ ├── badcrc.png │ │ │ │ ├── empty_ancillary_chunks.png │ │ │ │ ├── huge_IDAT.png │ │ │ │ ├── huge_bKGD_chunk.png │ │ │ │ ├── huge_cHRM_chunk.png │ │ │ │ ├── huge_eXIf_chunk.png │ │ │ │ ├── huge_gAMA_chunk.png │ │ │ │ ├── huge_hIST_chunk.png │ │ │ │ ├── huge_iCCP_chunk.png │ │ │ │ ├── huge_iTXt_chunk.png │ │ │ │ ├── huge_juNK_unsafe_to_copy.png │ │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ │ ├── huge_pCAL_chunk.png │ │ │ │ ├── huge_pHYs_chunk.png │ │ │ │ ├── huge_sCAL_chunk.png │ │ │ │ ├── huge_sPLT_chunk.png │ │ │ │ ├── huge_sRGB_chunk.png │ │ │ │ ├── huge_sTER_chunk.png │ │ │ │ ├── huge_tEXt_chunk.png │ │ │ │ ├── huge_tIME_chunk.png │ │ │ │ └── huge_zTXt_chunk.png │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ ├── gray-1-1.8.png │ │ │ ├── gray-1-linear-tRNS.png │ │ │ ├── gray-1-linear.png │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ ├── gray-1-sRGB.png │ │ │ ├── gray-1-tRNS.png │ │ │ ├── gray-1.png │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ ├── gray-16-1.8.png │ │ │ ├── gray-16-linear-tRNS.png │ │ │ ├── gray-16-linear.png │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ ├── gray-16-sRGB.png │ │ │ ├── gray-16-tRNS.png │ │ │ ├── gray-16.png │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ ├── gray-2-1.8.png │ │ │ ├── gray-2-linear-tRNS.png │ │ │ ├── gray-2-linear.png │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ ├── gray-2-sRGB.png │ │ │ ├── gray-2-tRNS.png │ │ │ ├── gray-2.png │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ ├── gray-4-1.8.png │ │ │ ├── gray-4-linear-tRNS.png │ │ │ ├── gray-4-linear.png │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ ├── gray-4-sRGB.png │ │ │ ├── gray-4-tRNS.png │ │ │ ├── gray-4.png │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ ├── gray-8-1.8.png │ │ │ ├── gray-8-linear-tRNS.png │ │ │ ├── gray-8-linear.png │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ ├── gray-8-sRGB.png │ │ │ ├── gray-8-tRNS.png │ │ │ ├── gray-8.png │ │ │ ├── gray-alpha-16-1.8.png │ │ │ ├── gray-alpha-16-linear.png │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ ├── gray-alpha-16.png │ │ │ ├── gray-alpha-8-1.8.png │ │ │ ├── gray-alpha-8-linear.png │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ ├── gray-alpha-8.png │ │ │ ├── makepngs.sh │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ ├── palette-1-1.8.png │ │ │ ├── palette-1-linear-tRNS.png │ │ │ ├── palette-1-linear.png │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ ├── palette-1-sRGB.png │ │ │ ├── palette-1-tRNS.png │ │ │ ├── palette-1.png │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ ├── palette-2-1.8.png │ │ │ ├── palette-2-linear-tRNS.png │ │ │ ├── palette-2-linear.png │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ ├── palette-2-sRGB.png │ │ │ ├── palette-2-tRNS.png │ │ │ ├── palette-2.png │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ ├── palette-4-1.8.png │ │ │ ├── palette-4-linear-tRNS.png │ │ │ ├── palette-4-linear.png │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ ├── palette-4-sRGB.png │ │ │ ├── palette-4-tRNS.png │ │ │ ├── palette-4.png │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ ├── palette-8-1.8.png │ │ │ ├── palette-8-linear-tRNS.png │ │ │ ├── palette-8-linear.png │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ ├── palette-8-sRGB.png │ │ │ ├── palette-8-tRNS.png │ │ │ ├── palette-8.png │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ ├── rgb-16-1.8.png │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ ├── rgb-16-linear.png │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ ├── rgb-16-sRGB.png │ │ │ ├── rgb-16-tRNS.png │ │ │ ├── rgb-16.png │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ ├── rgb-8-1.8.png │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ ├── rgb-8-linear.png │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ ├── rgb-8-sRGB.png │ │ │ ├── rgb-8-tRNS.png │ │ │ ├── rgb-8.png │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ ├── rgb-alpha-16-linear.png │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ ├── rgb-alpha-16.png │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ ├── rgb-alpha-8-linear.png │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ └── rgb-alpha-8.png │ │ ├── tools │ │ │ ├── README.txt │ │ │ ├── checksum-icc.c │ │ │ ├── chkfmt │ │ │ ├── cvtcolor.c │ │ │ ├── genpng.c │ │ │ ├── intgamma.sh │ │ │ ├── makesRGB.c │ │ │ ├── png-fix-itxt.c │ │ │ ├── pngcp.c │ │ │ ├── pngfix.c │ │ │ ├── reindent │ │ │ └── sRGB.h │ │ └── visupng │ │ │ ├── PngFile.c │ │ │ ├── PngFile.h │ │ │ ├── README.txt │ │ │ ├── VisualPng.c │ │ │ ├── VisualPng.dsp │ │ │ ├── VisualPng.dsw │ │ │ ├── VisualPng.ico │ │ │ ├── VisualPng.png │ │ │ ├── VisualPng.rc │ │ │ ├── cexcept.h │ │ │ └── resource.h │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── intel │ │ ├── filter_sse2_intrinsics.c │ │ └── intel_init.c │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── mips │ │ ├── filter_msa_intrinsics.c │ │ └── mips_init.c │ ├── missing │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── powerpc │ │ ├── filter_vsx_intrinsics.c │ │ └── powerpc_init.c │ ├── projects │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngstest.tgt │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── README.txt │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── genchk.cmake.in │ │ ├── genout.cmake.in │ │ ├── gensrc.cmake.in │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.linux-opt │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.h.prebuilt │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ ├── test.cmake.in │ │ └── vers.c │ ├── test-driver │ └── tests │ │ ├── pngimage-full │ │ ├── pngimage-quick │ │ ├── pngstest │ │ ├── pngstest-1.8 │ │ ├── pngstest-1.8-alpha │ │ ├── pngstest-linear │ │ ├── pngstest-linear-alpha │ │ ├── pngstest-none │ │ ├── pngstest-none-alpha │ │ ├── pngstest-sRGB │ │ ├── pngstest-sRGB-alpha │ │ ├── pngtest │ │ ├── pngtest-badpngs │ │ ├── pngunknown-IDAT │ │ ├── pngunknown-discard │ │ ├── pngunknown-if-safe │ │ ├── pngunknown-sAPI │ │ ├── pngunknown-sTER │ │ ├── pngunknown-save │ │ ├── pngunknown-vpAg │ │ ├── pngvalid-gamma-16-to-8 │ │ ├── pngvalid-gamma-alpha-mode │ │ ├── pngvalid-gamma-background │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ ├── pngvalid-gamma-expand16-background │ │ ├── pngvalid-gamma-expand16-transform │ │ ├── pngvalid-gamma-sbit │ │ ├── pngvalid-gamma-threshold │ │ ├── pngvalid-gamma-transform │ │ ├── pngvalid-progressive-interlace-standard │ │ ├── pngvalid-progressive-size │ │ ├── pngvalid-progressive-standard │ │ ├── pngvalid-standard │ │ └── pngvalid-transform │ ├── lua │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h │ ├── make │ ├── ReadMe.txt │ ├── mingw │ │ ├── ReadMe.txt │ │ ├── build │ │ ├── build-curl │ │ ├── build-ffmpeg │ │ ├── build-libexif │ │ ├── build-libjpeg-turbo │ │ ├── build-libpng │ │ ├── build-lua │ │ ├── build-other │ │ ├── build-qtpropertybrowser │ │ ├── build-scintilla │ │ └── build-zlib │ └── msvc │ │ ├── ReadMe.txt │ │ ├── build.bat │ │ ├── build.sln │ │ ├── build64.bat │ │ ├── curl │ │ ├── ReadMe.txt │ │ ├── libcurl.sln │ │ ├── libcurl.vcxproj │ │ └── libcurl.vcxproj.filters │ │ ├── ffmpeg │ │ ├── ReadMe.txt │ │ ├── build │ │ ├── build-ffmpeg │ │ └── build64 │ │ ├── libjpeg-turbo │ │ ├── ReadMe.txt │ │ ├── build.bat │ │ └── build64.bat │ │ ├── libpng │ │ ├── .gitignore │ │ ├── ReadMe.txt │ │ ├── libpng.sln │ │ ├── libpng.vcxproj │ │ ├── libpng.vcxproj.filters │ │ └── pnglibconf.h │ │ ├── lua │ │ ├── lua.sln │ │ ├── lua.vcxproj │ │ └── lua.vcxproj.filters │ │ ├── qtpropertybrowser │ │ ├── build.bat │ │ └── build64.bat │ │ ├── scintilla │ │ ├── build.bat │ │ └── build64.bat │ │ └── zlib │ │ ├── .gitignore │ │ ├── ReadMe.txt │ │ ├── zlib.sln │ │ ├── zlib.vcxproj │ │ └── zlib.vcxproj.filters │ ├── qtpropertybrowser │ ├── .gitignore │ ├── INSTALL.TXT │ ├── README.TXT │ ├── buildlib │ │ └── buildlib.pro │ ├── common.pri │ ├── configure │ ├── configure.bat │ ├── custom_build │ │ └── qtpropertybrowser.pro │ ├── doc │ │ ├── html │ │ │ ├── classic.css │ │ │ ├── images │ │ │ │ ├── canvas_typed.png │ │ │ │ ├── canvas_variant.png │ │ │ │ ├── decoration.png │ │ │ │ ├── demo.png │ │ │ │ ├── extension.png │ │ │ │ ├── object_controller.png │ │ │ │ ├── qt-logo.png │ │ │ │ ├── qtbuttonpropertybrowser.png │ │ │ │ ├── qtgroupboxpropertybrowser.png │ │ │ │ ├── qtpropertybrowser-duplicate.png │ │ │ │ ├── qtpropertybrowser.png │ │ │ │ ├── qttreepropertybrowser.png │ │ │ │ └── simple.png │ │ │ ├── index.html │ │ │ ├── qtabstracteditorfactory-members.html │ │ │ ├── qtabstracteditorfactory.html │ │ │ ├── qtabstracteditorfactorybase-members.html │ │ │ ├── qtabstracteditorfactorybase.html │ │ │ ├── qtabstractpropertybrowser-members.html │ │ │ ├── qtabstractpropertybrowser.html │ │ │ ├── qtabstractpropertymanager-members.html │ │ │ ├── qtabstractpropertymanager.html │ │ │ ├── qtboolpropertymanager-members.html │ │ │ ├── qtboolpropertymanager.html │ │ │ ├── qtbrowseritem-members.html │ │ │ ├── qtbrowseritem.html │ │ │ ├── qtbuttonpropertybrowser-members.html │ │ │ ├── qtbuttonpropertybrowser.html │ │ │ ├── qtchareditorfactory-members.html │ │ │ ├── qtchareditorfactory.html │ │ │ ├── qtcharpropertymanager-members.html │ │ │ ├── qtcharpropertymanager.html │ │ │ ├── qtcheckboxfactory-members.html │ │ │ ├── qtcheckboxfactory.html │ │ │ ├── qtcoloreditorfactory-members.html │ │ │ ├── qtcoloreditorfactory.html │ │ │ ├── qtcolorpropertymanager-members.html │ │ │ ├── qtcolorpropertymanager.html │ │ │ ├── qtcursoreditorfactory-members.html │ │ │ ├── qtcursoreditorfactory.html │ │ │ ├── qtcursorpropertymanager-members.html │ │ │ ├── qtcursorpropertymanager.html │ │ │ ├── qtdateeditfactory-members.html │ │ │ ├── qtdateeditfactory.html │ │ │ ├── qtdatepropertymanager-members.html │ │ │ ├── qtdatepropertymanager.html │ │ │ ├── qtdatetimeeditfactory-members.html │ │ │ ├── qtdatetimeeditfactory.html │ │ │ ├── qtdatetimepropertymanager-members.html │ │ │ ├── qtdatetimepropertymanager.html │ │ │ ├── qtdoublepropertymanager-members.html │ │ │ ├── qtdoublepropertymanager.html │ │ │ ├── qtdoublespinboxfactory-members.html │ │ │ ├── qtdoublespinboxfactory.html │ │ │ ├── qtenumeditorfactory-members.html │ │ │ ├── qtenumeditorfactory.html │ │ │ ├── qtenumpropertymanager-members.html │ │ │ ├── qtenumpropertymanager.html │ │ │ ├── qtflagpropertymanager-members.html │ │ │ ├── qtflagpropertymanager.html │ │ │ ├── qtfonteditorfactory-members.html │ │ │ ├── qtfonteditorfactory.html │ │ │ ├── qtfontpropertymanager-members.html │ │ │ ├── qtfontpropertymanager.html │ │ │ ├── qtgroupboxpropertybrowser-members.html │ │ │ ├── qtgroupboxpropertybrowser.html │ │ │ ├── qtgrouppropertymanager-members.html │ │ │ ├── qtgrouppropertymanager.html │ │ │ ├── qtintpropertymanager-members.html │ │ │ ├── qtintpropertymanager.html │ │ │ ├── qtkeysequenceeditorfactory-members.html │ │ │ ├── qtkeysequenceeditorfactory.html │ │ │ ├── qtkeysequencepropertymanager-members.html │ │ │ ├── qtkeysequencepropertymanager.html │ │ │ ├── qtlineeditfactory-members.html │ │ │ ├── qtlineeditfactory.html │ │ │ ├── qtlocalepropertymanager-members.html │ │ │ ├── qtlocalepropertymanager.html │ │ │ ├── qtpointfpropertymanager-members.html │ │ │ ├── qtpointfpropertymanager.html │ │ │ ├── qtpointpropertymanager-members.html │ │ │ ├── qtpointpropertymanager.html │ │ │ ├── qtproperty-members.html │ │ │ ├── qtproperty.html │ │ │ ├── qtpropertybrowser-example-canvas-typed.html │ │ │ ├── qtpropertybrowser-example-canvas-variant.html │ │ │ ├── qtpropertybrowser-example-decoration.html │ │ │ ├── qtpropertybrowser-example-demo.html │ │ │ ├── qtpropertybrowser-example-extension.html │ │ │ ├── qtpropertybrowser-example-object-controller.html │ │ │ ├── qtpropertybrowser-example-simple.html │ │ │ ├── qtpropertybrowser.dcf │ │ │ ├── qtpropertybrowser.index │ │ │ ├── qtpropertybrowser.qhp │ │ │ ├── qtrectfpropertymanager-members.html │ │ │ ├── qtrectfpropertymanager.html │ │ │ ├── qtrectpropertymanager-members.html │ │ │ ├── qtrectpropertymanager.html │ │ │ ├── qtscrollbarfactory-members.html │ │ │ ├── qtscrollbarfactory.html │ │ │ ├── qtsizefpropertymanager-members.html │ │ │ ├── qtsizefpropertymanager.html │ │ │ ├── qtsizepolicypropertymanager-members.html │ │ │ ├── qtsizepolicypropertymanager.html │ │ │ ├── qtsizepropertymanager-members.html │ │ │ ├── qtsizepropertymanager.html │ │ │ ├── qtsliderfactory-members.html │ │ │ ├── qtsliderfactory.html │ │ │ ├── qtspinboxfactory-members.html │ │ │ ├── qtspinboxfactory.html │ │ │ ├── qtstringpropertymanager-members.html │ │ │ ├── qtstringpropertymanager.html │ │ │ ├── qttimeeditfactory-members.html │ │ │ ├── qttimeeditfactory.html │ │ │ ├── qttimepropertymanager-members.html │ │ │ ├── qttimepropertymanager.html │ │ │ ├── qttreepropertybrowser-members.html │ │ │ ├── qttreepropertybrowser.html │ │ │ ├── qtvarianteditorfactory-members.html │ │ │ ├── qtvarianteditorfactory.html │ │ │ ├── qtvariantproperty-members.html │ │ │ ├── qtvariantproperty.html │ │ │ ├── qtvariantpropertymanager-members.html │ │ │ └── qtvariantpropertymanager.html │ │ ├── images │ │ │ ├── canvas_typed.png │ │ │ ├── canvas_variant.png │ │ │ ├── decoration.png │ │ │ ├── demo.png │ │ │ ├── extension.png │ │ │ ├── object_controller.png │ │ │ ├── qt-logo.png │ │ │ ├── qtbuttonpropertybrowser.png │ │ │ ├── qtgroupboxpropertybrowser.png │ │ │ ├── qtpropertybrowser-duplicate.png │ │ │ ├── qtpropertybrowser.png │ │ │ ├── qttreepropertybrowser.png │ │ │ └── simple.png │ │ └── index.qdoc │ ├── examples │ │ ├── canvas_typed │ │ │ ├── canvas_typed.pro │ │ │ ├── canvas_typed.qdoc │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── qtcanvas.cpp │ │ │ └── qtcanvas.h │ │ ├── canvas_variant │ │ │ ├── canvas_variant.pro │ │ │ ├── canvas_variant.qdoc │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── qtcanvas.cpp │ │ │ └── qtcanvas.h │ │ ├── decoration │ │ │ ├── decoration.pro │ │ │ ├── decoration.qdoc │ │ │ └── main.cpp │ │ ├── demo │ │ │ ├── demo.pro │ │ │ ├── demo.qdoc │ │ │ ├── demo.qrc │ │ │ ├── images │ │ │ │ ├── down.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── up.png │ │ │ └── main.cpp │ │ ├── examples.pro │ │ ├── extension │ │ │ ├── extension.pro │ │ │ ├── extension.qdoc │ │ │ └── main.cpp │ │ ├── object_controller │ │ │ ├── main.cpp │ │ │ ├── object_controller.pro │ │ │ ├── object_controller.qdoc │ │ │ ├── objectcontroller.cpp │ │ │ └── objectcontroller.h │ │ └── simple │ │ │ ├── main.cpp │ │ │ ├── simple.pro │ │ │ └── simple.qdoc │ ├── qtpropertybrowser.pro │ └── src │ │ ├── QtAbstractEditorFactoryBase │ │ ├── QtAbstractPropertyBrowser │ │ ├── QtAbstractPropertyManager │ │ ├── QtBoolPropertyManager │ │ ├── QtBrowserItem │ │ ├── QtButtonPropertyBrowser │ │ ├── QtCharEditorFactory │ │ ├── QtCharPropertyManager │ │ ├── QtCheckBoxFactory │ │ ├── QtColorEditorFactory │ │ ├── QtColorPropertyManager │ │ ├── QtCursorEditorFactory │ │ ├── QtCursorPropertyManager │ │ ├── QtDateEditFactory │ │ ├── QtDatePropertyManager │ │ ├── QtDateTimeEditFactory │ │ ├── QtDateTimePropertyManager │ │ ├── QtDoublePropertyManager │ │ ├── QtDoubleSpinBoxFactory │ │ ├── QtEnumEditorFactory │ │ ├── QtEnumPropertyManager │ │ ├── QtFlagPropertyManager │ │ ├── QtFontEditorFactory │ │ ├── QtFontPropertyManager │ │ ├── QtGroupBoxPropertyBrowser │ │ ├── QtGroupPropertyManager │ │ ├── QtIntPropertyManager │ │ ├── QtKeySequenceEditorFactory │ │ ├── QtKeySequencePropertyManager │ │ ├── QtLineEditFactory │ │ ├── QtLocalePropertyManager │ │ ├── QtPointFPropertyManager │ │ ├── QtPointPropertyManager │ │ ├── QtProperty │ │ ├── QtRectFPropertyManager │ │ ├── QtRectPropertyManager │ │ ├── QtScrollBarFactory │ │ ├── QtSizeFPropertyManager │ │ ├── QtSizePolicyPropertyManager │ │ ├── QtSizePropertyManager │ │ ├── QtSliderFactory │ │ ├── QtSpinBoxFactory │ │ ├── QtStringPropertyManager │ │ ├── QtTimeEditFactory │ │ ├── QtTimePropertyManager │ │ ├── QtTreePropertyBrowser │ │ ├── QtVariantEditorFactory │ │ ├── QtVariantProperty │ │ ├── QtVariantPropertyManager │ │ ├── images │ │ ├── cursor-arrow.png │ │ ├── cursor-busy.png │ │ ├── cursor-closedhand.png │ │ ├── cursor-cross.png │ │ ├── cursor-forbidden.png │ │ ├── cursor-hand.png │ │ ├── cursor-hsplit.png │ │ ├── cursor-ibeam.png │ │ ├── cursor-openhand.png │ │ ├── cursor-sizeall.png │ │ ├── cursor-sizeb.png │ │ ├── cursor-sizef.png │ │ ├── cursor-sizeh.png │ │ ├── cursor-sizev.png │ │ ├── cursor-uparrow.png │ │ ├── cursor-vsplit.png │ │ ├── cursor-wait.png │ │ └── cursor-whatsthis.png │ │ ├── qtbuttonpropertybrowser.cpp │ │ ├── qtbuttonpropertybrowser.h │ │ ├── qteditorfactory.cpp │ │ ├── qteditorfactory.h │ │ ├── qtgroupboxpropertybrowser.cpp │ │ ├── qtgroupboxpropertybrowser.h │ │ ├── qtpropertybrowser.cpp │ │ ├── qtpropertybrowser.h │ │ ├── qtpropertybrowser.pri │ │ ├── qtpropertybrowser.qrc │ │ ├── qtpropertybrowserutils.cpp │ │ ├── qtpropertybrowserutils_p.h │ │ ├── qtpropertymanager.cpp │ │ ├── qtpropertymanager.h │ │ ├── qttreepropertybrowser.cpp │ │ ├── qttreepropertybrowser.h │ │ ├── qtvariantproperty.cpp │ │ └── qtvariantproperty.h │ ├── scintilla │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CONTRIBUTING │ ├── License.txt │ ├── README │ ├── bin │ │ ├── __init__.py │ │ └── empty.txt │ ├── cocoa │ │ ├── InfoBar.h │ │ ├── InfoBar.mm │ │ ├── InfoBarCommunicator.h │ │ ├── PlatCocoa.h │ │ ├── PlatCocoa.mm │ │ ├── QuartzTextLayout.h │ │ ├── QuartzTextStyle.h │ │ ├── QuartzTextStyleAttribute.h │ │ ├── ScintillaCocoa.h │ │ ├── ScintillaCocoa.mm │ │ ├── ScintillaFramework │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ScintillaFramework.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Scintilla_Prefix.pch │ │ │ └── module.modulemap │ │ ├── ScintillaTest │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── Scintilla-Info.plist │ │ │ ├── ScintillaTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── ScintillaTest_Prefix.pch │ │ │ ├── TestData.sql │ │ │ └── main.m │ │ ├── ScintillaView.h │ │ ├── ScintillaView.mm │ │ ├── checkbuildosx.sh │ │ └── res │ │ │ ├── info_bar_bg.png │ │ │ ├── info_bar_bg@2x.png │ │ │ ├── mac_cursor_busy.png │ │ │ ├── mac_cursor_busy@2x.png │ │ │ ├── mac_cursor_flipped.png │ │ │ └── mac_cursor_flipped@2x.png │ ├── cppcheck.suppress │ ├── delbin.bat │ ├── doc │ │ ├── Design.html │ │ ├── Icons.html │ │ ├── Indicators.png │ │ ├── Lexer.txt │ │ ├── Markers.png │ │ ├── Privacy.html │ │ ├── SciBreak.jpg │ │ ├── SciCoding.html │ │ ├── SciRest.jpg │ │ ├── SciTEIco.png │ │ ├── SciWord.jpg │ │ ├── ScintillaDoc.html │ │ ├── ScintillaDownload.html │ │ ├── ScintillaHistory.html │ │ ├── ScintillaRelated.html │ │ ├── ScintillaToDo.html │ │ ├── ScintillaUsage.html │ │ ├── Steps.html │ │ ├── annotations.png │ │ ├── index.html │ │ └── styledmargin.png │ ├── gtk │ │ ├── Converter.h │ │ ├── PlatGTK.cxx │ │ ├── ScintillaGTK.cxx │ │ ├── ScintillaGTK.h │ │ ├── ScintillaGTKAccessible.cxx │ │ ├── ScintillaGTKAccessible.h │ │ ├── deps.mak │ │ ├── makefile │ │ ├── scintilla-marshal.c │ │ ├── scintilla-marshal.h │ │ └── scintilla-marshal.list │ ├── include │ │ ├── ILexer.h │ │ ├── Platform.h │ │ ├── SciLexer.h │ │ ├── Sci_Position.h │ │ ├── Scintilla.h │ │ ├── Scintilla.iface │ │ └── ScintillaWidget.h │ ├── lexers │ │ ├── LexA68k.cxx │ │ ├── LexAPDL.cxx │ │ ├── LexASY.cxx │ │ ├── LexAU3.cxx │ │ ├── LexAVE.cxx │ │ ├── LexAVS.cxx │ │ ├── LexAbaqus.cxx │ │ ├── LexAda.cxx │ │ ├── LexAsm.cxx │ │ ├── LexAsn1.cxx │ │ ├── LexBaan.cxx │ │ ├── LexBash.cxx │ │ ├── LexBasic.cxx │ │ ├── LexBatch.cxx │ │ ├── LexBibTeX.cxx │ │ ├── LexBullant.cxx │ │ ├── LexCLW.cxx │ │ ├── LexCOBOL.cxx │ │ ├── LexCPP.cxx │ │ ├── LexCSS.cxx │ │ ├── LexCaml.cxx │ │ ├── LexCmake.cxx │ │ ├── LexCoffeeScript.cxx │ │ ├── LexConf.cxx │ │ ├── LexCrontab.cxx │ │ ├── LexCsound.cxx │ │ ├── LexD.cxx │ │ ├── LexDMAP.cxx │ │ ├── LexDMIS.cxx │ │ ├── LexDiff.cxx │ │ ├── LexECL.cxx │ │ ├── LexEDIFACT.cxx │ │ ├── LexEScript.cxx │ │ ├── LexEiffel.cxx │ │ ├── LexErlang.cxx │ │ ├── LexErrorList.cxx │ │ ├── LexFlagship.cxx │ │ ├── LexForth.cxx │ │ ├── LexFortran.cxx │ │ ├── LexGAP.cxx │ │ ├── LexGui4Cli.cxx │ │ ├── LexHTML.cxx │ │ ├── LexHaskell.cxx │ │ ├── LexHex.cxx │ │ ├── LexIndent.cxx │ │ ├── LexInno.cxx │ │ ├── LexJSON.cxx │ │ ├── LexKVIrc.cxx │ │ ├── LexKix.cxx │ │ ├── LexLaTeX.cxx │ │ ├── LexLisp.cxx │ │ ├── LexLout.cxx │ │ ├── LexLua.cxx │ │ ├── LexMMIXAL.cxx │ │ ├── LexMPT.cxx │ │ ├── LexMSSQL.cxx │ │ ├── LexMagik.cxx │ │ ├── LexMake.cxx │ │ ├── LexMarkdown.cxx │ │ ├── LexMatlab.cxx │ │ ├── LexMetapost.cxx │ │ ├── LexModula.cxx │ │ ├── LexMySQL.cxx │ │ ├── LexNimrod.cxx │ │ ├── LexNsis.cxx │ │ ├── LexNull.cxx │ │ ├── LexOScript.cxx │ │ ├── LexOpal.cxx │ │ ├── LexPB.cxx │ │ ├── LexPLM.cxx │ │ ├── LexPO.cxx │ │ ├── LexPOV.cxx │ │ ├── LexPS.cxx │ │ ├── LexPascal.cxx │ │ ├── LexPerl.cxx │ │ ├── LexPowerPro.cxx │ │ ├── LexPowerShell.cxx │ │ ├── LexProgress.cxx │ │ ├── LexProps.cxx │ │ ├── LexPython.cxx │ │ ├── LexR.cxx │ │ ├── LexRebol.cxx │ │ ├── LexRegistry.cxx │ │ ├── LexRuby.cxx │ │ ├── LexRust.cxx │ │ ├── LexSML.cxx │ │ ├── LexSQL.cxx │ │ ├── LexSTTXT.cxx │ │ ├── LexScriptol.cxx │ │ ├── LexSmalltalk.cxx │ │ ├── LexSorcus.cxx │ │ ├── LexSpecman.cxx │ │ ├── LexSpice.cxx │ │ ├── LexTACL.cxx │ │ ├── LexTADS3.cxx │ │ ├── LexTAL.cxx │ │ ├── LexTCL.cxx │ │ ├── LexTCMD.cxx │ │ ├── LexTeX.cxx │ │ ├── LexTxt2tags.cxx │ │ ├── LexVB.cxx │ │ ├── LexVHDL.cxx │ │ ├── LexVerilog.cxx │ │ ├── LexVisualProlog.cxx │ │ └── LexYAML.cxx │ ├── lexlib │ │ ├── Accessor.cxx │ │ ├── Accessor.h │ │ ├── CharacterCategory.cxx │ │ ├── CharacterCategory.h │ │ ├── CharacterSet.cxx │ │ ├── CharacterSet.h │ │ ├── LexAccessor.h │ │ ├── LexerBase.cxx │ │ ├── LexerBase.h │ │ ├── LexerModule.cxx │ │ ├── LexerModule.h │ │ ├── LexerNoExceptions.cxx │ │ ├── LexerNoExceptions.h │ │ ├── LexerSimple.cxx │ │ ├── LexerSimple.h │ │ ├── OptionSet.h │ │ ├── PropSetSimple.cxx │ │ ├── PropSetSimple.h │ │ ├── SparseState.h │ │ ├── StringCopy.h │ │ ├── StyleContext.cxx │ │ ├── StyleContext.h │ │ ├── SubStyles.h │ │ ├── WordList.cxx │ │ └── WordList.h │ ├── qt │ │ ├── .gitignore │ │ ├── README │ │ ├── ScintillaEdit │ │ │ ├── ScintillaDocument.cpp │ │ │ ├── ScintillaDocument.h │ │ │ ├── ScintillaEdit.cpp │ │ │ ├── ScintillaEdit.cpp.template │ │ │ ├── ScintillaEdit.h │ │ │ ├── ScintillaEdit.h.template │ │ │ ├── ScintillaEdit.pro │ │ │ └── WidgetGen.py │ │ ├── ScintillaEditBase │ │ │ ├── Notes.txt │ │ │ ├── PlatQt.cpp │ │ │ ├── PlatQt.h │ │ │ ├── ScintillaEditBase.cpp │ │ │ ├── ScintillaEditBase.h │ │ │ ├── ScintillaEditBase.pro │ │ │ ├── ScintillaQt.cpp │ │ │ └── ScintillaQt.h │ │ └── ScintillaEditPy │ │ │ ├── README │ │ │ ├── ScintillaConstants.py │ │ │ ├── ScintillaConstants.py.template │ │ │ ├── ScintillaEditPy.pro │ │ │ ├── global.h │ │ │ ├── sepbuild.py │ │ │ ├── testsepq.py │ │ │ └── typesystem_ScintillaEdit.xml.template │ ├── scripts │ │ ├── Face.py │ │ ├── FileGenerator.py │ │ ├── GenerateCaseConvert.py │ │ ├── GenerateCharacterCategory.py │ │ ├── HFacer.py │ │ ├── HeaderCheck.py │ │ ├── HeaderOrder.txt │ │ ├── LexGen.py │ │ ├── ScintillaData.py │ │ └── __pycache__ │ │ │ ├── Face.cpython-37.pyc │ │ │ └── FileGenerator.cpython-37.pyc │ ├── src │ │ ├── AutoComplete.cxx │ │ ├── AutoComplete.h │ │ ├── CallTip.cxx │ │ ├── CallTip.h │ │ ├── CaseConvert.cxx │ │ ├── CaseConvert.h │ │ ├── CaseFolder.cxx │ │ ├── CaseFolder.h │ │ ├── Catalogue.cxx │ │ ├── Catalogue.h │ │ ├── CellBuffer.cxx │ │ ├── CellBuffer.h │ │ ├── CharClassify.cxx │ │ ├── CharClassify.h │ │ ├── ContractionState.cxx │ │ ├── ContractionState.h │ │ ├── Decoration.cxx │ │ ├── Decoration.h │ │ ├── Document.cxx │ │ ├── Document.h │ │ ├── EditModel.cxx │ │ ├── EditModel.h │ │ ├── EditView.cxx │ │ ├── EditView.h │ │ ├── Editor.cxx │ │ ├── Editor.h │ │ ├── ExternalLexer.cxx │ │ ├── ExternalLexer.h │ │ ├── FontQuality.h │ │ ├── Indicator.cxx │ │ ├── Indicator.h │ │ ├── KeyMap.cxx │ │ ├── KeyMap.h │ │ ├── LineMarker.cxx │ │ ├── LineMarker.h │ │ ├── MarginView.cxx │ │ ├── MarginView.h │ │ ├── Partitioning.h │ │ ├── PerLine.cxx │ │ ├── PerLine.h │ │ ├── Position.h │ │ ├── PositionCache.cxx │ │ ├── PositionCache.h │ │ ├── RESearch.cxx │ │ ├── RESearch.h │ │ ├── RunStyles.cxx │ │ ├── RunStyles.h │ │ ├── SciTE.properties │ │ ├── ScintillaBase.cxx │ │ ├── ScintillaBase.h │ │ ├── Selection.cxx │ │ ├── Selection.h │ │ ├── SparseVector.h │ │ ├── SplitVector.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── UniConversion.cxx │ │ ├── UniConversion.h │ │ ├── UnicodeFromUTF8.h │ │ ├── UniqueString.h │ │ ├── ViewStyle.cxx │ │ ├── ViewStyle.h │ │ ├── XPM.cxx │ │ └── XPM.h │ ├── test │ │ ├── MessageNumbers.py │ │ ├── README │ │ ├── ScintillaCallable.py │ │ ├── XiteMenu.py │ │ ├── XiteQt.py │ │ ├── XiteWin.py │ │ ├── examples │ │ │ ├── perl-test-5220delta.pl │ │ │ ├── perl-test-5220delta.pl.styled │ │ │ ├── perl-test-sub-prototypes.pl │ │ │ ├── perl-test-sub-prototypes.pl.styled │ │ │ ├── x.asp │ │ │ ├── x.asp.styled │ │ │ ├── x.cxx │ │ │ ├── x.cxx.styled │ │ │ ├── x.d │ │ │ ├── x.d.styled │ │ │ ├── x.html │ │ │ ├── x.html.styled │ │ │ ├── x.lua │ │ │ ├── x.lua.styled │ │ │ ├── x.php │ │ │ ├── x.php.styled │ │ │ ├── x.pl │ │ │ ├── x.pl.styled │ │ │ ├── x.py │ │ │ ├── x.py.styled │ │ │ ├── x.rb │ │ │ ├── x.rb.styled │ │ │ ├── x.vb │ │ │ └── x.vb.styled │ │ ├── gi │ │ │ ├── Scintilla-0.1.gir.good │ │ │ ├── filter-scintilla-h.py │ │ │ ├── gi-test.py │ │ │ └── makefile │ │ ├── lexTests.py │ │ ├── performanceTests.py │ │ ├── simpleTests.py │ │ ├── unit │ │ │ ├── LICENSE_1_0.txt │ │ │ ├── README │ │ │ ├── Sci.natvis │ │ │ ├── SciTE.properties │ │ │ ├── UnitTester.cxx │ │ │ ├── UnitTester.vcxproj │ │ │ ├── catch.hpp │ │ │ ├── makefile │ │ │ ├── test.mak │ │ │ ├── testCellBuffer.cxx │ │ │ ├── testCharClassify.cxx │ │ │ ├── testContractionState.cxx │ │ │ ├── testDecoration.cxx │ │ │ ├── testPartitioning.cxx │ │ │ ├── testRunStyles.cxx │ │ │ ├── testSparseState.cxx │ │ │ ├── testSparseVector.cxx │ │ │ ├── testSplitVector.cxx │ │ │ ├── testUnicodeFromUTF8.cxx │ │ │ ├── testWordList.cxx │ │ │ └── unitTest.cxx │ │ └── xite.py │ ├── tgzsrc │ ├── version.txt │ ├── win32 │ │ ├── CheckD2D.cxx │ │ ├── HanjaDic.cxx │ │ ├── HanjaDic.h │ │ ├── PlatWin.cxx │ │ ├── PlatWin.h │ │ ├── SciLexer.vcxproj │ │ ├── SciTE.properties │ │ ├── ScintRes.rc │ │ ├── Scintilla.def │ │ ├── ScintillaWin.cxx │ │ ├── deps.mak │ │ ├── makefile │ │ └── scintilla.mak │ └── zipsrc.bat │ ├── versions.txt │ └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── amd64 │ │ └── amd64-match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ └── readme.txt │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── inffas32.asm │ │ ├── match686.asm │ │ └── readme.txt │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ ├── pufftest.c │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── miniunz.vcxproj │ │ ├── miniunz.vcxproj.filters │ │ ├── minizip.vcxproj │ │ ├── minizip.vcxproj.filters │ │ ├── testzlib.vcxproj │ │ ├── testzlib.vcxproj.filters │ │ ├── testzlibdll.vcxproj │ │ ├── testzlibdll.vcxproj.filters │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibstat.vcxproj.filters │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ ├── zlibvc.vcxproj │ │ └── zlibvc.vcxproj.filters │ │ ├── vc11 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc12 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc14 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.emx │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ └── visual-basic.txt │ ├── os400 │ ├── README400 │ ├── bndsrc │ ├── make.sh │ └── zlib.inc │ ├── qnx │ └── package.qpg │ ├── test │ ├── example.c │ ├── infcover.c │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── images ├── cv_examples.jpg ├── cvsandbox.jpg ├── cvsandbox.png └── processing_objects.jpg └── sources ├── .gitignore ├── afx ├── afx_imaging │ ├── additive_noise.c │ ├── alpha.c │ ├── binary2grayscale.c │ ├── binary_dilatation_3x3.c │ ├── binary_erosion_3x3.c │ ├── blob_counter.c │ ├── blur_image.c │ ├── canny_edge_detector.c │ ├── color2grayscale.c │ ├── color_conversion.c │ ├── color_filtering.c │ ├── color_maps.c │ ├── color_remapping.c │ ├── contrast_stretching.c │ ├── convolution.c │ ├── dilatation_3x3.c │ ├── distance_transform.c │ ├── drawing.c │ ├── drawing_text.c │ ├── edge_detectors.c │ ├── erosion_3x3.c │ ├── error_diffusion_dithering.c │ ├── extract_channel.c │ ├── extract_channel_nrgb.c │ ├── gaussian.c │ ├── gray_world.c │ ├── grayscale2color.c │ ├── histogram_equalization.c │ ├── hsl_color_filtering.c │ ├── image_statistics.c │ ├── indexed2color.c │ ├── invert.c │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── afx_imaging.sln │ │ │ ├── afx_imaging.vcxproj │ │ │ └── afx_imaging.vcxproj.filters │ │ └── src.mk │ ├── mean_3x3.c │ ├── mean_shift.c │ ├── mirror.c │ ├── morphology.c │ ├── ordered_dithering.c │ ├── otsu.c │ ├── pixellate.c │ ├── quadrilateral_transform.c │ ├── resize_bilinear.c │ ├── resize_nearest_neightbor.c │ ├── rotate90.c │ ├── rotate_bilinear.c │ ├── rotate_rgb.c │ ├── run_length_smoothing.c │ ├── salt_and_pepper_noise.c │ ├── sepia.c │ ├── set_hue.c │ ├── shape_checker.c │ ├── shift_image.c │ ├── simple_posterization.c │ ├── swap_rgb.c │ ├── threshold.c │ ├── two_source_image_routines.c │ └── ximaging.h ├── afx_imaging_effects │ ├── colorize.c │ ├── drop_light.c │ ├── emboss.c │ ├── frames_and_borders.c │ ├── jitter.c │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── afx_imaging_effects.sln │ │ │ ├── afx_imaging_effects.vcxproj │ │ │ └── afx_imaging_effects.vcxproj.filters │ │ └── src.mk │ ├── oil_painting.c │ ├── perlin_noise_textures.c │ ├── rotate_hue.c │ ├── saturation.c │ ├── textures.c │ ├── vignetting.c │ ├── ximaging_effects.h │ └── xtextures.h ├── afx_imaging_formats │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── afx_imaging_formats.sln │ │ │ ├── afx_imaging_formats.vcxproj │ │ │ └── afx_imaging_formats.vcxproj.filters │ │ └── src.mk │ ├── ximaging_formats.h │ ├── xjpeg.c │ └── xpng.c ├── afx_platform+ │ ├── XManualResetEvent.cpp │ ├── XManualResetEvent.hpp │ ├── XMutex.cpp │ ├── XMutex.hpp │ ├── XThread.cpp │ ├── XThread.hpp │ ├── XTimer.cpp │ ├── XTimer.hpp │ ├── internal │ │ ├── XManualResetEventImpl.hpp │ │ ├── XManualResetEventImpl_C++11.cpp │ │ ├── XManualResetEventImpl_PThreads.cpp │ │ ├── XManualResetEventImpl_Win32.cpp │ │ ├── XMutexImpl.hpp │ │ ├── XMutexImpl_PThreads.cpp │ │ ├── XMutexImpl_Win32.cpp │ │ ├── XThreadImpl.hpp │ │ ├── XThreadImpl_PThreads.cpp │ │ ├── XThreadImpl_Win32.cpp │ │ ├── XTimerImpl.hpp │ │ ├── XTimerImpl_Posix.cpp │ │ └── XTimerImpl_Win32.cpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── afx_platform+.sln │ │ ├── afx_platform+.vcxproj │ │ └── afx_platform+.vcxproj.filters │ │ └── src.mk ├── afx_types+ │ ├── XColor.cpp │ ├── XColor.hpp │ ├── XError.cpp │ ├── XError.hpp │ ├── XGuid.cpp │ ├── XGuid.hpp │ ├── XImage.cpp │ ├── XImage.hpp │ ├── XInterfaces.hpp │ ├── XPoint.cpp │ ├── XPoint.hpp │ ├── XPointF.cpp │ ├── XPointF.hpp │ ├── XRange.cpp │ ├── XRange.hpp │ ├── XRangeF.cpp │ ├── XRangeF.hpp │ ├── XSize.cpp │ ├── XSize.hpp │ ├── XVariant.cpp │ ├── XVariant.hpp │ ├── XVariantArray.cpp │ ├── XVariantArray.hpp │ ├── XVariantArray2d.cpp │ ├── XVariantArray2d.hpp │ ├── XVariantArrayJagged.cpp │ ├── XVariantArrayJagged.hpp │ ├── XVersion.cpp │ ├── XVersion.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── afx_types+.sln │ │ ├── afx_types+.vcxproj │ │ └── afx_types+.vcxproj.filters │ │ └── src.mk ├── afx_types │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── afx_types.sln │ │ │ ├── afx_types.vcxproj │ │ │ └── afx_types.vcxproj.filters │ │ └── src.mk │ ├── xalloc.c │ ├── xarray.c │ ├── xbits.c │ ├── xcpuid.c │ ├── xcpuid.h │ ├── xerrors.c │ ├── xerrors.h │ ├── xguid.c │ ├── xhistogram.c │ ├── xhistogram.h │ ├── ximage.c │ ├── ximage.h │ ├── xlist.c │ ├── xlist.h │ ├── xmath.c │ ├── xmath.h │ ├── xpalette.c │ ├── xpalette.h │ ├── xrange.c │ ├── xstring.c │ ├── xtypes.h │ ├── xvariant.c │ └── xversion.c ├── afx_video+ │ ├── IVideoSource.cpp │ ├── IVideoSource.hpp │ ├── IVideoSourceListener.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── afx_video+.sln │ │ ├── afx_video+.vcxproj │ │ └── afx_video+.vcxproj.filters │ │ └── src.mk ├── afx_vision │ ├── barcode_detector.c │ ├── glyph_detector.c │ ├── integral_image.c │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── afx_vision.sln │ │ │ ├── afx_vision.vcxproj │ │ │ └── afx_vision.vcxproj.filters │ │ └── src.mk │ └── xvision.h ├── make │ ├── mingw │ │ ├── Makefile │ │ ├── build.bat │ │ └── make.bat │ └── msvc │ │ ├── build.bat │ │ ├── build.sln │ │ └── build64.bat └── video │ ├── afx_video_dshow+ │ ├── XDeviceCapabilities.cpp │ ├── XDeviceCapabilities.hpp │ ├── XDeviceName.cpp │ ├── XDeviceName.hpp │ ├── XDevicePinInfo.cpp │ ├── XDevicePinInfo.hpp │ ├── XLocalVideoDevice.cpp │ ├── XLocalVideoDevice.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── afx_video_dshow+.sln │ │ ├── afx_video_dshow+.vcxproj │ │ └── afx_video_dshow+.vcxproj.filters │ │ └── src.mk │ ├── afx_video_ffmpeg+ │ ├── XFFmpegNetworkStream.cpp │ ├── XFFmpegNetworkStream.hpp │ ├── XFFmpegVideoFileReader.cpp │ ├── XFFmpegVideoFileReader.hpp │ ├── XFFmpegVideoFileWriter.cpp │ ├── XFFmpegVideoFileWriter.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── afx_video_ffmpeg+.sln │ │ ├── afx_video_ffmpeg+.vcxproj │ │ └── afx_video_ffmpeg+.vcxproj.filters │ │ └── src.mk │ └── afx_video_mjpeg+ │ ├── XHttpCommandsThread.cpp │ ├── XHttpCommandsThread.hpp │ ├── XJpegHttpStream.cpp │ ├── XJpegHttpStream.hpp │ ├── XMjpegHttpStream.cpp │ ├── XMjpegHttpStream.hpp │ ├── base64.cpp │ ├── base64.hpp │ ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── afx_video_mjpeg+.sln │ │ ├── afx_video_mjpeg+.vcxproj │ │ └── afx_video_mjpeg+.vcxproj.filters │ └── src.mk │ ├── tools.cpp │ └── tools.hpp ├── apps ├── .gitignore ├── cvs_vcam │ ├── .gitignore │ ├── Release Notes.txt │ ├── baseclasses │ │ ├── BaseClasses.vcxproj │ │ ├── BaseClasses.vcxproj.filters │ │ ├── amextra.cpp │ │ ├── amextra.h │ │ ├── amfilter.cpp │ │ ├── amfilter.h │ │ ├── amvideo.cpp │ │ ├── arithutil.cpp │ │ ├── cache.h │ │ ├── checkbmi.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── cprop.cpp │ │ ├── cprop.h │ │ ├── ctlutil.cpp │ │ ├── ctlutil.h │ │ ├── ddmm.cpp │ │ ├── ddmm.h │ │ ├── dllentry.cpp │ │ ├── dllsetup.cpp │ │ ├── dllsetup.h │ │ ├── dxmperf.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.cpp │ │ ├── mtype.h │ │ ├── outputq.cpp │ │ ├── outputq.h │ │ ├── perflog.cpp │ │ ├── perflog.h │ │ ├── perfstruct.h │ │ ├── pstream.cpp │ │ ├── pstream.h │ │ ├── pullpin.cpp │ │ ├── pullpin.h │ │ ├── refclock.cpp │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.cpp │ │ ├── renbase.h │ │ ├── schedule.cpp │ │ ├── schedule.h │ │ ├── seekpt.cpp │ │ ├── seekpt.h │ │ ├── source.cpp │ │ ├── source.h │ │ ├── streams.h │ │ ├── strmctl.cpp │ │ ├── strmctl.h │ │ ├── sysclock.cpp │ │ ├── sysclock.h │ │ ├── transfrm.cpp │ │ ├── transfrm.h │ │ ├── transip.cpp │ │ ├── transip.h │ │ ├── videoctl.cpp │ │ ├── videoctl.h │ │ ├── vtrans.cpp │ │ ├── vtrans.h │ │ ├── winctrl.cpp │ │ ├── winctrl.h │ │ ├── winutil.cpp │ │ ├── winutil.h │ │ ├── wxdebug.cpp │ │ ├── wxdebug.h │ │ ├── wxlist.cpp │ │ ├── wxlist.h │ │ ├── wxutil.cpp │ │ └── wxutil.h │ ├── cvs_vcam.cpp │ ├── cvs_vcam.def │ ├── cvs_vcam.h │ ├── cvs_vcam.rc │ ├── cvs_vcam.sln │ ├── cvs_vcam.vcxproj │ ├── cvs_vcam.vcxproj.filters │ ├── cvs_vcam64.def │ ├── cvs_vcam_guids.h │ ├── make │ │ └── msvc │ │ │ ├── build.bat │ │ │ └── build64.bat │ ├── regsvr.bat │ └── setup.cpp ├── cvsandbox │ ├── AboutDialog.cpp │ ├── AboutDialog.hpp │ ├── AboutDialog.ui │ ├── AddCameraDialog.cpp │ ├── AddCameraDialog.hpp │ ├── AddSandboxDialog.cpp │ ├── AddSandboxDialog.hpp │ ├── CameraInfoDialog.cpp │ ├── CameraInfoDialog.hpp │ ├── CameraInfoDialog.ui │ ├── CameraProjectObject.cpp │ ├── CameraProjectObject.hpp │ ├── CamerasViewConfiguration.cpp │ ├── CamerasViewConfiguration.hpp │ ├── ConfigureCamerasViewPage.cpp │ ├── ConfigureCamerasViewPage.hpp │ ├── ConfigureCamerasViewPage.ui │ ├── ConfigurePluginPage.cpp │ ├── ConfigurePluginPage.hpp │ ├── ConfigurePluginPage.ui │ ├── DeviceListWidgetItem.hpp │ ├── EditCameraPropertiesDialog.cpp │ ├── EditCameraPropertiesDialog.hpp │ ├── EditFolderDialog.cpp │ ├── EditFolderDialog.hpp │ ├── EditFolderDialog.ui │ ├── EditSandboxPropertiesDialog.cpp │ ├── EditSandboxPropertiesDialog.hpp │ ├── EditScriptingThreadDialog.cpp │ ├── EditScriptingThreadDialog.hpp │ ├── EditScriptingThreadDialog.ui │ ├── EditVideoSourceRunTimeProperties.cpp │ ├── EditVideoSourceRunTimeProperties.hpp │ ├── FolderProjectObject.cpp │ ├── FolderProjectObject.hpp │ ├── GridButton.cpp │ ├── GridButton.hpp │ ├── GridButton.ui │ ├── GridWidget.cpp │ ├── GridWidget.hpp │ ├── IMainWindowService.hpp │ ├── IPerformanceMonitorService.hpp │ ├── IProjectManager.cpp │ ├── IProjectManager.hpp │ ├── IProjectTreeUI.hpp │ ├── MainViewFrame.cpp │ ├── MainViewFrame.hpp │ ├── MainViewFrame.ui │ ├── MainWindow.cpp │ ├── MainWindow.hpp │ ├── MainWindow.ui │ ├── MultiCameraView.cpp │ ├── MultiCameraView.hpp │ ├── MultiCameraView.ui │ ├── PerformanceMonitorService.cpp │ ├── PerformanceMonitorService.hpp │ ├── ProjectManager.cpp │ ├── ProjectManager.hpp │ ├── ProjectObject.cpp │ ├── ProjectObject.hpp │ ├── ProjectObjectFactory.cpp │ ├── ProjectObjectFactory.hpp │ ├── ProjectObjectIcon.cpp │ ├── ProjectObjectIcon.hpp │ ├── ProjectObjectNamePage.cpp │ ├── ProjectObjectNamePage.hpp │ ├── ProjectObjectNamePage.ui │ ├── ProjectObjectOpener.cpp │ ├── ProjectObjectOpener.hpp │ ├── ProjectObjectSerializationHelper.cpp │ ├── ProjectObjectSerializationHelper.hpp │ ├── ProjectObjectViewFrame.cpp │ ├── ProjectObjectViewFrame.hpp │ ├── ProjectTreeFrame.cpp │ ├── ProjectTreeFrame.hpp │ ├── ProjectTreeFrame.ui │ ├── PropertyPagesDialog.cpp │ ├── PropertyPagesDialog.hpp │ ├── PropertyPagesDialog.ui │ ├── RenameProcessingStepDialog.cpp │ ├── RenameProcessingStepDialog.hpp │ ├── RenameProcessingStepDialog.ui │ ├── SandboxProjectObject.cpp │ ├── SandboxProjectObject.hpp │ ├── SandboxSettings.cpp │ ├── SandboxSettings.hpp │ ├── SandboxSettingsPage.cpp │ ├── SandboxSettingsPage.hpp │ ├── SandboxSettingsPage.ui │ ├── SandboxVariablesMonitorFrame.cpp │ ├── SandboxVariablesMonitorFrame.hpp │ ├── SandboxVariablesMonitorFrame.ui │ ├── SandboxView.cpp │ ├── SandboxView.hpp │ ├── SandboxView.ui │ ├── SandboxWizardDialog.cpp │ ├── SandboxWizardDialog.hpp │ ├── ScriptingThreadDesc.hpp │ ├── ScriptingThreadsPage.cpp │ ├── ScriptingThreadsPage.hpp │ ├── ScriptingThreadsPage.ui │ ├── SelectDevicesPage.cpp │ ├── SelectDevicesPage.hpp │ ├── SelectDevicesPage.ui │ ├── SelectPluginPage.cpp │ ├── SelectPluginPage.hpp │ ├── SelectPluginPage.ui │ ├── ServiceManager.cpp │ ├── ServiceManager.hpp │ ├── SingleCameraView.cpp │ ├── SingleCameraView.hpp │ ├── SingleCameraView.ui │ ├── UserCommands.cpp │ ├── UserCommands.hpp │ ├── VideoProcessingInfoDialog.cpp │ ├── VideoProcessingInfoDialog.hpp │ ├── VideoProcessingInfoDialog.ui │ ├── VideoProcessingWizardPage.cpp │ ├── VideoProcessingWizardPage.hpp │ ├── VideoProcessingWizardPage.ui │ ├── VideoSnapshotDialog.cpp │ ├── VideoSnapshotDialog.hpp │ ├── VideoSnapshotDialog.ui │ ├── VideoSourceInAutomationServer.cpp │ ├── VideoSourceInAutomationServer.hpp │ ├── VideoSourceInPlugin.cpp │ ├── VideoSourceInPlugin.hpp │ ├── VideoSourcePlayer.cpp │ ├── VideoSourcePlayer.hpp │ ├── VideoSourcePlayer.ui │ ├── VideoSourcePlayerFactory.cpp │ ├── VideoSourcePlayerFactory.hpp │ ├── VideoSourcePlayerQt.cpp │ ├── VideoSourcePlayerQt.hpp │ ├── WizardDialog.cpp │ ├── WizardDialog.hpp │ ├── WizardDialog.ui │ ├── WizardPageFrame.hpp │ ├── XGuidGenerator.cpp │ ├── XGuidGenerator.hpp │ ├── cvsandbox.ico │ ├── cvsandbox.pro │ ├── icons │ │ ├── add.png │ │ ├── camera.png │ │ ├── camera_32.png │ │ ├── colors.png │ │ ├── colors_gray.png │ │ ├── configure.png │ │ ├── coordinates.png │ │ ├── copy.png │ │ ├── cvsandbox │ │ │ ├── cvsandbox_128x128.png │ │ │ ├── cvsandbox_164x164.png │ │ │ ├── cvsandbox_16x16.png │ │ │ ├── cvsandbox_24x24.png │ │ │ ├── cvsandbox_32x32.png │ │ │ ├── cvsandbox_48x48.png │ │ │ ├── cvsandbox_64x64.png │ │ │ ├── cvsandbox_96x96.png │ │ │ └── cvsandbox_base.png │ │ ├── delete.png │ │ ├── down.png │ │ ├── favourite_add.png │ │ ├── favourite_remove.png │ │ ├── file_close.png │ │ ├── file_save.png │ │ ├── fit_screen.png │ │ ├── folder_blue.png │ │ ├── folder_blue_32.png │ │ ├── folder_green.png │ │ ├── frame_rate_disabled.png │ │ ├── frame_rate_enabled.png │ │ ├── full_screen.png │ │ ├── hibernate.png │ │ ├── idea.png │ │ ├── info.png │ │ ├── new_indow.png │ │ ├── ok.png │ │ ├── play.png │ │ ├── prevent_screen_saver.png │ │ ├── project_object_32.png │ │ ├── properties.png │ │ ├── reload.png │ │ ├── remove.png │ │ ├── run.png │ │ ├── sandbox.png │ │ ├── sandbox_32.png │ │ ├── script_file.png │ │ ├── stop.png │ │ ├── thumbnail.png │ │ ├── up.png │ │ ├── variables_list.png │ │ ├── video_processing_info.png │ │ ├── view_tree.png │ │ └── wizard.png │ ├── main.cpp │ ├── make │ │ ├── mingw │ │ │ ├── build.bat │ │ │ └── make.bat │ │ └── msvc │ │ │ ├── build.bat │ │ │ ├── build64.bat │ │ │ ├── make.bat │ │ │ └── make64.bat │ ├── resources.qrc │ ├── resources_win.rc │ ├── version.cpp │ └── version.hpp ├── cvsandboxtools │ ├── ApplicationSettingsService.cpp │ ├── ApplicationSettingsService.hpp │ ├── ConfigurePluginPropertiesDialog.cpp │ ├── ConfigurePluginPropertiesDialog.hpp │ ├── ConfigurePluginPropertiesDialog.ui │ ├── ConvolutionKernelDialog.cpp │ ├── ConvolutionKernelDialog.hpp │ ├── ConvolutionKernelDialog.ui │ ├── CustomPropertyManagers.cpp │ ├── CustomPropertyManagers.hpp │ ├── DraggableListWidget.cpp │ ├── DraggableListWidget.hpp │ ├── DraggableTreeWidget.cpp │ ├── DraggableTreeWidget.hpp │ ├── ErrorProviderHelper.cpp │ ├── ErrorProviderHelper.hpp │ ├── FavouritePluginsManager.cpp │ ├── FavouritePluginsManager.hpp │ ├── FindTextDialog.cpp │ ├── FindTextDialog.hpp │ ├── FindTextDialog.ui │ ├── GlobalServiceManager.cpp │ ├── GlobalServiceManager.hpp │ ├── GoToLineDialog.cpp │ ├── GoToLineDialog.hpp │ ├── GoToLineDialog.ui │ ├── HelpService.cpp │ ├── HelpService.hpp │ ├── HistogramInfoFrame.cpp │ ├── HistogramInfoFrame.hpp │ ├── HistogramInfoFrame.ui │ ├── HistogramWidget.cpp │ ├── HistogramWidget.hpp │ ├── HuePickerDialog.cpp │ ├── HuePickerDialog.hpp │ ├── HuePickerDialog.ui │ ├── HuePickerWidget.cpp │ ├── HuePickerWidget.hpp │ ├── IApplicationSettingsService.hpp │ ├── IHelpService.hpp │ ├── IImageFileService.hpp │ ├── IPersistentUIContent.hpp │ ├── IUIPersistenceService.hpp │ ├── ImageFileService.cpp │ ├── ImageFileService.hpp │ ├── MorphologyStructuringElementDialog.cpp │ ├── MorphologyStructuringElementDialog.hpp │ ├── MorphologyStructuringElementDialog.ui │ ├── PluginDescriptionDialog.cpp │ ├── PluginDescriptionDialog.hpp │ ├── PluginDescriptionDialog.ui │ ├── PluginPropertyEditorFrame.cpp │ ├── PluginPropertyEditorFrame.hpp │ ├── PluginPropertyEditorFrame.ui │ ├── PluginsListFrame.cpp │ ├── PluginsListFrame.hpp │ ├── PluginsListFrame.ui │ ├── ScriptEditorDialog.cpp │ ├── ScriptEditorDialog.hpp │ ├── ScriptEditorDialog.ui │ ├── UIPersistenceService.cpp │ ├── UIPersistenceService.hpp │ ├── UITools.cpp │ ├── UITools.hpp │ ├── UserCommand.hpp │ ├── VariantPropertyManagerEx.cpp │ ├── VariantPropertyManagerEx.hpp │ ├── XImageInterface.cpp │ ├── XImageInterface.hpp │ ├── XVariantConverter.cpp │ ├── XVariantConverter.hpp │ ├── cvsandboxtools.pro │ ├── cvsandboxtools_global.h │ ├── icons │ │ ├── back.png │ │ ├── block.png │ │ ├── compile.png │ │ ├── configure.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── edit_file.png │ │ ├── favourite.png │ │ ├── file_close.png │ │ ├── file_new.png │ │ ├── file_save.png │ │ ├── find.png │ │ ├── folder.png │ │ ├── forward.png │ │ ├── goto.png │ │ ├── hue_picker.png │ │ ├── idea.png │ │ ├── open_script_file.png │ │ ├── options.png │ │ ├── paste.png │ │ ├── redo.png │ │ ├── script_file.png │ │ ├── table.png │ │ └── undo.png │ ├── make │ │ ├── mingw │ │ │ ├── build.bat │ │ │ └── make.bat │ │ └── msvc │ │ │ ├── build.bat │ │ │ ├── build64.bat │ │ │ ├── make.bat │ │ │ └── make64.bat │ └── resources.qrc ├── cvssr │ ├── ScriptingHost.cpp │ ├── ScriptingHost.hpp │ ├── cvssr.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ ├── build.bat │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── build.bat │ │ │ ├── build64.bat │ │ │ ├── cvssr.sln │ │ │ ├── cvssr.vcxproj │ │ │ └── cvssr.vcxproj.filters │ │ └── src.mk │ └── test_script.lua ├── make │ ├── mingw │ │ └── build.bat │ └── msvc │ │ ├── build.bat │ │ └── build64.bat └── scripting_samples │ ├── BarcodesDetection.lua │ ├── CirclesDetection.lua │ ├── ColorEmboss.lua │ ├── ControllingEffects.lua │ ├── DrawingFunctions.lua │ ├── FadeOut.lua │ ├── GlyphsDetection.lua │ ├── HueRotation.lua │ ├── MotionDetection1.lua │ ├── MotionDetection2.lua │ ├── Oldify.lua │ ├── PicturesSlideshow.lua │ ├── Pixellate.lua │ ├── RandomizeIt.lua │ ├── RectanglesDetection.lua │ ├── SubImageProcessing.lua │ └── TimeLapseImages.lua ├── core ├── automationserver │ ├── IAutomationVariablesListener.hpp │ ├── IAutomationVideoSourceListener.hpp │ ├── XAutomationServer.cpp │ ├── XAutomationServer.hpp │ ├── XVideoSourceFrameInfo.hpp │ ├── XVideoSourceProcessingGraph.cpp │ ├── XVideoSourceProcessingGraph.hpp │ ├── XVideoSourceProcessingStep.cpp │ ├── XVideoSourceProcessingStep.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── automationserver.sln │ │ ├── automationserver.vcxproj │ │ └── automationserver.vcxproj.filters │ │ └── src.mk ├── iplugin │ ├── WrapperBaseForCppPlugin.hpp │ ├── Wrapper_CommunicationDevice.hpp │ ├── Wrapper_Detection.hpp │ ├── Wrapper_Device.hpp │ ├── Wrapper_ImageExporter.hpp │ ├── Wrapper_ImageGenerator.hpp │ ├── Wrapper_ImageImporter.hpp │ ├── Wrapper_ImageProcessing.hpp │ ├── Wrapper_ImageProcessingFilter.hpp │ ├── Wrapper_ImageProcessingFilter2.hpp │ ├── Wrapper_ScriptingApi.hpp │ ├── Wrapper_ScriptingEngine.hpp │ ├── Wrapper_VideoProcessing.hpp │ ├── Wrapper_VideoSource.hpp │ ├── ifamily.c │ ├── ifamily.h │ ├── ifunction.c │ ├── ifunction.h │ ├── imodule.c │ ├── imodule.h │ ├── iplugin.h │ ├── iplugincpp.hpp │ ├── iplugintypes.c │ ├── iplugintypes.h │ ├── iplugintypescpp.hpp │ ├── iproperty.c │ ├── iproperty.h │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── iplugin.sln │ │ │ ├── iplugin.vcxproj │ │ │ └── iplugin.vcxproj.filters │ │ └── src.mk │ ├── registry.c │ ├── tools.c │ ├── xmodule.c │ └── xmodule.h ├── make │ ├── mingw │ │ ├── Makefile │ │ ├── build.bat │ │ └── make.bat │ └── msvc │ │ ├── build.bat │ │ ├── build.sln │ │ └── build64.bat ├── pluginmgr │ ├── XCommunicationDevicePlugin.cpp │ ├── XCommunicationDevicePlugin.hpp │ ├── XDetectionPlugin.cpp │ ├── XDetectionPlugin.hpp │ ├── XDevicePlugin.cpp │ ├── XDevicePlugin.hpp │ ├── XFamiliesCollection.cpp │ ├── XFamiliesCollection.hpp │ ├── XFamily.cpp │ ├── XFamily.hpp │ ├── XFunctionDescriptor.cpp │ ├── XFunctionDescriptor.hpp │ ├── XImageExportingPlugin.cpp │ ├── XImageExportingPlugin.hpp │ ├── XImageGenerationPlugin.cpp │ ├── XImageGenerationPlugin.hpp │ ├── XImageImportingPlugin.cpp │ ├── XImageImportingPlugin.hpp │ ├── XImageProcessingFilterPlugin.cpp │ ├── XImageProcessingFilterPlugin.hpp │ ├── XImageProcessingFilterPlugin2.cpp │ ├── XImageProcessingFilterPlugin2.hpp │ ├── XImageProcessingPlugin.cpp │ ├── XImageProcessingPlugin.hpp │ ├── XMapValuesConstIterator.hpp │ ├── XModulesCollection.cpp │ ├── XModulesCollection.hpp │ ├── XPlugin.cpp │ ├── XPlugin.hpp │ ├── XPluginDescriptor.cpp │ ├── XPluginDescriptor.hpp │ ├── XPluginWrapperFactory.cpp │ ├── XPluginWrapperFactory.hpp │ ├── XPluginsCollection.cpp │ ├── XPluginsCollection.hpp │ ├── XPluginsEngine.cpp │ ├── XPluginsEngine.hpp │ ├── XPluginsModule.cpp │ ├── XPluginsModule.hpp │ ├── XPropertyDescriptor.cpp │ ├── XPropertyDescriptor.hpp │ ├── XScriptingEnginePlugin.cpp │ ├── XScriptingEnginePlugin.hpp │ ├── XVideoProcessingPlugin.cpp │ ├── XVideoProcessingPlugin.hpp │ ├── XVideoSourcePlugin.cpp │ ├── XVideoSourcePlugin.hpp │ └── make │ │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ │ ├── msvc │ │ ├── pluginmgr.sln │ │ ├── pluginmgr.vcxproj │ │ └── pluginmgr.vcxproj.filters │ │ └── src.mk └── pluginscripting │ ├── IPluginScripting.hpp │ ├── IScriptingHost.hpp │ ├── XDefaultScriptingHost.cpp │ ├── XDefaultScriptingHost.hpp │ ├── XLuaPluginScripting.cpp │ ├── XLuaPluginScripting.hpp │ ├── XLuaPluginScripting_UserTypes.cpp │ ├── XLuaPluginScripting_UserTypes.hpp │ └── make │ ├── mingw │ ├── Makefile │ └── make.bat │ ├── msvc │ ├── pluginscripting.sln │ ├── pluginscripting.vcxproj │ └── pluginscripting.vcxproj.filters │ └── src.mk ├── images ├── image_add_images_16x16.h ├── image_barcode_16x16.h ├── image_biggest_blob_16x16.h ├── image_binary_dilatation_16x16.h ├── image_binary_erosion_16x16.h ├── image_blend_images_16x16.h ├── image_blobs_processing_16x16.h ├── image_blocks_16x16.h ├── image_blur_16x16.h ├── image_camera_16x16.h ├── image_camera_push_16x16.h ├── image_canny_edge_detector_16x16.h ├── image_chart_16x16.h ├── image_color_filter_16x16.h ├── image_color_filter_plugin_16x16.h ├── image_color_reduction_16x16.h ├── image_colorize_16x16.h ├── image_colorset_16x16.h ├── image_com_device_16x16.h ├── image_contrast_correction_16x16.h ├── image_contrast_stretching_16x16.h ├── image_convolution_16x16.h ├── image_cut_image_16x16.h ├── image_default_plugin_16x16.h ├── image_detection_plugin_16x16.h ├── image_diff_images_16x16.h ├── image_diff_images_thresholded_16x16.h ├── image_dilatation_16x16.h ├── image_dilatation_3s_16x16.h ├── image_dshow_16x16.h ├── image_edge_detector_plugin_16x16.h ├── image_effects_module_16x16.h ├── image_embed_quadrilateral_16x16.h ├── image_emboss_16x16.h ├── image_erode_edges_16x16.h ├── image_erosion_16x16.h ├── image_erosion_3s_16x16.h ├── image_extract_channel_16x16.h ├── image_extract_channel_nrgb_16x16.h ├── image_extract_quadrilateral_16x16.h ├── image_fade_images_16x16.h ├── image_ffmpeg_16x16.h ├── image_fill_holes_16x16.h ├── image_filter_blobs_16x16.h ├── image_filter_circles_16x16.h ├── image_filter_quadrilaterals_16x16.h ├── image_filter_rgb_channels_16x16.h ├── image_folder_images_16x16.h ├── image_frame_16x16.h ├── image_fuzzy_border_16x16.h ├── image_gamepad_16x16.h ├── image_gamma_correction_16x16.h ├── image_gaussian_blur_16x16.h ├── image_gaussian_sharpen_16x16.h ├── image_glyph_16x16.h ├── image_gradient_grayscale_recoloring2_16x16.h ├── image_gradient_grayscale_recoloring4_16x16.h ├── image_gradient_grayscale_recoloring_16x16.h ├── image_grain_16x16.h ├── image_gray_world_normalization_16x16.h ├── image_grayscale_16x16.h ├── image_grayscale_to_rgb_16x16.h ├── image_heat_gradient_grayscale_recoloring_16x16.h ├── image_histogram_equalization_16x16.h ├── image_hit_and_miss_16x16.h ├── image_hsl_filter_16x16.h ├── image_image_effects_16x16.h ├── image_image_folder_writer_16x16.h ├── image_image_generator_plugin_16x16.h ├── image_image_smoothing_plugin_16x16.h ├── image_intersect_16x16.h ├── image_invert_16x16.h ├── image_jitter_16x16.h ├── image_jpeg_image_16x16.h ├── image_jpeg_stream_16x16.h ├── image_levels_linear_16x16.h ├── image_levels_linear_grayscale_16x16.h ├── image_local_device_16x16.h ├── image_lua_script_16x16.h ├── image_mask_image_16x16.h ├── image_mean_3s_16x16.h ├── image_mean_shift_16x16.h ├── image_merge_16x16.h ├── image_mirror_16x16.h ├── image_mjpeg_stream_16x16.h ├── image_morphology_plugin_16x16.h ├── image_move_towards_16x16.h ├── image_network_stream_plugin_16x16.h ├── image_objects_edges_16x16.h ├── image_objects_outline_16x16.h ├── image_objects_thickening_16x16.h ├── image_objects_thinning_16x16.h ├── image_pencil_16x16.h ├── image_pixellate_16x16.h ├── image_put_text_16x16.h ├── image_raspberry_16x16.h ├── image_raspberry_camera_16x16.h ├── image_replace_channel_16x16.h ├── image_resize_image_16x16.h ├── image_rotate90_16x16.h ├── image_rotate_16x16.h ├── image_rotate_hue_16x16.h ├── image_rotate_rgb_16x16.h ├── image_rounded_border_16x16.h ├── image_run_length_smoothing_16x16.h ├── image_salt_and_pepper_noise_16x16.h ├── image_saturate_16x16.h ├── image_screen_16x16.h ├── image_scripting_plugin_16x16.h ├── image_sepia_16x16.h ├── image_serial_port_16x16.h ├── image_set_hue_16x16.h ├── image_shift_image_16x16.h ├── image_simple_motion_detection_16x16.h ├── image_simple_posterization_16x16.h ├── image_standard_imaging_module_16x16.h ├── image_subtract_images_16x16.h ├── image_textile_16x16.h ├── image_texture_plugin_16x16.h ├── image_threshold_16x16.h ├── image_threshold_otsu_16x16.h ├── image_thresholding_plugin_16x16.h ├── image_transform_16x16.h ├── image_two_images_16x16.h ├── image_uniform_additive_noise_16x16.h ├── image_video_16x16.h ├── image_video_processing_16x16.h ├── image_video_repeater_plugin_16x16.h ├── image_video_repeater_push_plugin_16x16.h ├── image_vignetting_16x16.h ├── image_virtual_camera_16x16.h └── source │ ├── add_images_16x16.png │ ├── barcode_16x16.png │ ├── biggest_blob_16x16.png │ ├── binary_dilatation_16x16.png │ ├── binary_erosion_16x16.png │ ├── blend_images_16x16.png │ ├── blobs_processing_16x16.png │ ├── blocks_16x16.png │ ├── blur_16x16.png │ ├── camera_16x16.png │ ├── camera_push_16x16.png │ ├── canny_edge_detector_16x16.png │ ├── chart_16x16.png │ ├── color_filter_16x16.png │ ├── color_filter_plugin_16x16.png │ ├── color_reduction_16x16.png │ ├── colorize_16x16.png │ ├── colorset_16x16.png │ ├── com_device_16x16.png │ ├── contrast_correction_16x16.png │ ├── contrast_stretching_16x16.png │ ├── convolution_16x16.png │ ├── cut_image_16x16.png │ ├── default_plugin_16x16.png │ ├── detection_plugin_16x16.png │ ├── diff_images_16x16.png │ ├── diff_images_thresholded_16x16.png │ ├── dilatation_16x16.png │ ├── dilatation_3s_16x16.png │ ├── dshow_16x16.png │ ├── edge_detector_plugin_16x16.png │ ├── effects_module_16x16.png │ ├── embed_quadrilateral_16x16.png │ ├── emboss_16x16.png │ ├── erode_edges_16x16.png │ ├── erosion_16x16.png │ ├── erosion_3s_16x16.png │ ├── extract_channel_16x16.png │ ├── extract_channel_nrgb_16x16.png │ ├── extract_quadrilateral_16x16.png │ ├── fade_images_16x16.png │ ├── ffmpeg_16x16.png │ ├── fill_holes_16x16.png │ ├── filter_blobs_16x16.png │ ├── filter_circles_16x16.png │ ├── filter_quadrilaterals_16x16.png │ ├── filter_rgb_channels_16x16.png │ ├── folder_images_16x16.png │ ├── frame_16x16.png │ ├── fuzzy_border_16x16.png │ ├── gamepad_16x16.png │ ├── gamma_correction_16x16.png │ ├── gaussian_blur_16x16.png │ ├── gaussian_sharpen_16x16.png │ ├── glyph_16x16.png │ ├── gradient_grayscale_recoloring2_16x16.png │ ├── gradient_grayscale_recoloring4_16x16.png │ ├── gradient_grayscale_recoloring_16x16.png │ ├── grain_16x16.png │ ├── gray_world_normalization_16x16.png │ ├── grayscale_16x16.png │ ├── grayscale_to_rgb_16x16.png │ ├── heat_gradient_grayscale_recoloring_16x16.png │ ├── histogram_equalization_16x16.png │ ├── hit_and_miss_16x16.png │ ├── hsl_filter_16x16.png │ ├── image_effects_16x16.png │ ├── image_folder_writer_16x16.png │ ├── image_generator_plugin_16x16.png │ ├── image_smoothing_plugin_16x16.png │ ├── intersect_16x16.png │ ├── invert_16x16.png │ ├── jitter_16x16.png │ ├── jpeg_image_16x16.png │ ├── jpeg_stream_16x16.png │ ├── levels_linear_16x16.png │ ├── levels_linear_grayscale_16x16.png │ ├── local_device_16x16.png │ ├── lua_script_16x16.png │ ├── mask_image_16x16.png │ ├── mean_3s_16x16.png │ ├── mean_shift_16x16.png │ ├── merge_16x16.png │ ├── mirror_16x16.png │ ├── mjpeg_stream_16x16.png │ ├── morphology_plugin_16x16.png │ ├── move_towards_16x16.png │ ├── network_stream_plugin_16x16.png │ ├── objects_edges_16x16.png │ ├── objects_outline_16x16.png │ ├── objects_thickening_16x16.png │ ├── objects_thinning_16x16.png │ ├── pencil_16x16.png │ ├── pixellate_16x16.png │ ├── put_text_16x16.png │ ├── raspberry_16x16.png │ ├── raspberry_camera_16x16.png │ ├── replace_channel_16x16.png │ ├── resize_image_16x16.png │ ├── rotate90_16x16.png │ ├── rotate_16x16.png │ ├── rotate_hue_16x16.png │ ├── rotate_rgb_16x16.png │ ├── rounded_border_16x16.png │ ├── run_length_smoothing_16x16.png │ ├── salt_and_pepper_noise_16x16.png │ ├── saturate_16x16.png │ ├── screen_16x16.png │ ├── scripting_plugin_16x16.png │ ├── sepia_16x16.png │ ├── serial_port_16x16.png │ ├── set_hue_16x16.png │ ├── shift_image_16x16.png │ ├── simple_motion_detection_16x16.png │ ├── simple_posterization_16x16.png │ ├── standard_imaging_module_16x16.png │ ├── subtract_images_16x16.png │ ├── textile_16x16.png │ ├── texture_plugin_16x16.png │ ├── threshold_16x16.png │ ├── threshold_otsu_16x16.png │ ├── thresholding_plugin_16x16.png │ ├── transform_16x16.png │ ├── two_images_16x16.png │ ├── uniform_additive_noise_16x16.png │ ├── video_16x16.png │ ├── video_processing_16x16.png │ ├── video_repeater_plugin_16x16.png │ ├── video_repeater_push_plugin_16x16.png │ ├── vignetting_16x16.png │ └── virtual_camera_16x16.png ├── installer ├── .gitignore ├── cvs_wizard_image.bmp ├── cvs_wizard_small_image.bmp ├── cvsandbox.iss ├── eula.txt └── prepare_files.bat ├── make ├── mingw │ └── build.bat ├── msvc │ ├── build.bat │ └── build64.bat └── settings │ └── mingw │ ├── build_app.mk │ ├── build_lib.mk │ ├── compiler_c.mk │ └── compiler_cpp.mk ├── plugins ├── computer_vision │ ├── cv_bar_codes │ │ ├── BarCodeDetectorPlugin.cpp │ │ ├── BarCodeDetectorPlugin.hpp │ │ ├── BarCodeDetectorPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── cv_bar_codes.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── cv_bar_codes.sln │ │ │ │ ├── cv_bar_codes.vcxproj │ │ │ │ └── cv_bar_codes.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ ├── cv_glyphs │ │ ├── GlyphDetectorPlugin.cpp │ │ ├── GlyphDetectorPlugin.hpp │ │ ├── GlyphDetectorPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── cv_glyphs.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── cv_glyphs.sln │ │ │ │ ├── cv_glyphs.vcxproj │ │ │ │ └── cv_glyphs.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ └── cv_motion │ │ ├── Release Notes.txt │ │ ├── TwoFramesDifferenceDetectionPlugin.cpp │ │ ├── TwoFramesDifferenceDetectionPlugin.hpp │ │ ├── TwoFramesDifferenceDetectionPluginDescriptor.cpp │ │ ├── cv_motion.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── cv_motion.sln │ │ │ ├── cv_motion.vcxproj │ │ │ └── cv_motion.vcxproj.filters │ │ └── src.mk │ │ └── plugins_list.txt ├── devices │ ├── dev_com │ │ ├── Release Notes.txt │ │ ├── SerialPortPlugin.cpp │ │ ├── SerialPortPlugin.hpp │ │ ├── SerialPortPluginDescriptor.cpp │ │ ├── dev_com.cpp │ │ ├── dllmain.cpp │ │ ├── examples │ │ │ ├── Arduino_Serial.ino │ │ │ ├── README.md │ │ │ └── serial.lua │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── dev_com.sln │ │ │ │ ├── dev_com.vcxproj │ │ │ │ └── dev_com.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ ├── dev_gamepad │ │ ├── GamepadPlugin.cpp │ │ ├── GamepadPlugin.hpp │ │ ├── GamepadPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dev_gamepad.cpp │ │ ├── dllmain.cpp │ │ ├── examples │ │ │ └── gamepad.lua │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── dev_gamepad.sln │ │ │ │ ├── dev_gamepad.vcxproj │ │ │ │ └── dev_gamepad.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ ├── dev_raspberry │ │ ├── RaspberryPiCameraPlugin.cpp │ │ ├── RaspberryPiCameraPlugin.hpp │ │ ├── RaspberryPiCameraPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dev_raspberry.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── dev_raspberry.sln │ │ │ │ ├── dev_raspberry.vcxproj │ │ │ │ └── dev_raspberry.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ └── dev_sysinfo │ │ ├── LedKeysPlugin.cpp │ │ ├── LedKeysPlugin.hpp │ │ ├── LedKeysPluginDescriptor.cpp │ │ ├── PerformanceInfoPlugin.cpp │ │ ├── PerformanceInfoPlugin.hpp │ │ ├── PerformanceInfoPluginDescriptor.cpp │ │ ├── PowerInfoPlugin.cpp │ │ ├── PowerInfoPlugin.hpp │ │ ├── PowerInfoPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dev_sysinfo.cpp │ │ ├── dllmain.cpp │ │ ├── examples │ │ ├── led_keys.lua │ │ └── power.lua │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── dev_sysinfo.sln │ │ │ ├── dev_sysinfo.vcxproj │ │ │ └── dev_sysinfo.vcxproj.filters │ │ └── src.mk │ │ └── plugins_list.txt ├── image_formats │ ├── fmt_jpeg │ │ ├── JpegExporterPlugin.cpp │ │ ├── JpegExporterPlugin.hpp │ │ ├── JpegExporterPluginDescriptor.cpp │ │ ├── JpegImporterPlugin.cpp │ │ ├── JpegImporterPlugin.hpp │ │ ├── JpegImporterPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dllmain.c │ │ ├── fmt_jpeg.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── fmt_jpeg.sln │ │ │ │ ├── fmt_jpeg.vcxproj │ │ │ │ └── fmt_jpeg.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ └── fmt_png │ │ ├── PngExporterPlugin.cpp │ │ ├── PngExporterPlugin.hpp │ │ ├── PngExporterPluginDescriptor.cpp │ │ ├── PngImporterPlugin.cpp │ │ ├── PngImporterPlugin.hpp │ │ ├── PngImporterPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dllmain.c │ │ ├── fmt_png.cpp │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── fmt_png.sln │ │ │ ├── fmt_png.vcxproj │ │ │ └── fmt_png.vcxproj.filters │ │ └── src.mk │ │ └── plugins_list.txt ├── image_processing │ ├── ip_blobs_processing │ │ ├── FillHolesPlugin.cpp │ │ ├── FillHolesPlugin.hpp │ │ ├── FillHolesPluginDescriptor.cpp │ │ ├── FilterBlobsBySizePlugin.cpp │ │ ├── FilterBlobsBySizePlugin.hpp │ │ ├── FilterBlobsBySizePluginDescriptor.cpp │ │ ├── FilterCircleBlobsPlugin.cpp │ │ ├── FilterCircleBlobsPlugin.hpp │ │ ├── FilterCircleBlobsPluginDescriptor.cpp │ │ ├── FilterQuadrilateralBlobsPlugin.cpp │ │ ├── FilterQuadrilateralBlobsPlugin.hpp │ │ ├── FilterQuadrilateralBlobsPluginDescriptor.cpp │ │ ├── FindBiggestBlobPlugin.cpp │ │ ├── FindBiggestBlobPlugin.hpp │ │ ├── FindBiggestBlobPluginDescriptor.cpp │ │ ├── FindBlobsBySizePlugin.cpp │ │ ├── FindBlobsBySizePlugin.hpp │ │ ├── FindBlobsBySizePluginDescriptor.cpp │ │ ├── KeepBiggestBlobPlugin.cpp │ │ ├── KeepBiggestBlobPlugin.hpp │ │ ├── KeepBiggestBlobPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dllmain.cpp │ │ ├── ip_blobs_processing.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── ip_blobs_processing.sln │ │ │ │ ├── ip_blobs_processing.vcxproj │ │ │ │ └── ip_blobs_processing.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ ├── ip_effects │ │ ├── ApplyTexturePlugin.cpp │ │ ├── ApplyTexturePlugin.hpp │ │ ├── ApplyTexturePluginDescriptor.cpp │ │ ├── ColorizePlugin.cpp │ │ ├── ColorizePlugin.hpp │ │ ├── ColorizePluginDescriptor.cpp │ │ ├── DropLightPlugin.cpp │ │ ├── DropLightPlugin.hpp │ │ ├── DropLightPluginDescriptor.cpp │ │ ├── EmbossPlugin.cpp │ │ ├── EmbossPlugin.hpp │ │ ├── EmbossPluginDescriptor.cpp │ │ ├── FuzzyBorderPlugin.cpp │ │ ├── FuzzyBorderPlugin.hpp │ │ ├── FuzzyBorderPluginDescriptor.cpp │ │ ├── GenerateCloudsTexturePlugin.cpp │ │ ├── GenerateCloudsTexturePlugin.hpp │ │ ├── GenerateCloudsTexturePluginDescriptor.cpp │ │ ├── GenerateFuzzyBorderTexturePlugin.cpp │ │ ├── GenerateFuzzyBorderTexturePlugin.hpp │ │ ├── GenerateFuzzyBorderTexturePluginDescriptor.cpp │ │ ├── GenerateGrainTexturePlugin.cpp │ │ ├── GenerateGrainTexturePlugin.hpp │ │ ├── GenerateGrainTexturePluginDescriptor.cpp │ │ ├── GenerateMarbleTexturePlugin.cpp │ │ ├── GenerateMarbleTexturePlugin.hpp │ │ ├── GenerateMarbleTexturePluginDescriptor.cpp │ │ ├── GenerateRoundedBorderTexturePlugin.cpp │ │ ├── GenerateRoundedBorderTexturePlugin.hpp │ │ ├── GenerateRoundedBorderTexturePluginDescriptor.cpp │ │ ├── GenerateTextileTexturePlugin.cpp │ │ ├── GenerateTextileTexturePlugin.hpp │ │ ├── GenerateTextileTexturePluginDescriptor.cpp │ │ ├── GrainPlugin.cpp │ │ ├── GrainPlugin.hpp │ │ ├── GrainPluginDescriptor.cpp │ │ ├── JitterPlugin.cpp │ │ ├── JitterPlugin.hpp │ │ ├── JitterPluginDescriptor.cpp │ │ ├── OilPaintingPlugin.cpp │ │ ├── OilPaintingPlugin.hpp │ │ ├── OilPaintingPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── RotateHuePlugin.cpp │ │ ├── RotateHuePlugin.hpp │ │ ├── RotateHuePluginDescriptor.cpp │ │ ├── RotateRgbChannelsPlugin.cpp │ │ ├── RotateRgbChannelsPlugin.hpp │ │ ├── RotateRgbChannelsPluginDescriptor.cpp │ │ ├── RoundedBorderPlugin.cpp │ │ ├── RoundedBorderPlugin.hpp │ │ ├── RoundedBorderPluginDescriptor.cpp │ │ ├── SaturatePlugin.cpp │ │ ├── SaturatePlugin.hpp │ │ ├── SaturatePluginDescriptor.cpp │ │ ├── SepiaPlugin.cpp │ │ ├── SepiaPlugin.hpp │ │ ├── SepiaPluginDescriptor.cpp │ │ ├── SetHuePlugin.cpp │ │ ├── SetHuePlugin.hpp │ │ ├── SetHuePluginDescriptor.cpp │ │ ├── TextileTexturePlugin.cpp │ │ ├── TextileTexturePlugin.hpp │ │ ├── TextileTexturePluginDescriptor.cpp │ │ ├── VignettingPlugin.cpp │ │ ├── VignettingPlugin.hpp │ │ ├── VignettingPluginDescriptor.cpp │ │ ├── dllmain.cpp │ │ ├── ip_effects.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── ip_effects.sln │ │ │ │ ├── ip_effects.vcxproj │ │ │ │ └── ip_effects.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ ├── ip_stdimaging │ │ ├── AddImagesPlugin.cpp │ │ ├── AddImagesPlugin.hpp │ │ ├── AddImagesPluginDescriptor.cpp │ │ ├── BinaryDilatation3x3Plugin.cpp │ │ ├── BinaryDilatation3x3Plugin.hpp │ │ ├── BinaryDilatation3x3PluginDescriptor.cpp │ │ ├── BinaryErosion3x3Plugin.cpp │ │ ├── BinaryErosion3x3Plugin.hpp │ │ ├── BinaryErosion3x3PluginDescriptor.cpp │ │ ├── BlurPlugin.cpp │ │ ├── BlurPlugin.hpp │ │ ├── BlurPluginDescriptor.cpp │ │ ├── BrightnessCorrectionPlugin.cpp │ │ ├── BrightnessCorrectionPlugin.hpp │ │ ├── BrightnessCorrectionPluginDescriptor.cpp │ │ ├── CannyEdgeDetectorPlugin.cpp │ │ ├── CannyEdgeDetectorPlugin.hpp │ │ ├── CannyEdgeDetectorPluginDescriptor.cpp │ │ ├── ColorChannelsFilterPlugin.cpp │ │ ├── ColorChannelsFilterPlugin.hpp │ │ ├── ColorChannelsFilterPluginDescriptor.cpp │ │ ├── ColorFilterPlugin.cpp │ │ ├── ColorFilterPlugin.hpp │ │ ├── ColorFilterPluginDescriptor.cpp │ │ ├── ContrastCorrectionPlugin.cpp │ │ ├── ContrastCorrectionPlugin.hpp │ │ ├── ContrastCorrectionPluginDescriptor.cpp │ │ ├── ContrastStretchingPlugin.cpp │ │ ├── ContrastStretchingPlugin.hpp │ │ ├── ContrastStretchingPluginDescriptor.cpp │ │ ├── ConvolutionPlugin.cpp │ │ ├── ConvolutionPlugin.hpp │ │ ├── ConvolutionPluginDescriptor.cpp │ │ ├── CutImagePlugin.cpp │ │ ├── CutImagePlugin.hpp │ │ ├── CutImagePluginDescriptor.cpp │ │ ├── DiffImagesPlugin.cpp │ │ ├── DiffImagesPlugin.hpp │ │ ├── DiffImagesPluginDescriptor.cpp │ │ ├── DiffImagesThresholdedPlugin.cpp │ │ ├── DiffImagesThresholdedPlugin.hpp │ │ ├── DiffImagesThresholdedPluginDescriptor.cpp │ │ ├── Dilatation3x3Plugin.cpp │ │ ├── Dilatation3x3Plugin.hpp │ │ ├── Dilatation3x3PluginDescriptor.cpp │ │ ├── DilatationPlugin.cpp │ │ ├── DilatationPlugin.hpp │ │ ├── DilatationPluginDescriptor.cpp │ │ ├── DistanceColorFilterPlugin.cpp │ │ ├── DistanceColorFilterPlugin.hpp │ │ ├── DistanceColorFilterPluginDescriptor.cpp │ │ ├── DistanceTransformationPlugin.cpp │ │ ├── DistanceTransformationPlugin.hpp │ │ ├── DistanceTransformationPluginDescriptor.cpp │ │ ├── EdgeDetectorPlugin.cpp │ │ ├── EdgeDetectorPlugin.hpp │ │ ├── EdgeDetectorPluginDescriptor.cpp │ │ ├── EmbedQuadrilateralPlugin.cpp │ │ ├── EmbedQuadrilateralPlugin.hpp │ │ ├── EmbedQuadrilateralPluginDescriptor.cpp │ │ ├── ErodeEdgesPlugin.cpp │ │ ├── ErodeEdgesPlugin.hpp │ │ ├── ErodeEdgesPluginDescriptor.cpp │ │ ├── Erosion3x3Plugin.cpp │ │ ├── Erosion3x3Plugin.hpp │ │ ├── Erosion3x3PluginDescriptor.cpp │ │ ├── ErosionPlugin.cpp │ │ ├── ErosionPlugin.hpp │ │ ├── ErosionPluginDescriptor.cpp │ │ ├── ExtractNRGBChannelPlugin.cpp │ │ ├── ExtractNRGBChannelPlugin.hpp │ │ ├── ExtractNRGBChannelPluginDescriptor.cpp │ │ ├── ExtractQuadrilateralPlugin.cpp │ │ ├── ExtractQuadrilateralPlugin.hpp │ │ ├── ExtractQuadrilateralPluginDescriptor.cpp │ │ ├── ExtractRGBChannelPlugin.cpp │ │ ├── ExtractRGBChannelPlugin.hpp │ │ ├── ExtractRGBChannelPluginDescriptor.cpp │ │ ├── GaussianBlurPlugin.cpp │ │ ├── GaussianBlurPlugin.hpp │ │ ├── GaussianBlurPluginDescriptor.cpp │ │ ├── GaussianSharpenPlugin.cpp │ │ ├── GaussianSharpenPlugin.hpp │ │ ├── GaussianSharpenPluginDescriptor.cpp │ │ ├── GrayWorldNormalizationPlugin.cpp │ │ ├── GrayWorldNormalizationPlugin.hpp │ │ ├── GrayWorldNormalizationPluginDescriptor.cpp │ │ ├── GrayscalePlugin.cpp │ │ ├── GrayscalePlugin.hpp │ │ ├── GrayscalePluginDescriptor.cpp │ │ ├── GrayscaleToRgbPlugin.cpp │ │ ├── GrayscaleToRgbPlugin.hpp │ │ ├── GrayscaleToRgbPluginDescriptor.cpp │ │ ├── HistogramEqualizationPlugin.cpp │ │ ├── HistogramEqualizationPlugin.hpp │ │ ├── HistogramEqualizationPluginDescriptor.cpp │ │ ├── HitAndMissPlugin.cpp │ │ ├── HitAndMissPlugin.hpp │ │ ├── HitAndMissPluginDescriptor.cpp │ │ ├── HslColorFilterPlugin.cpp │ │ ├── HslColorFilterPlugin.hpp │ │ ├── HslColorFilterPluginDescriptor.cpp │ │ ├── HsvColorFilterPlugin.cpp │ │ ├── HsvColorFilterPlugin.hpp │ │ ├── HsvColorFilterPluginDescriptor.cpp │ │ ├── ImageStatisticsPlugin.cpp │ │ ├── ImageStatisticsPlugin.hpp │ │ ├── ImageStatisticsPluginDescriptor.cpp │ │ ├── IntersectImagesPlugin.cpp │ │ ├── IntersectImagesPlugin.hpp │ │ ├── IntersectImagesPluginDescriptor.cpp │ │ ├── InvertPlugin.cpp │ │ ├── InvertPlugin.hpp │ │ ├── InvertPluginDescriptor.cpp │ │ ├── LevelsLinearGrayscalePlugin.cpp │ │ ├── LevelsLinearGrayscalePlugin.hpp │ │ ├── LevelsLinearGrayscalePluginDescriptor.cpp │ │ ├── LevelsLinearPlugin.cpp │ │ ├── LevelsLinearPlugin.hpp │ │ ├── LevelsLinearPluginDescriptor.cpp │ │ ├── MaskImagePlugin.cpp │ │ ├── MaskImagePlugin.hpp │ │ ├── MaskImagePluginDescriptor.cpp │ │ ├── Mean3x3Plugin.cpp │ │ ├── Mean3x3Plugin.hpp │ │ ├── Mean3x3PluginDescriptor.cpp │ │ ├── MeanShiftPlugin.cpp │ │ ├── MeanShiftPlugin.hpp │ │ ├── MeanShiftPluginDescriptor.cpp │ │ ├── MergeImagesPlugin.cpp │ │ ├── MergeImagesPlugin.hpp │ │ ├── MergeImagesPluginDescriptor.cpp │ │ ├── MirrorPlugin.cpp │ │ ├── MirrorPlugin.hpp │ │ ├── MirrorPluginDescriptor.cpp │ │ ├── MorphologyOperatorPlugin.cpp │ │ ├── MorphologyOperatorPlugin.hpp │ │ ├── MorphologyOperatorPluginDescriptor.cpp │ │ ├── ObjectsEdgesPlugin.cpp │ │ ├── ObjectsEdgesPlugin.hpp │ │ ├── ObjectsEdgesPluginDescriptor.cpp │ │ ├── ObjectsOutlinePlugin.cpp │ │ ├── ObjectsOutlinePlugin.hpp │ │ ├── ObjectsOutlinePluginDescriptor.cpp │ │ ├── ObjectsThickeningPlugin.cpp │ │ ├── ObjectsThickeningPlugin.hpp │ │ ├── ObjectsThickeningPluginDescriptor.cpp │ │ ├── ObjectsThinningPlugin.cpp │ │ ├── ObjectsThinningPlugin.hpp │ │ ├── ObjectsThinningPluginDescriptor.cpp │ │ ├── OtsuThresholdPlugin.cpp │ │ ├── OtsuThresholdPlugin.hpp │ │ ├── OtsuThresholdPluginDescriptor.cpp │ │ ├── PixellatePlugin.cpp │ │ ├── PixellatePlugin.hpp │ │ ├── PixellatePluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── ReplaceRGBChannelPlugin.cpp │ │ ├── ReplaceRGBChannelPlugin.hpp │ │ ├── ReplaceRGBChannelPluginDescriptor.cpp │ │ ├── ResizeImagePlugin.cpp │ │ ├── ResizeImagePlugin.hpp │ │ ├── ResizeImagePluginDescriptor.cpp │ │ ├── RotateImage90Plugin.cpp │ │ ├── RotateImage90Plugin.hpp │ │ ├── RotateImage90PluginDescriptor.cpp │ │ ├── RotateImagePlugin.cpp │ │ ├── RotateImagePlugin.hpp │ │ ├── RotateImagePluginDescriptor.cpp │ │ ├── RunLengthSmoothingPlugin.cpp │ │ ├── RunLengthSmoothingPlugin.hpp │ │ ├── RunLengthSmoothingPluginDescriptor.cpp │ │ ├── ShiftImagePlugin.cpp │ │ ├── ShiftImagePlugin.hpp │ │ ├── ShiftImagePluginDescriptor.cpp │ │ ├── SubtractImagesPlugin.cpp │ │ ├── SubtractImagesPlugin.hpp │ │ ├── SubtractImagesPluginDescriptor.cpp │ │ ├── ThresholdPlugin.cpp │ │ ├── ThresholdPlugin.hpp │ │ ├── ThresholdPluginDescriptor.cpp │ │ ├── dllmain.c │ │ ├── ip_stdimaging.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── ip_stdimaging.sln │ │ │ │ ├── ip_stdimaging.vcxproj │ │ │ │ └── ip_stdimaging.vcxproj.filters │ │ │ └── src.mk │ │ └── plugins_list.txt │ └── ip_tools │ │ ├── BlendImagesPlugin.cpp │ │ ├── BlendImagesPlugin.hpp │ │ ├── BlendImagesPluginDescriptor.cpp │ │ ├── FadeImagesPlugin.cpp │ │ ├── FadeImagesPlugin.hpp │ │ ├── FadeImagesPluginDescriptor.cpp │ │ ├── GradientReColoring2Plugin.cpp │ │ ├── GradientReColoring2Plugin.hpp │ │ ├── GradientReColoring2PluginDescriptor.cpp │ │ ├── GradientReColoring4Plugin.cpp │ │ ├── GradientReColoring4Plugin.hpp │ │ ├── GradientReColoring4PluginDescriptor.cpp │ │ ├── GradientReColoringPlugin.cpp │ │ ├── GradientReColoringPlugin.hpp │ │ ├── GradientReColoringPluginDescriptor.cpp │ │ ├── HeatGradientPlugin.cpp │ │ ├── HeatGradientPlugin.hpp │ │ ├── HeatGradientPluginDescriptor.cpp │ │ ├── ImageDrawingPlugin.cpp │ │ ├── ImageDrawingPlugin.hpp │ │ ├── ImageDrawingPluginDescriptor.cpp │ │ ├── MoveTowardsImagesPlugin.cpp │ │ ├── MoveTowardsImagesPlugin.hpp │ │ ├── MoveTowardsImagesPluginDescriptor.cpp │ │ ├── PutTextPlugin.cpp │ │ ├── PutTextPlugin.hpp │ │ ├── PutTextPluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── SaltAndPepperNoisePlugin.cpp │ │ ├── SaltAndPepperNoisePlugin.hpp │ │ ├── SaltAndPepperNoisePluginDescriptor.cpp │ │ ├── SimplePosterizationPlugin.cpp │ │ ├── SimplePosterizationPlugin.hpp │ │ ├── SimplePosterizationPluginDescriptor.cpp │ │ ├── UniformAdditiveNoisePlugin.cpp │ │ ├── UniformAdditiveNoisePlugin.hpp │ │ ├── UniformAdditiveNoisePluginDescriptor.cpp │ │ ├── dllmain.cpp │ │ ├── ip_tools.cpp │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── ip_tools.sln │ │ │ ├── ip_tools.vcxproj │ │ │ └── ip_tools.vcxproj.filters │ │ └── src.mk │ │ └── plugins_list.txt ├── make │ ├── mingw │ │ ├── Makefile │ │ ├── build.bat │ │ └── make.bat │ └── msvc │ │ ├── build.bat │ │ ├── build.sln │ │ └── build64.bat ├── modules_list.txt ├── scripting_engine │ └── se_lua │ │ ├── LuaScriptingEnginePlugin.cpp │ │ ├── LuaScriptingEnginePlugin.hpp │ │ ├── LuaScriptingEnginePluginDescriptor.cpp │ │ ├── Release Notes.txt │ │ ├── dllmain.cpp │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── se_lua.sln │ │ │ ├── se_lua.vcxproj │ │ │ └── se_lua.vcxproj.filters │ │ └── src.mk │ │ ├── plugins_list.txt │ │ └── se_lua.cpp ├── video_processing │ ├── vp_ffmpeg_io │ │ ├── Release Notes.txt │ │ ├── VideoFileWriterPlugin.cpp │ │ ├── VideoFileWriterPlugin.hpp │ │ ├── VideoFileWriterPluginDescriptor.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ │ ├── mingw │ │ │ │ ├── Makefile │ │ │ │ └── make.bat │ │ │ ├── msvc │ │ │ │ ├── vp_ffmpeg_io.sln │ │ │ │ ├── vp_ffmpeg_io.vcxproj │ │ │ │ └── vp_ffmpeg_io.vcxproj.filters │ │ │ └── src.mk │ │ ├── plugins_list.txt │ │ └── vp_ffmpeg_io.cpp │ └── vp_vcam_push │ │ ├── Release Notes.txt │ │ ├── VCamPushPlugin.cpp │ │ ├── VCamPushPlugin.hpp │ │ ├── VCamPushPluginDescriptor.cpp │ │ ├── dllmain.cpp │ │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vp_vcam_push.sln │ │ │ ├── vp_vcam_push.vcxproj │ │ │ └── vp_vcam_push.vcxproj.filters │ │ └── src.mk │ │ ├── plugins_list.txt │ │ └── vp_vcam_push.cpp └── video_sources │ ├── vs_dshow │ ├── DirectShowVideoSourcePlugin.cpp │ ├── DirectShowVideoSourcePlugin.hpp │ ├── DirectShowVideoSourcePluginDescriptor.cpp │ ├── Release Notes.txt │ ├── dllmain.c │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_dshow.sln │ │ │ ├── vs_dshow.vcxproj │ │ │ └── vs_dshow.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_dshow.cpp │ ├── vs_effects │ ├── ColorSnakeVirtualVideoSourcePlugin.cpp │ ├── ColorSnakeVirtualVideoSourcePlugin.hpp │ ├── ColorSnakeVirtualVideoSourcePluginDescriptor.cpp │ ├── FireEffectVirtualVideoSourcePlugin.cpp │ ├── FireEffectVirtualVideoSourcePlugin.hpp │ ├── FireEffectVirtualVideoSourcePluginDescriptor.cpp │ ├── PlasmaEffectVirtualVideoSourcePlugin.cpp │ ├── PlasmaEffectVirtualVideoSourcePlugin.hpp │ ├── PlasmaEffectVirtualVideoSourcePluginDescriptor.cpp │ ├── VirtualVideoSourcePlugin.cpp │ ├── VirtualVideoSourcePlugin.hpp │ ├── dllmain.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_effects.sln │ │ │ ├── vs_effects.vcxproj │ │ │ └── vs_effects.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_effects.cpp │ ├── vs_ffmpeg │ ├── FileVideoSourcePlugin.cpp │ ├── FileVideoSourcePlugin.hpp │ ├── FileVideoSourcePluginDescriptor.cpp │ ├── NetworkStreamVideoSourcePlugin.cpp │ ├── NetworkStreamVideoSourcePlugin.hpp │ ├── NetworkStreamVideoSourcePluginDescriptor.cpp │ ├── Release Notes.txt │ ├── dllmain.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_ffmpeg.sln │ │ │ ├── vs_ffmpeg.vcxproj │ │ │ └── vs_ffmpeg.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_ffmpeg.cpp │ ├── vs_image_folder │ ├── ImageFolderVideoSourcePlugin.cpp │ ├── ImageFolderVideoSourcePlugin.hpp │ ├── ImageFolderVideoSourcePluginDescriptor.cpp │ ├── ImageFolderWriterPlugin.cpp │ ├── ImageFolderWriterPlugin.hpp │ ├── ImageFolderWriterPluginDescriptor.cpp │ ├── Release Notes.txt │ ├── dllmain.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_image_folder.sln │ │ │ ├── vs_image_folder.vcxproj │ │ │ └── vs_image_folder.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_image_folder.cpp │ ├── vs_mjpeg │ ├── JpegStreamVideoSourcePlugin.cpp │ ├── JpegStreamVideoSourcePlugin.hpp │ ├── JpegStreamVideoSourcePluginDescriptor.cpp │ ├── MjpegStreamVideoSourcePlugin.cpp │ ├── MjpegStreamVideoSourcePlugin.hpp │ ├── MjpegStreamVideoSourcePluginDescriptor.cpp │ ├── Release Notes.txt │ ├── dllmain.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_mjpeg.sln │ │ │ ├── vs_mjpeg.vcxproj │ │ │ └── vs_mjpeg.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_mjpeg.cpp │ ├── vs_repeater │ ├── Release Notes.txt │ ├── VideoRepeaterPlugin.cpp │ ├── VideoRepeaterPlugin.hpp │ ├── VideoRepeaterPluginDescriptor.cpp │ ├── VideoRepeaterPushPlugin.cpp │ ├── VideoRepeaterPushPlugin.hpp │ ├── VideoRepeaterPushPluginDescriptor.cpp │ ├── VideoRepeaterRegistry.cpp │ ├── VideoRepeaterRegistry.hpp │ ├── dllmain.cpp │ ├── make │ │ ├── mingw │ │ │ ├── Makefile │ │ │ └── make.bat │ │ ├── msvc │ │ │ ├── vs_repeater.sln │ │ │ ├── vs_repeater.vcxproj │ │ │ └── vs_repeater.vcxproj.filters │ │ └── src.mk │ ├── plugins_list.txt │ └── vs_repeater.cpp │ └── vs_screen_cap │ ├── Release Notes.txt │ ├── ScreenCapturePlugin.cpp │ ├── ScreenCapturePlugin.hpp │ ├── ScreenCapturePluginDescriptor.cpp │ ├── dllmain.cpp │ ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── vs_screen_cap.sln │ │ ├── vs_screen_cap.vcxproj │ │ └── vs_screen_cap.vcxproj.filters │ └── src.mk │ ├── plugins_list.txt │ └── vs_screen_cap.cpp └── testapps ├── automation_test ├── automation_test.cpp ├── automation_test.lua ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── automation_test.sln │ │ ├── automation_test.vcxproj │ │ └── automation_test.vcxproj.filters │ └── src.mk ├── thread1.lua └── thread2.lua ├── make ├── mingw │ ├── Makefile │ ├── build.bat │ └── make.bat └── msvc │ ├── build.bat │ ├── build.sln │ └── build64.bat ├── plugins_memory_test ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── plugins_memory_test.sln │ │ ├── plugins_memory_test.vcxproj │ │ └── plugins_memory_test.vcxproj.filters │ └── src.mk ├── plugins_memory_test.cpp └── test_images │ ├── binary.png │ ├── gray_8bpp.jpg │ ├── gray_8bpp.png │ ├── indexed_1bpp.png │ ├── indexed_2bpp.png │ ├── indexed_2bpp_with_transp.png │ ├── indexed_4bpp.png │ ├── indexed_8bpp.png │ ├── rgb_24bpp.jpg │ ├── rgb_24bpp.png │ └── rgba_32bpp.png ├── scripting_test ├── image1.jpg ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── scripting_test.sln │ │ ├── scripting_test.vcxproj │ │ └── scripting_test.vcxproj.filters │ └── src.mk ├── scripting_test.cpp ├── test1.lua └── test2.lua ├── variant_test ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── variant_test.sln │ │ ├── variant_test.vcxproj │ │ └── variant_test.vcxproj.filters │ └── src.mk └── variant_test.cpp ├── video_read_test ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── video_read_test.sln │ │ ├── video_read_test.vcxproj │ │ └── video_read_test.vcxproj.filters │ └── src.mk └── video_read_test.cpp ├── video_source_test ├── make │ ├── mingw │ │ ├── Makefile │ │ └── make.bat │ ├── msvc │ │ ├── video_source_test.sln │ │ ├── video_source_test.vcxproj │ │ └── video_source_test.vcxproj.filters │ └── src.mk └── video_source_test.cpp └── video_write_test ├── make ├── mingw │ ├── Makefile │ └── make.bat ├── msvc │ ├── video_write_test.sln │ ├── video_write_test.vcxproj │ └── video_write_test.vcxproj.filters └── src.mk └── video_write_test.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | externals/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/BUILDING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/README.md -------------------------------------------------------------------------------- /Release notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/Release notes.txt -------------------------------------------------------------------------------- /externals/sources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text binary 2 | -------------------------------------------------------------------------------- /externals/sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/.gitignore -------------------------------------------------------------------------------- /externals/sources/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/changes.txt -------------------------------------------------------------------------------- /externals/sources/curl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/CHANGES -------------------------------------------------------------------------------- /externals/sources/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/COPYING -------------------------------------------------------------------------------- /externals/sources/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/Makefile -------------------------------------------------------------------------------- /externals/sources/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/Makefile.am -------------------------------------------------------------------------------- /externals/sources/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/Makefile.in -------------------------------------------------------------------------------- /externals/sources/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/README -------------------------------------------------------------------------------- /externals/sources/curl/RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/RELEASE-NOTES -------------------------------------------------------------------------------- /externals/sources/curl/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/acinclude.m4 -------------------------------------------------------------------------------- /externals/sources/curl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/aclocal.m4 -------------------------------------------------------------------------------- /externals/sources/curl/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/buildconf -------------------------------------------------------------------------------- /externals/sources/curl/buildconf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/buildconf.bat -------------------------------------------------------------------------------- /externals/sources/curl/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/compile -------------------------------------------------------------------------------- /externals/sources/curl/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/config.guess -------------------------------------------------------------------------------- /externals/sources/curl/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/config.sub -------------------------------------------------------------------------------- /externals/sources/curl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/configure -------------------------------------------------------------------------------- /externals/sources/curl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/configure.ac -------------------------------------------------------------------------------- /externals/sources/curl/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/depcomp -------------------------------------------------------------------------------- /externals/sources/curl/docs/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/BUGS -------------------------------------------------------------------------------- /externals/sources/curl/docs/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/FAQ -------------------------------------------------------------------------------- /externals/sources/curl/docs/FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/FEATURES -------------------------------------------------------------------------------- /externals/sources/curl/docs/HTTP2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/HTTP2.md -------------------------------------------------------------------------------- /externals/sources/curl/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/INSTALL -------------------------------------------------------------------------------- /externals/sources/curl/docs/MANUAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/MANUAL -------------------------------------------------------------------------------- /externals/sources/curl/docs/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/THANKS -------------------------------------------------------------------------------- /externals/sources/curl/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/TODO -------------------------------------------------------------------------------- /externals/sources/curl/docs/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/VERSIONS -------------------------------------------------------------------------------- /externals/sources/curl/docs/curl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/docs/curl.1 -------------------------------------------------------------------------------- /externals/sources/curl/docs/libcurl/curl_multi_socket_all.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_multi_socket.3 2 | -------------------------------------------------------------------------------- /externals/sources/curl/docs/libcurl/curl_strnequal.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_strequal.3 2 | -------------------------------------------------------------------------------- /externals/sources/curl/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/install-sh -------------------------------------------------------------------------------- /externals/sources/curl/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/amigaos.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/amigaos.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/asyn.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/base64.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/connect.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/connect.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/cookie.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/cookie.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/curlx.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/dict.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/dict.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/dotdot.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/dotdot.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/easy.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/easyif.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/escape.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/escape.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/file.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/file.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/ftp.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/ftp.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/getenv.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/getinfo.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/getinfo.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/gopher.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/gopher.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hash.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hash.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hmac.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hostip.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hostip.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hostip4.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hostip6.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/hostsyn.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/http.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/http.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/http2.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/http2.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/if2ip.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/if2ip.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/imap.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/imap.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/krb5.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/ldap.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/llist.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/llist.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/md4.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/md5.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/mime.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/mime.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/mprintf.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/multi.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/multiif.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/netrc.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/netrc.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/nwlib.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/nwos.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/pop3.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/pop3.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/rand.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/rand.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/rtsp.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/rtsp.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/select.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/select.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/sendf.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/sendf.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/setopt.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/setopt.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/sha256.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/share.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/share.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/sigpipe.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/slist.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/slist.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/smb.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/smb.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/smtp.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/smtp.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/socks.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/socks.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/splay.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/splay.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/ssh.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/ssh.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strcase.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strcase.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strdup.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strdup.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strtok.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/strtok.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/telnet.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/telnet.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/tftp.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/tftp.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/timeval.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/timeval.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/url.c -------------------------------------------------------------------------------- /externals/sources/curl/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/url.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/urldata.h -------------------------------------------------------------------------------- /externals/sources/curl/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/lib/version.c -------------------------------------------------------------------------------- /externals/sources/curl/libcurl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/libcurl.pc.in -------------------------------------------------------------------------------- /externals/sources/curl/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/ltmain.sh -------------------------------------------------------------------------------- /externals/sources/curl/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/m4/libtool.m4 -------------------------------------------------------------------------------- /externals/sources/curl/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/m4/ltsugar.m4 -------------------------------------------------------------------------------- /externals/sources/curl/maketgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/maketgz -------------------------------------------------------------------------------- /externals/sources/curl/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/missing -------------------------------------------------------------------------------- /externals/sources/curl/packages/AIX/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | 3 | EXTRA_DIST = Makefile.am 4 | -------------------------------------------------------------------------------- /externals/sources/curl/packages/AIX/RPM/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README curl.spec.in 2 | 3 | -------------------------------------------------------------------------------- /externals/sources/curl/packages/EPM/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | 3 | EXTRA_DIST = README curl.list.in 4 | -------------------------------------------------------------------------------- /externals/sources/curl/packages/Linux/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | -------------------------------------------------------------------------------- /externals/sources/curl/packages/Win32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cygwin 2 | 3 | EXTRA_DIST = README 4 | -------------------------------------------------------------------------------- /externals/sources/curl/src/curl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/src/curl.rc -------------------------------------------------------------------------------- /externals/sources/curl/src/mkhelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/src/mkhelp.pl -------------------------------------------------------------------------------- /externals/sources/curl/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/test-driver -------------------------------------------------------------------------------- /externals/sources/curl/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/tests/README -------------------------------------------------------------------------------- /externals/sources/curl/tests/certs/Server-localhost-firstSAN-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sources/curl/tests/certs/Server-localhost-lastSAN-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sources/curl/tests/certs/Server-localhost-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sources/curl/tests/certs/Server-localhost.nn-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sources/curl/tests/certs/Server-localhost0h-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externals/sources/curl/tests/ftp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/curl/tests/ftp.pm -------------------------------------------------------------------------------- /externals/sources/directshow/qedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/directshow/qedit.h -------------------------------------------------------------------------------- /externals/sources/ffmpeg/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pnm -diff -text 2 | tests/ref/fate/sub-scc eol=crlf 3 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/.travis.yml -------------------------------------------------------------------------------- /externals/sources/ffmpeg/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/CREDITS -------------------------------------------------------------------------------- /externals/sources/ffmpeg/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/Changelog -------------------------------------------------------------------------------- /externals/sources/ffmpeg/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/INSTALL.md -------------------------------------------------------------------------------- /externals/sources/ffmpeg/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/LICENSE.md -------------------------------------------------------------------------------- /externals/sources/ffmpeg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/MAINTAINERS -------------------------------------------------------------------------------- /externals/sources/ffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/Makefile -------------------------------------------------------------------------------- /externals/sources/ffmpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/README.md -------------------------------------------------------------------------------- /externals/sources/ffmpeg/RELEASE: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/VERSION: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/configure -------------------------------------------------------------------------------- /externals/sources/ffmpeg/doc/lexicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/doc/lexicon -------------------------------------------------------------------------------- /externals/sources/ffmpeg/doc/t2h.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/doc/t2h.pm -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavcodec/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavcodec/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavcodec/reverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/reverse.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavdevice/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavdevice/reverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/reverse.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavfilter/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavformat/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavformat/golomb_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavcodec/golomb.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libavformat/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libswresample/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/libswscale/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/filtergraphs/hqdn3d: -------------------------------------------------------------------------------- 1 | perms=random, hqdn3d=enable='not(between(t,5,6))' 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/filtergraphs/hstack: -------------------------------------------------------------------------------- 1 | hstack 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/filtergraphs/overlay-dvdsub-2397: -------------------------------------------------------------------------------- 1 | sws_flags=+accurate_rnd+bitexact; 2 | [0:v][0:s:1]overlay 3 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/filtergraphs/select-alternate: -------------------------------------------------------------------------------- 1 | select=not(mod(n\,2)) 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/filtergraphs/vstack: -------------------------------------------------------------------------------- 1 | vstack 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-creative: -------------------------------------------------------------------------------- 1 | 66004779a5e51ca659b21a4197e019e6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-creative-8-2.6bit: -------------------------------------------------------------------------------- 1 | dee4417597abc2db70a175d6809870e7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-creative-8-2bit: -------------------------------------------------------------------------------- 1 | 832846066fbce28821b7f0717c4d3a90 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-creative-8-4bit: -------------------------------------------------------------------------------- 1 | 1813d196cef83f7030bb150399b2903e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ea-r2: -------------------------------------------------------------------------------- 1 | CRC=0xa1158634 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ea-r3: -------------------------------------------------------------------------------- 1 | CRC=0x9ea2507f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-apc: -------------------------------------------------------------------------------- 1 | 6dcee91d3364f389f804da7a25934b36 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-dk3: -------------------------------------------------------------------------------- 1 | 62fbe4db4a49cb044f57f92cce9993c5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-dk4: -------------------------------------------------------------------------------- 1 | 5234b53dde4961dd715a2524d6a8eb75 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-iss: -------------------------------------------------------------------------------- 1 | 816ca37c22e42f488fd787e3155e59ff 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-oki: -------------------------------------------------------------------------------- 1 | 641049800e735b62e975baacc9a011a4 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima-rad: -------------------------------------------------------------------------------- 1 | 495f0ae514c28c6bdcbd40811a17e2a5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm-ima_wav-stereo: -------------------------------------------------------------------------------- 1 | 1ee96f1efc09251a732621049dc5b66e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adpcm_ms-stereo: -------------------------------------------------------------------------------- 1 | 3b7554e9a186c30adfd2a86bae950f4a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/adts-demux: -------------------------------------------------------------------------------- 1 | CRC=0xbda37454 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/aea-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc1312082 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/ast: -------------------------------------------------------------------------------- 1 | CRC=0x87713611 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/bcstm: -------------------------------------------------------------------------------- 1 | CRC=0xca62d03b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/bfstm: -------------------------------------------------------------------------------- 1 | CRC=0xbd3d0d33 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/bink-demux: -------------------------------------------------------------------------------- 1 | CRC=0x839f34e6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/binsub-mksenc: -------------------------------------------------------------------------------- 1 | f80f42e646fce972e73aa6d99dcfa470 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/binsub-movtextenc: -------------------------------------------------------------------------------- 1 | af6a8f38d7c11d9af7823cc44554d2ad 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/brstm: -------------------------------------------------------------------------------- 1 | CRC=0x1feb92a8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/caf: -------------------------------------------------------------------------------- 1 | CRC=0xd0d7195c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/cine-demux: -------------------------------------------------------------------------------- 1 | CRC=0x8555ed33 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/dca-xll: -------------------------------------------------------------------------------- 1 | 5eb9a95ddaf3c803e74443a49a691686 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/dpcm-sierra: -------------------------------------------------------------------------------- 1 | a99402e1f1a0f137608898251b3f309b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/dpcm-xan: -------------------------------------------------------------------------------- 1 | b6da857766896ab10bb900004f915053 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/ea-cdata: -------------------------------------------------------------------------------- 1 | db441b7f9c8767ee675002763cd3ae46 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-crop_scale_vflip: -------------------------------------------------------------------------------- 1 | crop_scale_vflip d6a0bb35b159aa6787add0082088a59f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-edgedetect-colormix: -------------------------------------------------------------------------------- 1 | edgedetect-colormix 1b8658252e2f03fbae30e6d63dd24c7c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr444be: -------------------------------------------------------------------------------- 1 | pixdesc-bgr444be bbe69fdff1c6965674bf5be5d14a342d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr444le: -------------------------------------------------------------------------------- 1 | pixdesc-bgr444le 497e36f9004a10b46e4bc7253e95ad9f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr4_byte: -------------------------------------------------------------------------------- 1 | pixdesc-bgr4_byte 68d51f7d88311efcb4661ffb5ff9582e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr555be: -------------------------------------------------------------------------------- 1 | pixdesc-bgr555be 2718e3363c3191b14bc2f3f1936cebdb 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr555le: -------------------------------------------------------------------------------- 1 | pixdesc-bgr555le 35bf7049f067f541ae6dad8a70bc28ed 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr565be: -------------------------------------------------------------------------------- 1 | pixdesc-bgr565be 104e725cc5237aee0b03b8c537eaacac 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgr565le: -------------------------------------------------------------------------------- 1 | pixdesc-bgr565le 33df7dd9a9d738fb9c8b82dbf23c7caa 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgra64be: -------------------------------------------------------------------------------- 1 | pixdesc-bgra64be c524aa7e4c02dbca57035bb548afc1ec 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-bgra64le: -------------------------------------------------------------------------------- 1 | pixdesc-bgra64le df3a79d47b9dcf3ed2c252afd80e062c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap10be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap10be 95487536cdc73e10e06d739e03427390 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap10le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap10le bf2ce9a1b3cfd56667c19b30a1a51181 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap12be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap12be 419eca7130f22b62fd50cab347a56459 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap12le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap12le 01fff1419a76749e214056618a43f8b1 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap16be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap16be 7874e7fd35419ef212a450ea637ffb24 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrap16le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrap16le a83c7d0bbbfb1c1a8208f75680358387 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp10be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp10be c2ba960cf177208de99d4cf8d63402b1 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp10le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp10le 870de5644f6eb7bfbf183bd89f45130a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp12be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp12be d464c9f821b37c688b8a9196bd682938 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp12le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp12le 0399e1a940870dd3e3fd7c4be7f9e681 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp14be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp14be f430b5b2f8fdf778a708a332e0ef0ebf 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp14le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp14le 0ca93f5e5dd4b75481a77f0a63c600d1 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp16be: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp16be daccdd0a7d41d566ab40c4d00e552cbe 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gbrp16le: -------------------------------------------------------------------------------- 1 | pixdesc-gbrp16le 04f40ad1a27963be3125624446ed195e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gray10be: -------------------------------------------------------------------------------- 1 | pixdesc-gray10be 987bee0355054fcfc915e1e41aad523a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gray12be: -------------------------------------------------------------------------------- 1 | pixdesc-gray12be 29aeecc116c4b3e0c5109810fbd9ca17 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gray16be: -------------------------------------------------------------------------------- 1 | pixdesc-gray16be 99e7e54973b479845932e92581292b03 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-gray16le: -------------------------------------------------------------------------------- 1 | pixdesc-gray16le 33bd1b950d279a4bb22af325905d3604 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb444be: -------------------------------------------------------------------------------- 1 | pixdesc-rgb444be cfa4ee284dd89df92eed7f99f19a0218 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb444le: -------------------------------------------------------------------------------- 1 | pixdesc-rgb444le a40633dce705f439ecfc1a1b75661e17 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb4_byte: -------------------------------------------------------------------------------- 1 | pixdesc-rgb4_byte 0d4f7b0112d0e942527f168a651a6f8c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb555be: -------------------------------------------------------------------------------- 1 | pixdesc-rgb555be 6ba7d102e12460af51365ee66e070ad4 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb555le: -------------------------------------------------------------------------------- 1 | pixdesc-rgb555le ab391dde7ec72eb100c6a38aa301ff55 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb565be: -------------------------------------------------------------------------------- 1 | pixdesc-rgb565be 8f05c5786c1e5c9bd64cc6dab05139a5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgb565le: -------------------------------------------------------------------------------- 1 | pixdesc-rgb565le 427bd36cdf8e8786be888368bbfb35be 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgba64be: -------------------------------------------------------------------------------- 1 | pixdesc-rgba64be 8d5aea96a7c90aad9d97b06533ad291c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-rgba64le: -------------------------------------------------------------------------------- 1 | pixdesc-rgba64le 2c757090db978d11718bae97027f3a56 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p10be 51349063819809ca088e76c01041f3e9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p10le 070fe05fe4df43e117d1e4cff578655d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p12be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p12be 0527525aee87d21db82ecc738ab76848 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p12le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p12le cb513fbc83b63eedf0cafb26914d37be 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p14be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p14be ecafa03e42e81d83c8e8711f2133b128 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p14le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p14le a7ed1889fec8fff122dd2b065a5082ba 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p16be 9219829ae866614f64889a0b2603240d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p16le be0f1d41796ac141f33161349d47b4b5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p9be 69e0e50358ee0f7301d4cf252e9c35b1 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv420p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv420p9le eed25f5d0562d3158ae2f97589950ba9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p10be 55c4d6699258c42444265aa8dae7720e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p10le 8732c020f4401b757caa9e5616f426f2 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p12be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p12be a3119254cc1aa9893478faedf3b49b4f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p12le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p12le 8d397de88edec1a85b5fbbe7bdce08ac 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p14be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p14be c9d0750d9b784ca43d279479372f3a3e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p14le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p14le c8233b3c0fee4036ead0ac7a65489f69 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p16be 1dddb5353eb5b2e99cb54707eb7b80a7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p16le ba6cdf27c86b2dfdfaa29c394eea76cb 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p9be 25929926226d191bc1c459e67546c6c8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv422p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv422p9le 1de20cc8c68751dbf3e8f2bd64f2ffd7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv440p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv440p10be 3ad2b1fd9659be2f2f0a1d824c1bdede 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv440p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv440p10le 657aa6e83f5bcd91c1feab2c6d2db8e8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv440p12be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv440p12be 3c1ae4bdffe084ad574eff46bd88d556 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv440p12le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv440p12le ac9101bdea22b00dc24d4975935425bb 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p10be 05f72cb93495d28ad032a54ad5b69cc5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p10le 8f34212f8f9b95c9266cf7cd62eeae3f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p12be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p12be 24540e0c367e31a66f3ba40a6b847600 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p12le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p12le 15d9282fae68c44f17005e5eb15bc7e7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p14be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p14be 682673e893053a3a3d61dacb5212112e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p14le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p14le 9e9edf45e52df28d1b74e032815ad17f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p16be 5cea1d7afdc3d7b47043947eb61de666 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p16le 4fbf077117a0cadf4d277e99ebf254d6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p9be d59a020d35a4434d5904effdfa70ca69 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuv444p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuv444p9le d6b9667d8bc7aab7fa5d27540c65010d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p10beeea756629ceb059a9368899ebe8623d7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p10leca41b24346d7b71baff040d8e05d1c99 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p16be62309264f29a79ffe2c7e224a49afb10 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p16le8e3f544099b9b92421fae4147bb64892 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p9be daadd46290d54a592bb1c0e657001e06 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva420p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva420p9le e417b7c2a5d18768dd42f44c50a67a47 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p 1faf18b3fef6c3792d8e2f1ac6e7490a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p10be48269e4c136138ebf989f3829b636136 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p10le1e9a7ea03647cb6d8f5a4cb3085124e3 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p16be3ed898fd49bb4210a1c204a555c63997 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p16led3ca3020575d91f2a9bf27eaf3c9bce6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p9be a9da61fa1aecb8c8f55eff08a89f8f4d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva422p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva422p9le bd427a5fd70aa2e07aa5869dcd9d7d17 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p 7ce64f043f8d3658c7c627d2163ad19f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p10be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p10beadba33abe66edb10474ca6e81a05b5aa 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p10le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p10lea649ca6173037030cae3d21936d3b19d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p16be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p16bede8077bfb08bc61284b23db5d524563b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p16le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p16lecf80d3441689eca8cd5fe007c4091c35 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p9be: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p9be 0f5d25349e3fd1e0580300b3a36724ac 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuva444p9le: -------------------------------------------------------------------------------- 1 | pixdesc-yuva444p9le 46e052f61b8cebd4b016836857f54b39 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuvj411p: -------------------------------------------------------------------------------- 1 | pixdesc-yuvj411p cac93399031ad86e8de0796b60b5bb8a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuvj420p: -------------------------------------------------------------------------------- 1 | pixdesc-yuvj420p 5244374882cf07c3cbcde71940caf8e5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuvj422p: -------------------------------------------------------------------------------- 1 | pixdesc-yuvj422p 6c9722aa9e0c1b8f9d953efeb93dc318 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/filter-pixdesc-yuvj444p: -------------------------------------------------------------------------------- 1 | pixdesc-yuvj444p f67694103bb42d74742918adf9ea31c5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/h264-bsf-mp4toannexb: -------------------------------------------------------------------------------- 1 | 5f04c27cc6ee8625fe2405fb0f7da9a3 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/idroq-video-encode: -------------------------------------------------------------------------------- 1 | e9ff61023826fce304350ff6e7c63b2f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/iff-fibonacci: -------------------------------------------------------------------------------- 1 | e968a853779bb6438339e3b8d69d8d24 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/iff-pcm: -------------------------------------------------------------------------------- 1 | 6dc1329541393525a60fd6b9782573f5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/limited_input_seek: -------------------------------------------------------------------------------- 1 | 20a1bb9a1cfb23c1fe86f14e6065cd95 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/limited_input_seek-copyts: -------------------------------------------------------------------------------- 1 | ec3604b1954ed80de364b8ef491771ce 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-alac: -------------------------------------------------------------------------------- 1 | d0beb768d860b4776358077dd9fcb1e9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-meridianaudio: -------------------------------------------------------------------------------- 1 | b3d0c9523c42fae639f7074e60281509 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-monkeysaudio-399: -------------------------------------------------------------------------------- 1 | a28d4e5f2192057f7d4bece870f40bd0 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-shorten: -------------------------------------------------------------------------------- 1 | da93c50961443b88fce416ae61c8ca8a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-tak: -------------------------------------------------------------------------------- 1 | CRC=0x4ec0971f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-truehd-5.1: -------------------------------------------------------------------------------- 1 | 95d8aac39dd9f0d7fb83dc7b6f88df35 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-truehd-5.1-downmix-2.0: -------------------------------------------------------------------------------- 1 | a269aee0051d4400c9117136f08c9767 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-tta: -------------------------------------------------------------------------------- 1 | CRC=0xb2b8b6d9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-tta-encrypted: -------------------------------------------------------------------------------- 1 | CRC=0x4563745f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-wma: -------------------------------------------------------------------------------- 1 | ab45f262b22030e908cb03f2cc8e89b5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-wma24-1: -------------------------------------------------------------------------------- 1 | 9ade91f506bc025854f6ffea0d635bc6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-wma24-2: -------------------------------------------------------------------------------- 1 | 908ec5c16f497bf7d5658d2689d125c8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/lossless-wma24-rawtile: -------------------------------------------------------------------------------- 1 | 337592f38a2218a5bc95ceb9b5e72c8b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mapchan-2ch-extract-ch0-ch2-trailing: -------------------------------------------------------------------------------- 1 | b6e1d142b4e484221562e7b66b9bbbdc 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mapchan-3ch-extract-ch0-ch2-trailing: -------------------------------------------------------------------------------- 1 | ae533985186cab287309c04f6b3e866c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mapchan-6ch-extract-2-downmix-mono: -------------------------------------------------------------------------------- 1 | 6ededcfc9f0b26d200a7295205e87663 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mapchan-silent-mono: -------------------------------------------------------------------------------- 1 | b6b034fffa8639e64d79be84f16d9ebe 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mlv-demux: -------------------------------------------------------------------------------- 1 | CRC=0x937f8af3 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpc7-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdeb152dd 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpc8-demux: -------------------------------------------------------------------------------- 1 | CRC=0x5cdeaf0c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-00: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-01: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-02: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-03: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-04: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-als-conformance-05: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mpeg4-bsf-unpack-bframes: -------------------------------------------------------------------------------- 1 | a0c4ba21ab9d68966b8fce7cc848e2c6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/murmur3: -------------------------------------------------------------------------------- 1 | result: 0x63f3de036384ba69 0x7192878ce684ed2d 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/mxf-missing-index-demux: -------------------------------------------------------------------------------- 1 | CRC=0x48508eed 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/nistsphere-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc4faddaf 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/oma-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdd181a1c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/pcm_s16be-stereo: -------------------------------------------------------------------------------- 1 | 759cf5d12a4b2fb653e61f5219331f14 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/pcm_s16le-stereo: -------------------------------------------------------------------------------- 1 | 0262b20b728f5bb95594e64e2173b2f2 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/pcm_u8-mono: -------------------------------------------------------------------------------- 1 | c2dcec9b230dad733b6b877fbed36755 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/pcm_u8-stereo: -------------------------------------------------------------------------------- 1 | 973cf68365c3d58ff60ba652433b3bd2 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qcp-demux: -------------------------------------------------------------------------------- 1 | CRC=0x4f9f567a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-alaw-mono: -------------------------------------------------------------------------------- 1 | 7257c296fbba7eedf688fcb667144f7b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-alaw-stereo: -------------------------------------------------------------------------------- 1 | 011d4aecaee697cc861012b7c25b5d40 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-ima4-mono: -------------------------------------------------------------------------------- 1 | e178ed520edf2f46492ae740d88f5815 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-ima4-stereo: -------------------------------------------------------------------------------- 1 | d22be0e193dcbba1068a1ca6ab04cf77 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-mac3-mono: -------------------------------------------------------------------------------- 1 | 728d89210e1c90a9185db729b0b6e8c0 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-mac3-stereo: -------------------------------------------------------------------------------- 1 | 2eef3c68fce3d18ec757bcbc0d369698 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-mac6-mono: -------------------------------------------------------------------------------- 1 | eec238d2737365fba15da813e5a7fbc9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-mac6-stereo: -------------------------------------------------------------------------------- 1 | 2716d66016d8230bcc0fe90586da97a9 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-ulaw-mono: -------------------------------------------------------------------------------- 1 | 63075293c68079826146963e94f45ca6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/qt-ulaw-stereo: -------------------------------------------------------------------------------- 1 | 96316117d444b06b2aa20877f7de36fd 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/ra-144: -------------------------------------------------------------------------------- 1 | 2da17ae831ea415592c7e6828e3fb69a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/ralf: -------------------------------------------------------------------------------- 1 | 10da0398e06a470a0b97817fe113abcb 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/redspark-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc0fd1aa2 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/rsd-demux: -------------------------------------------------------------------------------- 1 | CRC=0x7b7807d8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/time_base: -------------------------------------------------------------------------------- 1 | d26a35b141551b36c5b8bd716451cfcb 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/unknown_layout-ac3: -------------------------------------------------------------------------------- 1 | bbb7550d6d93973c10f4ee13c87cf799 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/unknown_layout-pcm: -------------------------------------------------------------------------------- 1 | 4dada0795adf50f7a0e60861658f86ea 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/v410enc: -------------------------------------------------------------------------------- 1 | 465bcc7477104a8295f47b35f1b987df 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/vqf-demux: -------------------------------------------------------------------------------- 1 | 5f4cd9a6a8bea0040db6732a7830e9d7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/w64: -------------------------------------------------------------------------------- 1 | CRC=0xc1e71a5c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-4.0: -------------------------------------------------------------------------------- 1 | a03999c3ad17423f3a7e3d537fea8589 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-5.1: -------------------------------------------------------------------------------- 1 | 4ab874ad4a47141073f6db9aeec422a8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-6.1: -------------------------------------------------------------------------------- 1 | a524a76c85f55b7d63914fc1543a5268 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-7.1: -------------------------------------------------------------------------------- 1 | cffe4d47290ff3cef974e5aa6bc32559 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-monofloat: -------------------------------------------------------------------------------- 1 | 71386c0f63105e414220f0f0d369a0e6 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-channels-monoint: -------------------------------------------------------------------------------- 1 | 931f27e3ec69fae0952548504461d97c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-clipping: -------------------------------------------------------------------------------- 1 | d18d0b2dc7d329aefcbb889dc99383ab 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-cuesheet: -------------------------------------------------------------------------------- 1 | 85eb2940491442ca25c2a702a6f30e5f 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-falsestereo: -------------------------------------------------------------------------------- 1 | e3fdd584bef84e85f4ca84e2769306f8 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-12bit: -------------------------------------------------------------------------------- 1 | 925e047ac0d4c874a9cff3cc9117ac91 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-16bit: -------------------------------------------------------------------------------- 1 | e2dc4b85377b275a48c8bd2a4f5b91fd 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-24bit: -------------------------------------------------------------------------------- 1 | 9d7bc1a45bd3ba9d1eb5706f0dfc3e47 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-32bit: -------------------------------------------------------------------------------- 1 | c35f539bb5796ed93908c987fab1c26c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-8bit: -------------------------------------------------------------------------------- 1 | e4e65e2048ba373d89836907328cfb27 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossless-float: -------------------------------------------------------------------------------- 1 | 04b860cf4f9ecba36c053fdf83dac14a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossy-16bit: -------------------------------------------------------------------------------- 1 | c2aa8d83d14f799a9289b73bb6263fbc 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossy-24bit: -------------------------------------------------------------------------------- 1 | 0c04941424ba0981eac0e681130788f7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossy-32bit: -------------------------------------------------------------------------------- 1 | 7b94c7ab8ec78ddf59bd7967199cdc8e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossy-8bit: -------------------------------------------------------------------------------- 1 | f0e452d762d5e7b675970e6e67b781e7 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-lossy-float: -------------------------------------------------------------------------------- 1 | d4733e795e5af80da9a265cf83a6da69 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-matroskamode: -------------------------------------------------------------------------------- 1 | cffe4d47290ff3cef974e5aa6bc32559 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-speed-default: -------------------------------------------------------------------------------- 1 | a57bec3f270c3b294d1e5ea07760514c 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-speed-fast: -------------------------------------------------------------------------------- 1 | ebff08f89073e3f662f822df428711d5 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-speed-high: -------------------------------------------------------------------------------- 1 | a28c4d0f1d0c6ac7739e05150a8c401a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-speed-vhigh: -------------------------------------------------------------------------------- 1 | a28c4d0f1d0c6ac7739e05150a8c401a 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/wavpack-zerolsbs: -------------------------------------------------------------------------------- 1 | 33c09fedba88693f6cc423ca3763e7fe 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/ws_snd: -------------------------------------------------------------------------------- 1 | 023317c7876aa5271f086f753d84561b 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tests/ref/fate/xwma-demux: -------------------------------------------------------------------------------- 1 | CRC=0x2ac2159e 2 | -------------------------------------------------------------------------------- /externals/sources/ffmpeg/tools/murge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/ffmpeg/tools/murge -------------------------------------------------------------------------------- /externals/sources/libexif/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/ABOUT-NLS -------------------------------------------------------------------------------- /externals/sources/libexif/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/AUTHORS -------------------------------------------------------------------------------- /externals/sources/libexif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/COPYING -------------------------------------------------------------------------------- /externals/sources/libexif/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/ChangeLog -------------------------------------------------------------------------------- /externals/sources/libexif/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/INSTALL -------------------------------------------------------------------------------- /externals/sources/libexif/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/NEWS -------------------------------------------------------------------------------- /externals/sources/libexif/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/README -------------------------------------------------------------------------------- /externals/sources/libexif/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/aclocal.m4 -------------------------------------------------------------------------------- /externals/sources/libexif/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/config.sub -------------------------------------------------------------------------------- /externals/sources/libexif/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/configure -------------------------------------------------------------------------------- /externals/sources/libexif/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/depcomp -------------------------------------------------------------------------------- /externals/sources/libexif/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/install-sh -------------------------------------------------------------------------------- /externals/sources/libexif/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/ltmain.sh -------------------------------------------------------------------------------- /externals/sources/libexif/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/missing -------------------------------------------------------------------------------- /externals/sources/libexif/po/be.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/be.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/be.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/bs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/bs.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/bs.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/cs.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/cs.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/da.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/da.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/de.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/de.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/es.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/es.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/fr.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/fr.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/it.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/it.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/ja.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/ja.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/nl.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/nl.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/pl.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/pl.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/pt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/pt.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/pt.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/ru.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/ru.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sk.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sk.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sq.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sq.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sr.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sr.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /externals/sources/libexif/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sv.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/sv.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/tr.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/tr.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/uk.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/uk.po -------------------------------------------------------------------------------- /externals/sources/libexif/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/vi.gmo -------------------------------------------------------------------------------- /externals/sources/libexif/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libexif/po/vi.po -------------------------------------------------------------------------------- /externals/sources/libjpeg-turbo/doc/html/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /externals/sources/libjpeg-turbo/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /externals/sources/libjpeg-turbo/java/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: TJExample 3 | -------------------------------------------------------------------------------- /externals/sources/libjpeg-turbo/simd/gas-preprocessor.in: -------------------------------------------------------------------------------- 1 | gas-preprocessor.pl @CMAKE_ASM_COMPILER@ ${1+"$@"} 2 | -------------------------------------------------------------------------------- /externals/sources/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/ANNOUNCE -------------------------------------------------------------------------------- /externals/sources/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/CHANGES -------------------------------------------------------------------------------- /externals/sources/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/INSTALL -------------------------------------------------------------------------------- /externals/sources/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/LICENSE -------------------------------------------------------------------------------- /externals/sources/libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/Makefile.am -------------------------------------------------------------------------------- /externals/sources/libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/Makefile.in -------------------------------------------------------------------------------- /externals/sources/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/README -------------------------------------------------------------------------------- /externals/sources/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/TODO -------------------------------------------------------------------------------- /externals/sources/libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/aclocal.m4 -------------------------------------------------------------------------------- /externals/sources/libpng/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/autogen.sh -------------------------------------------------------------------------------- /externals/sources/libpng/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/compile -------------------------------------------------------------------------------- /externals/sources/libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/config.h.in -------------------------------------------------------------------------------- /externals/sources/libpng/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/config.sub -------------------------------------------------------------------------------- /externals/sources/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/configure -------------------------------------------------------------------------------- /externals/sources/libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/depcomp -------------------------------------------------------------------------------- /externals/sources/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/example.c -------------------------------------------------------------------------------- /externals/sources/libpng/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/install-sh -------------------------------------------------------------------------------- /externals/sources/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/libpng.3 -------------------------------------------------------------------------------- /externals/sources/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/libpngpf.3 -------------------------------------------------------------------------------- /externals/sources/libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/ltmain.sh -------------------------------------------------------------------------------- /externals/sources/libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/missing -------------------------------------------------------------------------------- /externals/sources/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/png.5 -------------------------------------------------------------------------------- /externals/sources/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/png.c -------------------------------------------------------------------------------- /externals/sources/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/png.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngbar.jpg -------------------------------------------------------------------------------- /externals/sources/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngbar.png -------------------------------------------------------------------------------- /externals/sources/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngconf.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngdebug.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngerror.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngget.c -------------------------------------------------------------------------------- /externals/sources/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pnginfo.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngmem.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngnow.png -------------------------------------------------------------------------------- /externals/sources/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngpread.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngpriv.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngread.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngrio.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngrtran.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngrutil.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngset.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngstruct.h -------------------------------------------------------------------------------- /externals/sources/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngtest.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngtest.png -------------------------------------------------------------------------------- /externals/sources/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngtrans.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngusr.dfa -------------------------------------------------------------------------------- /externals/sources/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngwio.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngwrite.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngwtran.c -------------------------------------------------------------------------------- /externals/sources/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/pngwutil.c -------------------------------------------------------------------------------- /externals/sources/libpng/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/libpng/test-driver -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /externals/sources/libpng/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /externals/sources/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/Makefile -------------------------------------------------------------------------------- /externals/sources/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/README -------------------------------------------------------------------------------- /externals/sources/lua/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/index.css -------------------------------------------------------------------------------- /externals/sources/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/logo.gif -------------------------------------------------------------------------------- /externals/sources/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/lua.1 -------------------------------------------------------------------------------- /externals/sources/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/lua.css -------------------------------------------------------------------------------- /externals/sources/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/luac.1 -------------------------------------------------------------------------------- /externals/sources/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/doc/manual.css -------------------------------------------------------------------------------- /externals/sources/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/Makefile -------------------------------------------------------------------------------- /externals/sources/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lapi.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lapi.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lauxlib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lauxlib.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lbaselib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lbitlib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lcode.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lcode.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lcorolib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lctype.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lctype.h -------------------------------------------------------------------------------- /externals/sources/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldblib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldebug.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldebug.h -------------------------------------------------------------------------------- /externals/sources/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldo.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldo.h -------------------------------------------------------------------------------- /externals/sources/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ldump.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lfunc.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lfunc.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lgc.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lgc.h -------------------------------------------------------------------------------- /externals/sources/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/linit.c -------------------------------------------------------------------------------- /externals/sources/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/liolib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/llex.c -------------------------------------------------------------------------------- /externals/sources/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/llex.h -------------------------------------------------------------------------------- /externals/sources/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/llimits.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lmathlib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lmem.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lmem.h -------------------------------------------------------------------------------- /externals/sources/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/loadlib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lobject.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lobject.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lopcodes.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lopcodes.h -------------------------------------------------------------------------------- /externals/sources/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/loslib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lparser.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lparser.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lprefix.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lstate.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lstate.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lstring.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lstring.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lstrlib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ltable.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ltable.h -------------------------------------------------------------------------------- /externals/sources/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ltablib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ltm.c -------------------------------------------------------------------------------- /externals/sources/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/ltm.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lua.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lua.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lua.hpp -------------------------------------------------------------------------------- /externals/sources/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/luac.c -------------------------------------------------------------------------------- /externals/sources/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/luaconf.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lualib.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lundump.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lundump.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lutf8lib.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lvm.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lvm.h -------------------------------------------------------------------------------- /externals/sources/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lzio.c -------------------------------------------------------------------------------- /externals/sources/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/lua/src/lzio.h -------------------------------------------------------------------------------- /externals/sources/make/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/make/ReadMe.txt -------------------------------------------------------------------------------- /externals/sources/make/mingw/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/make/mingw/build -------------------------------------------------------------------------------- /externals/sources/make/msvc/libpng/.gitignore: -------------------------------------------------------------------------------- 1 | Release 2 | Debug 3 | -------------------------------------------------------------------------------- /externals/sources/make/msvc/zlib/.gitignore: -------------------------------------------------------------------------------- 1 | Release 2 | Debug 3 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtAbstractEditorFactoryBase: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtAbstractPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtAbstractPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtBoolPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtBrowserItem: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtButtonPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtbuttonpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtCharEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtCharPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtCheckBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtColorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtColorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtCursorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtCursorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDateEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDatePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDateTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDateTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDoublePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtDoubleSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtEnumEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtEnumPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtFlagPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtFontEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtFontPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtGroupBoxPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtgroupboxpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtGroupPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtIntPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtKeySequenceEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtKeySequencePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtLineEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtLocalePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtPointFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtPointPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtProperty: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtRectFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtRectPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtScrollBarFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtSizeFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtSizePolicyPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtSizePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtSliderFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtStringPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtTreePropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qttreepropertybrowser.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtVariantEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtVariantProperty: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /externals/sources/qtpropertybrowser/src/QtVariantPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /externals/sources/scintilla/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/scintilla/.hgeol -------------------------------------------------------------------------------- /externals/sources/scintilla/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/scintilla/.hgtags -------------------------------------------------------------------------------- /externals/sources/scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/scintilla/README -------------------------------------------------------------------------------- /externals/sources/scintilla/bin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /externals/sources/scintilla/qt/.gitignore: -------------------------------------------------------------------------------- 1 | build-* 2 | ScintillaEdit/lib 3 | -------------------------------------------------------------------------------- /externals/sources/scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/scintilla/tgzsrc -------------------------------------------------------------------------------- /externals/sources/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 376 2 | -------------------------------------------------------------------------------- /externals/sources/scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /externals/sources/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/versions.txt -------------------------------------------------------------------------------- /externals/sources/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/ChangeLog -------------------------------------------------------------------------------- /externals/sources/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/FAQ -------------------------------------------------------------------------------- /externals/sources/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/INDEX -------------------------------------------------------------------------------- /externals/sources/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/Makefile -------------------------------------------------------------------------------- /externals/sources/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/Makefile.in -------------------------------------------------------------------------------- /externals/sources/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/README -------------------------------------------------------------------------------- /externals/sources/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/adler32.c -------------------------------------------------------------------------------- /externals/sources/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/compress.c -------------------------------------------------------------------------------- /externals/sources/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/configure -------------------------------------------------------------------------------- /externals/sources/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/crc32.c -------------------------------------------------------------------------------- /externals/sources/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/crc32.h -------------------------------------------------------------------------------- /externals/sources/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/deflate.c -------------------------------------------------------------------------------- /externals/sources/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/deflate.h -------------------------------------------------------------------------------- /externals/sources/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/gzclose.c -------------------------------------------------------------------------------- /externals/sources/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/gzguts.h -------------------------------------------------------------------------------- /externals/sources/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/gzlib.c -------------------------------------------------------------------------------- /externals/sources/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/gzread.c -------------------------------------------------------------------------------- /externals/sources/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/gzwrite.c -------------------------------------------------------------------------------- /externals/sources/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/infback.c -------------------------------------------------------------------------------- /externals/sources/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inffast.c -------------------------------------------------------------------------------- /externals/sources/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inffast.h -------------------------------------------------------------------------------- /externals/sources/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inffixed.h -------------------------------------------------------------------------------- /externals/sources/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inflate.c -------------------------------------------------------------------------------- /externals/sources/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inflate.h -------------------------------------------------------------------------------- /externals/sources/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inftrees.c -------------------------------------------------------------------------------- /externals/sources/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/inftrees.h -------------------------------------------------------------------------------- /externals/sources/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/make_vms.com -------------------------------------------------------------------------------- /externals/sources/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/old/README -------------------------------------------------------------------------------- /externals/sources/zlib/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/os400/bndsrc -------------------------------------------------------------------------------- /externals/sources/zlib/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/os400/make.sh -------------------------------------------------------------------------------- /externals/sources/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/treebuild.xml -------------------------------------------------------------------------------- /externals/sources/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/trees.c -------------------------------------------------------------------------------- /externals/sources/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/trees.h -------------------------------------------------------------------------------- /externals/sources/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/uncompr.c -------------------------------------------------------------------------------- /externals/sources/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zconf.h -------------------------------------------------------------------------------- /externals/sources/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zconf.h.in -------------------------------------------------------------------------------- /externals/sources/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib.3 -------------------------------------------------------------------------------- /externals/sources/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /externals/sources/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib.h -------------------------------------------------------------------------------- /externals/sources/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib.map -------------------------------------------------------------------------------- /externals/sources/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib.pc.in -------------------------------------------------------------------------------- /externals/sources/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zlib2ansi -------------------------------------------------------------------------------- /externals/sources/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zutil.c -------------------------------------------------------------------------------- /externals/sources/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/externals/sources/zlib/zutil.h -------------------------------------------------------------------------------- /images/cv_examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/images/cv_examples.jpg -------------------------------------------------------------------------------- /images/cvsandbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/images/cvsandbox.jpg -------------------------------------------------------------------------------- /images/cvsandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/images/cvsandbox.png -------------------------------------------------------------------------------- /images/processing_objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/images/processing_objects.jpg -------------------------------------------------------------------------------- /sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/.gitignore -------------------------------------------------------------------------------- /sources/afx/afx_imaging/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/alpha.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/blur_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/blur_image.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/color_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/color_maps.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/drawing.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/gaussian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/gaussian.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/gray_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/gray_world.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/invert.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/make/src.mk -------------------------------------------------------------------------------- /sources/afx/afx_imaging/mean_3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/mean_3x3.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/mean_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/mean_shift.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/mirror.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/morphology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/morphology.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/otsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/otsu.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/pixellate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/pixellate.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/rotate90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/rotate90.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/rotate_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/rotate_rgb.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/sepia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/sepia.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/set_hue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/set_hue.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/swap_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/swap_rgb.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/threshold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/threshold.c -------------------------------------------------------------------------------- /sources/afx/afx_imaging/ximaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_imaging/ximaging.h -------------------------------------------------------------------------------- /sources/afx/afx_platform+/XMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_platform+/XMutex.cpp -------------------------------------------------------------------------------- /sources/afx/afx_platform+/XMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_platform+/XMutex.hpp -------------------------------------------------------------------------------- /sources/afx/afx_platform+/XTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_platform+/XTimer.cpp -------------------------------------------------------------------------------- /sources/afx/afx_platform+/XTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_platform+/XTimer.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XColor.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XColor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XColor.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XError.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XError.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XGuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XGuid.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XGuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XGuid.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XImage.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XImage.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XPoint.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XPoint.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XPointF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XPointF.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XPointF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XPointF.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XRange.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XRange.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XRangeF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XRangeF.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XRangeF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XRangeF.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XSize.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XSize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XSize.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XVariant.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XVariant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XVariant.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XVersion.cpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/XVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/XVersion.hpp -------------------------------------------------------------------------------- /sources/afx/afx_types+/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types+/make/src.mk -------------------------------------------------------------------------------- /sources/afx/afx_types/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/make/src.mk -------------------------------------------------------------------------------- /sources/afx/afx_types/xalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xalloc.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xarray.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xbits.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xcpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xcpuid.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xcpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xcpuid.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xerrors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xerrors.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xerrors.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xguid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xguid.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xhistogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xhistogram.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xhistogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xhistogram.h -------------------------------------------------------------------------------- /sources/afx/afx_types/ximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/ximage.c -------------------------------------------------------------------------------- /sources/afx/afx_types/ximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/ximage.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xlist.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xlist.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xmath.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xmath.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xpalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xpalette.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xpalette.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xrange.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xstring.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xtypes.h -------------------------------------------------------------------------------- /sources/afx/afx_types/xvariant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xvariant.c -------------------------------------------------------------------------------- /sources/afx/afx_types/xversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_types/xversion.c -------------------------------------------------------------------------------- /sources/afx/afx_video+/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_video+/make/src.mk -------------------------------------------------------------------------------- /sources/afx/afx_vision/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_vision/make/src.mk -------------------------------------------------------------------------------- /sources/afx/afx_vision/xvision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/afx_vision/xvision.h -------------------------------------------------------------------------------- /sources/afx/make/mingw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/make/mingw/Makefile -------------------------------------------------------------------------------- /sources/afx/make/mingw/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/make/mingw/build.bat -------------------------------------------------------------------------------- /sources/afx/make/mingw/make.bat: -------------------------------------------------------------------------------- 1 | @%MINGW_BIN%\mingw32-make.exe %1 -------------------------------------------------------------------------------- /sources/afx/make/msvc/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/make/msvc/build.bat -------------------------------------------------------------------------------- /sources/afx/make/msvc/build.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/make/msvc/build.sln -------------------------------------------------------------------------------- /sources/afx/make/msvc/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/afx/make/msvc/build64.bat -------------------------------------------------------------------------------- /sources/apps/.gitignore: -------------------------------------------------------------------------------- 1 | build-* 2 | -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/.gitignore -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam.cpp -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam.def -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam.h -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam.rc -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam.sln -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/cvs_vcam64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/cvs_vcam64.def -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/regsvr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/regsvr.bat -------------------------------------------------------------------------------- /sources/apps/cvs_vcam/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvs_vcam/setup.cpp -------------------------------------------------------------------------------- /sources/apps/cvsandbox/GridButton.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/GridButton.ui -------------------------------------------------------------------------------- /sources/apps/cvsandbox/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/MainWindow.ui -------------------------------------------------------------------------------- /sources/apps/cvsandbox/cvsandbox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/cvsandbox.ico -------------------------------------------------------------------------------- /sources/apps/cvsandbox/cvsandbox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/cvsandbox.pro -------------------------------------------------------------------------------- /sources/apps/cvsandbox/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/icons/add.png -------------------------------------------------------------------------------- /sources/apps/cvsandbox/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/icons/ok.png -------------------------------------------------------------------------------- /sources/apps/cvsandbox/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/icons/run.png -------------------------------------------------------------------------------- /sources/apps/cvsandbox/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/icons/up.png -------------------------------------------------------------------------------- /sources/apps/cvsandbox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/main.cpp -------------------------------------------------------------------------------- /sources/apps/cvsandbox/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/resources.qrc -------------------------------------------------------------------------------- /sources/apps/cvsandbox/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/version.cpp -------------------------------------------------------------------------------- /sources/apps/cvsandbox/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvsandbox/version.hpp -------------------------------------------------------------------------------- /sources/apps/cvssr/ScriptingHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvssr/ScriptingHost.cpp -------------------------------------------------------------------------------- /sources/apps/cvssr/ScriptingHost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvssr/ScriptingHost.hpp -------------------------------------------------------------------------------- /sources/apps/cvssr/cvssr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvssr/cvssr.cpp -------------------------------------------------------------------------------- /sources/apps/cvssr/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvssr/make/src.mk -------------------------------------------------------------------------------- /sources/apps/cvssr/test_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/cvssr/test_script.lua -------------------------------------------------------------------------------- /sources/apps/make/mingw/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/make/mingw/build.bat -------------------------------------------------------------------------------- /sources/apps/make/msvc/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/make/msvc/build.bat -------------------------------------------------------------------------------- /sources/apps/make/msvc/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/apps/make/msvc/build64.bat -------------------------------------------------------------------------------- /sources/core/iplugin/ifamily.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/ifamily.c -------------------------------------------------------------------------------- /sources/core/iplugin/ifamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/ifamily.h -------------------------------------------------------------------------------- /sources/core/iplugin/ifunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/ifunction.c -------------------------------------------------------------------------------- /sources/core/iplugin/ifunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/ifunction.h -------------------------------------------------------------------------------- /sources/core/iplugin/imodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/imodule.c -------------------------------------------------------------------------------- /sources/core/iplugin/imodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/imodule.h -------------------------------------------------------------------------------- /sources/core/iplugin/iplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iplugin.h -------------------------------------------------------------------------------- /sources/core/iplugin/iplugincpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iplugincpp.hpp -------------------------------------------------------------------------------- /sources/core/iplugin/iplugintypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iplugintypes.c -------------------------------------------------------------------------------- /sources/core/iplugin/iplugintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iplugintypes.h -------------------------------------------------------------------------------- /sources/core/iplugin/iproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iproperty.c -------------------------------------------------------------------------------- /sources/core/iplugin/iproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/iproperty.h -------------------------------------------------------------------------------- /sources/core/iplugin/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/make/src.mk -------------------------------------------------------------------------------- /sources/core/iplugin/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/registry.c -------------------------------------------------------------------------------- /sources/core/iplugin/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/tools.c -------------------------------------------------------------------------------- /sources/core/iplugin/xmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/xmodule.c -------------------------------------------------------------------------------- /sources/core/iplugin/xmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/iplugin/xmodule.h -------------------------------------------------------------------------------- /sources/core/make/mingw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/make/mingw/Makefile -------------------------------------------------------------------------------- /sources/core/make/mingw/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/make/mingw/build.bat -------------------------------------------------------------------------------- /sources/core/make/mingw/make.bat: -------------------------------------------------------------------------------- 1 | @%MINGW_BIN%\mingw32-make.exe %1 -------------------------------------------------------------------------------- /sources/core/make/msvc/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/make/msvc/build.bat -------------------------------------------------------------------------------- /sources/core/make/msvc/build.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/make/msvc/build.sln -------------------------------------------------------------------------------- /sources/core/make/msvc/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/make/msvc/build64.bat -------------------------------------------------------------------------------- /sources/core/pluginmgr/XFamily.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/pluginmgr/XFamily.cpp -------------------------------------------------------------------------------- /sources/core/pluginmgr/XFamily.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/pluginmgr/XFamily.hpp -------------------------------------------------------------------------------- /sources/core/pluginmgr/XPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/pluginmgr/XPlugin.cpp -------------------------------------------------------------------------------- /sources/core/pluginmgr/XPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/pluginmgr/XPlugin.hpp -------------------------------------------------------------------------------- /sources/core/pluginmgr/make/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/core/pluginmgr/make/src.mk -------------------------------------------------------------------------------- /sources/images/image_barcode_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_barcode_16x16.h -------------------------------------------------------------------------------- /sources/images/image_blocks_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_blocks_16x16.h -------------------------------------------------------------------------------- /sources/images/image_blur_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_blur_16x16.h -------------------------------------------------------------------------------- /sources/images/image_camera_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_camera_16x16.h -------------------------------------------------------------------------------- /sources/images/image_chart_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_chart_16x16.h -------------------------------------------------------------------------------- /sources/images/image_dshow_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_dshow_16x16.h -------------------------------------------------------------------------------- /sources/images/image_emboss_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_emboss_16x16.h -------------------------------------------------------------------------------- /sources/images/image_erosion_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_erosion_16x16.h -------------------------------------------------------------------------------- /sources/images/image_ffmpeg_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_ffmpeg_16x16.h -------------------------------------------------------------------------------- /sources/images/image_frame_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_frame_16x16.h -------------------------------------------------------------------------------- /sources/images/image_gamepad_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_gamepad_16x16.h -------------------------------------------------------------------------------- /sources/images/image_glyph_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_glyph_16x16.h -------------------------------------------------------------------------------- /sources/images/image_grain_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_grain_16x16.h -------------------------------------------------------------------------------- /sources/images/image_invert_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_invert_16x16.h -------------------------------------------------------------------------------- /sources/images/image_jitter_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_jitter_16x16.h -------------------------------------------------------------------------------- /sources/images/image_mean_3s_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_mean_3s_16x16.h -------------------------------------------------------------------------------- /sources/images/image_merge_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_merge_16x16.h -------------------------------------------------------------------------------- /sources/images/image_sepia_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_sepia_16x16.h -------------------------------------------------------------------------------- /sources/images/image_video_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/images/image_video_16x16.h -------------------------------------------------------------------------------- /sources/installer/.gitignore: -------------------------------------------------------------------------------- 1 | Files 2 | Output -------------------------------------------------------------------------------- /sources/installer/cvsandbox.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/installer/cvsandbox.iss -------------------------------------------------------------------------------- /sources/installer/eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/installer/eula.txt -------------------------------------------------------------------------------- /sources/make/mingw/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/make/mingw/build.bat -------------------------------------------------------------------------------- /sources/make/msvc/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/make/msvc/build.bat -------------------------------------------------------------------------------- /sources/make/msvc/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/make/msvc/build64.bat -------------------------------------------------------------------------------- /sources/plugins/make/mingw/make.bat: -------------------------------------------------------------------------------- 1 | @%MINGW_BIN%\mingw32-make.exe %1 -------------------------------------------------------------------------------- /sources/plugins/modules_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvsandbox/CVSandbox/HEAD/sources/plugins/modules_list.txt -------------------------------------------------------------------------------- /sources/testapps/make/mingw/make.bat: -------------------------------------------------------------------------------- 1 | @%MINGW_BIN%\mingw32-make.exe %1 --------------------------------------------------------------------------------