diff options
author | trav90 <travawine@palemoon.org> | 2018-10-15 22:09:04 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-10-15 22:09:04 -0500 |
commit | 9aea199da0312640208f3c0a6d47951fb9975984 (patch) | |
tree | e9653e1ffabec0cb476315da97ccd22f8db69734 /dom/media/platforms/moz.build | |
parent | 99ed16064aed08591222a01ac0fdcebab3342dd8 (diff) | |
download | UXP-9aea199da0312640208f3c0a6d47951fb9975984.tar UXP-9aea199da0312640208f3c0a6d47951fb9975984.tar.gz UXP-9aea199da0312640208f3c0a6d47951fb9975984.tar.lz UXP-9aea199da0312640208f3c0a6d47951fb9975984.tar.xz UXP-9aea199da0312640208f3c0a6d47951fb9975984.zip |
Add AOMDecoder
Port the VPXDecoder interface to libaom which uses the same api with the names changed.
Diffstat (limited to 'dom/media/platforms/moz.build')
-rw-r--r-- | dom/media/platforms/moz.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/media/platforms/moz.build b/dom/media/platforms/moz.build index 3fb0cc842..be13d31c4 100644 --- a/dom/media/platforms/moz.build +++ b/dom/media/platforms/moz.build @@ -55,6 +55,14 @@ if CONFIG['MOZ_FFMPEG']: 'ffmpeg', ] +if CONFIG['MOZ_AV1']: + EXPORTS += [ + 'agnostic/AOMDecoder.h', + ] + UNIFIED_SOURCES += [ + 'agnostic/AOMDecoder.cpp', + ] + if CONFIG['MOZ_APPLEMEDIA']: EXPORTS += [ 'apple/AppleDecoderModule.h', |