<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/multimedia/vmaf/files, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/'/>
<entry>
<title>multimedia/vmaf: update to 3.1.0</title>
<updated>2026-04-10T17:54:04+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2026-04-02T18:41:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=24addf4474c0cca8c35fe09c693206a6d3b5271a'/>
<id>24addf4474c0cca8c35fe09c693206a6d3b5271a</id>
<content type='text'>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v3.1.0
Reported by:	GitHub (watch releases)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v3.1.0
Reported by:	GitHub (watch releases)
</pre>
</div>
</content>
</entry>
<entry>
<title>multimedia/vmaf: unbreak build with clang 15 after a57fa8802ae7</title>
<updated>2023-11-21T20:39:25+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2023-11-21T20:31:52+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=2cf7924d2f434617187db3f9a5205e461e89c26a'/>
<id>2cf7924d2f434617187db3f9a5205e461e89c26a</id>
<content type='text'>
../tools/cli_parse.c:194:21: error: incompatible integer to pointer conversion assigning to 'char *' from 'int' [-Wint-conversion]
    while ((key_val = strsep(&amp;optarg_copy, ":")) != NULL) {
                    ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:195:15: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
        char *key = strsep(&amp;key_val, "=");
              ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:196:15: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
        char *val = strsep(&amp;key_val, "=");
              ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:221:19: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
            char *name = strsep(&amp;key, ".");
                  ^      ~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:223:19: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
            char *opt = strsep(&amp;key, ".");
                  ^     ~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:240:30: warning: call to undeclared function 'strnlen'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    const size_t optarg_sz = strnlen(optarg, 1024);
                             ^
../tools/cli_parse.c:249:17: warning: call to undeclared function 'strsep'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
        .name = strsep(&amp;optarg_copy, "="),
                ^
../tools/cli_parse.c:249:17: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        .name = strsep(&amp;optarg_copy, "="),
                ^~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:255:21: error: incompatible integer to pointer conversion assigning to 'char *' from 'int' [-Wint-conversion]
    while ((key_val = strsep(&amp;optarg_copy, ":")) != NULL) {
                    ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:256:21: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        const char *key = strsep(&amp;key_val, "=");
                    ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:257:21: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        const char *val = strsep(&amp;key_val, "=");
                    ^     ~~~~~~~~~~~~~~~~~~~~~

Reported by:	Michael Butler
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
../tools/cli_parse.c:194:21: error: incompatible integer to pointer conversion assigning to 'char *' from 'int' [-Wint-conversion]
    while ((key_val = strsep(&amp;optarg_copy, ":")) != NULL) {
                    ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:195:15: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
        char *key = strsep(&amp;key_val, "=");
              ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:196:15: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
        char *val = strsep(&amp;key_val, "=");
              ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:221:19: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
            char *name = strsep(&amp;key, ".");
                  ^      ~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:223:19: error: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion]
            char *opt = strsep(&amp;key, ".");
                  ^     ~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:240:30: warning: call to undeclared function 'strnlen'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    const size_t optarg_sz = strnlen(optarg, 1024);
                             ^
../tools/cli_parse.c:249:17: warning: call to undeclared function 'strsep'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
        .name = strsep(&amp;optarg_copy, "="),
                ^
../tools/cli_parse.c:249:17: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        .name = strsep(&amp;optarg_copy, "="),
                ^~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:255:21: error: incompatible integer to pointer conversion assigning to 'char *' from 'int' [-Wint-conversion]
    while ((key_val = strsep(&amp;optarg_copy, ":")) != NULL) {
                    ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:256:21: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        const char *key = strsep(&amp;key_val, "=");
                    ^     ~~~~~~~~~~~~~~~~~~~~~
../tools/cli_parse.c:257:21: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
        const char *val = strsep(&amp;key_val, "=");
                    ^     ~~~~~~~~~~~~~~~~~~~~~

Reported by:	Michael Butler
</pre>
</div>
</content>
</entry>
<entry>
<title>multimedia/vmaf: update to 3.0.0.r</title>
<updated>2023-11-21T17:22:09+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2023-11-20T19:15:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=a57fa8802ae73f4c933258ab3758d5aeba122ea4'/>
<id>a57fa8802ae73f4c933258ab3758d5aeba122ea4</id>
<content type='text'>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v3.0.0-rc
Reported by:	GitHub (watch releases)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v3.0.0-rc
Reported by:	GitHub (watch releases)
</pre>
</div>
</content>
</entry>
<entry>
<title>multimedia/vmaf: update to 1.5.2</title>
<updated>2020-07-02T00:54:08+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2020-07-02T00:54:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=6c807939df684267f5eaac09b70821de4f124b52'/>
<id>6c807939df684267f5eaac09b70821de4f124b52</id>
<content type='text'>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v1.5.2
Changes:	https://github.com/Netflix/vmaf/compare/v1.5.1...v1.5.2
Reported by:	GitHub (watch releases)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v1.5.2
Changes:	https://github.com/Netflix/vmaf/compare/v1.5.1...v1.5.2
Reported by:	GitHub (watch releases)
</pre>
</div>
</content>
</entry>
<entry>
<title>multimedia/vmaf: update to 1.5.1</title>
<updated>2020-02-29T15:53:56+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2020-02-29T15:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=386621d73ef9088f46bf9176c9956723599d97a1'/>
<id>386621d73ef9088f46bf9176c9956723599d97a1</id>
<content type='text'>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v1.5.1
Reported by:	GitHub (watch releases)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:	https://github.com/Netflix/vmaf/releases/tag/v1.5.1
Reported by:	GitHub (watch releases)
</pre>
</div>
</content>
</entry>
<entry>
<title>multimedia/vmaf: add new port</title>
<updated>2019-10-08T04:48:28+00:00</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2019-10-08T04:48:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=c52333c0efca79809e61831ec1dd3720ccb8378a'/>
<id>c52333c0efca79809e61831ec1dd3720ccb8378a</id>
<content type='text'>
VMAF is a perceptual video quality assessment algorithm developed by
Netflix. VMAF Development Kit (VDK) is a software package that
contains the VMAF algorithm implementation, as well as a set of tools
that allows a user to train and test a custom VMAF model.

https://github.com/Netflix/vmaf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
VMAF is a perceptual video quality assessment algorithm developed by
Netflix. VMAF Development Kit (VDK) is a software package that
contains the VMAF algorithm implementation, as well as a set of tools
that allows a user to train and test a custom VMAF model.

https://github.com/Netflix/vmaf
</pre>
</div>
</content>
</entry>
</feed>
