Home
last modified time | relevance | path

Searched refs:vpx_codec_version (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx/
Dvpx_codec.h241 int vpx_codec_version(void);
250 #define vpx_codec_version_major() ((vpx_codec_version() >> 16) & 0xff)
253 #define vpx_codec_version_minor() ((vpx_codec_version() >> 8) & 0xff)
256 #define vpx_codec_version_patch() ((vpx_codec_version() >> 0) & 0xff)
Dexports_com9 text vpx_codec_version
/external/libvpx/libvpx/vpx/src/
Dvpx_codec.c23 int vpx_codec_version(void) { return VERSION_PACKED; } in vpx_codec_version() function