[vlc-commits] [Git][videolan/vlc][master] aom: fix compilation with older packages

Rémi Denis-Courmont (@Courmisch) gitlab at videolan.org
Sun Jan 23 12:36:59 UTC 2022



Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC


Commits:
9772f309 by Zhao Zhili at 2022-01-23T10:37:42+00:00
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

- - - - -


1 changed file:

- modules/codec/aom.c


Changes:

=====================================
modules/codec/aom.c
=====================================
@@ -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
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/9772f309db7988096e611a548fecbddd0646f66f

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/9772f309db7988096e611a548fecbddd0646f66f
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list