Registry / other / aom
library3.13.1vcpkgunverified

AV1 codec library for encoding and decoding AV1 video streams.

vcpkg install aom
INSTALL
IMPORT
SIG · AOM
A
aom
othercppv3.13.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

aom/aom_decoder.h
#include <aom/aom_decoder.h>

Initialize an AV1 decoder context

#include "aom/aom_decoder.h" #include "aom/aomdx.h" #include <iostream> int main() { aom_codec_dec_cfg_t cfg = {0}; aom_codec_ctx_t ctx; // Initialize AV1 decoder if (aom_codec_dec_init(&ctx, aom_codec_av1_dx(), &cfg, 0) != AOM_CODEC_OK) { std::cerr << "Failed to initialize AV1 decoder" << std::endl; return 1; } std::cout << "AV1 decoder initialized successfully" << std::endl; aom_codec_destroy(&ctx); return 0; }
Debug
Known issues
gotchaAOM requires linking against the aom library and may need platform-specific optimizations (e.g., SIMD) enabled at build time.
fix
Ensure you link with aom::aom and build with appropriate flags for your CPU architecture.
affects: *
Upgrade
Version history
3.13.1latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
16
Meta
1
OpenAI (training)
1
Resources

No resource links recorded.

aom — pip install aom · libregistry