AVSAMPLEFMTFLTP
AVSAMPLEFMTFLTP, in FFmpeg terminology more commonly written as AV_SAMPLE_FMT_FLTP, denotes the planar 32-bit floating-point audio sample format. It is part of FFmpeg’s libavutil and is used to describe how audio samples are stored and accessed in memory.
The FLTP designation indicates planar storage: one separate buffer (plane) per channel. For a multi-channel audio
Each sample in AV_SAMPLE_FMT_FLTP is a 32-bit floating-point value. In practice, samples are typically normalized around
In FFmpeg APIs, a frame using AV_SAMPLE_FMT_FLTP will expose one data plane per channel through the frame’s
Related FFmpeg sample formats include AV_SAMPLE_FMT_FLT (packed 32-bit float), AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL and their corresponding planar