### Waf install command Source: https://github.com/freescale/libimxvpuapi/blob/master/README.md Command to install the built library, headers, and pkg-config file. ```bash ./waf install ``` -------------------------------- ### GStreamer pipeline example causing excessive framebuffers Source: https://github.com/freescale/libimxvpuapi/blob/master/README.md This GStreamer pipeline can lead to excessive framebuffer usage if the video sink is slow to start, causing the queue to buffer too many frames. ```bash gst-launch-1.0 filesrc location=test-vp8.mkv ! matroskademux ! imxvpudec_vp8 ! queue ! autovideosink ``` -------------------------------- ### Waf configure command Source: https://github.com/freescale/libimxvpuapi/blob/master/README.md Command to configure the build system using waf, specifying installation prefix, i.MX platform, and sysroot path. ```bash ./waf configure --prefix=PREFIX --imx-platform=IMX_PLATFORM --sysroot-path=SYSROOT ``` -------------------------------- ### Waf build command Source: https://github.com/freescale/libimxvpuapi/blob/master/README.md Command to build the library after configuration. ```bash ./waf ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.