[vlc-commits] [Git][videolan/vlc][master] aom: fix compilation with older dev packages
    Hugo Beauzée-Luyssen (@chouquette) 
    gitlab at videolan.org
       
    Thu Jan 13 19:20:09 UTC 2022
    
    
  
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
d70b37f3 by Lyndon Brown at 2022-01-13T18:34:42+00:00
aom: fix compilation with older dev packages
(to fix builds on Debian stable, as requested by @tguillem in !1141)
- - - - -
1 changed file:
- modules/codec/aom.c
Changes:
=====================================
modules/codec/aom.c
=====================================
@@ -44,6 +44,12 @@
 
 #include "../packetizer/iso_color_tables.h"
 
+#ifndef AOM_USAGE_GOOD_QUALITY
+# define AOM_USAGE_GOOD_QUALITY 0
+# define AOM_USAGE_REALTIME 1
+# define AOM_USAGE_ALL_INTRA 2
+#endif
+
 /****************************************************************************
  * Local prototypes
  ****************************************************************************/
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d70b37f39eb18ea70f49a968f8670baba72bd7b0
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d70b37f39eb18ea70f49a968f8670baba72bd7b0
You're receiving this email because of your account on code.videolan.org.
    
    
More information about the vlc-commits
mailing list