libde265 and libheif

Media Server uses these third-party libraries to provide support for HEIC images.

The libraries distributed with Media Server were compiled using the source code available from:

libde265

Windows

Built with the default cmake options.

Linux

Built by using the following command.

./configure --disable-static --disable-dec265 --disable-sherlock265 && make && make install

libheif

Windows

Built using cmake with the options:

WITH_AOM=false
WITH_DAV1D=false
WITH_EXAMPLES=false
WITH_RAV1E=false
WITH_X265=false
WITH_LIBDE256=true
LIBDE265_INCLUDE_DIR=<set appropriately>
LIBDE265_LIBRARY=<set appropriately>

Linux

Built by using the following command.

libde265_CFLAGS=-I<set appropriately> libde265_LIBS="-L<set appropriately> -lde265" LDFLAGS="-Wl,-rpath,$$ORIGIN" ./configure --disable-static --disable-go --disable-examples --disable-rav1e --disable-aom --disable-x265 --disable-gdk-pixbuf && make && make install