• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #pragma once
2 
3 #include <aom/aomcx.h>
4 
5 #include <stdlib.h>
6 
aom_codec_av1_cx(void)7 aom_codec_iface_t *aom_codec_av1_cx(void) {
8   // external/libaom doesn't include encoder sources, which makes this function
9   // not available. Defined here to make it build, but ensure it fails fast if
10   // called in runtime.
11   abort();
12 }
13