https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277021

--- Comment #84 from Tatsuki Makino <tatsuki_mak...@hotmail.com> ---
The problem with aom-related symbols (ld.lld: warning: undefined symbol: aom_*)
could be fixed with www/firefox/files/patch-bug1559213 modification.

This file seems to be an attempt to use libaom in conjunction with the
activation of MOZ_AV1.
If so, we would have to add the libaom flags and libraries at the same time in
patch for  media/ffvpx/libavcodec/moz.build.
Like this :)

+    if CONFIG["MOZ_SYSTEM_AV1"]:
+        CFLAGS += CONFIG['MOZ_SYSTEM_LIBDAV1D_CFLAGS']
+        OS_LIBS += CONFIG['MOZ_SYSTEM_LIBDAV1D_LIBS']
+        CFLAGS += CONFIG['MOZ_SYSTEM_LIBAOM_CFLAGS']
+        OS_LIBS += CONFIG['MOZ_SYSTEM_LIBAOM_LIBS']
+    else:
+        USE_LIBS += [
+            'dav1d',
+            'media_libdav1d_asm',
+            'aom',
+        ]

But, this is my fantasy. I have not tested it yet :)

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to