FAAD2-2.11.2

Introduction to FAAD2

FAAD2 provides a freeware AAC decoder.

FAAD2 Dependencies

Required

CMake

Installation of FAAD2

Install FAAD2 by running the following commands:

mkdir build &&
cd    build &&

cmake -D CMAKE_INSTALL_PREFIX=/usr   \
      -D CMAKE_BUILD_TYPE=Release    \
      -D CMAKE_SKIP_INSTALL_RPATH=ON \
      -W no-dev -G Ninja .. &&
ninja

Now, as the root user:

ninja install

Command Explanations

-D CMAKE_SKIP_INSTALL_RPATH=ON: This switch makes cmake remove hardcoded library search paths (rpath) when installing a binary executable file or a shared library. This package does not need rpath once it's installed into the standard location, and rpath may sometimes cause unwanted effects or even security issues.

Contents

Installed Programs: faad
Installed Libraries: libfaad_drm and libfaad
Installed Directories: None

Short Descriptions

faad

decodes AAC files

libfaad_drm

containts functions for decoding AAC files that are restricted by DRM

libfaad

provides functions for decoding AAC files