Skip to content
Snippets Groups Projects
Commit 9772f309 authored by Zhao Zhili's avatar Zhao Zhili Committed by Rémi Denis-Courmont
Browse files

aom: fix compilation with older packages

AOM_USAGE_ALL_INTRA isn't being defined while AOM_USAGE_GOOD_QUALITY is, refs
https://aomedia.googlesource.com/aom/+/refs/tags/v3.0.0/aom/aom_encoder.h#1001
parent 99f37214
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,11 @@
#ifndef AOM_USAGE_GOOD_QUALITY
# define AOM_USAGE_GOOD_QUALITY 0
#endif
#ifndef AOM_USAGE_REALTIME
# define AOM_USAGE_REALTIME 1
#endif
#ifndef AOM_USAGE_ALL_INTRA
# define AOM_USAGE_ALL_INTRA 2
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment