mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 02:26:38 -04:00
24 lines
806 B
C++
24 lines
806 B
C++
--- media/base/libaom_thread_wrapper.cc.orig 2024-03-22 08:19:40 UTC
|
|
+++ media/base/libaom_thread_wrapper.cc
|
|
@@ -5,17 +5,21 @@
|
|
#include "base/logging.h"
|
|
#include "media/base/codec_worker_impl.h"
|
|
#include "media/base/libvpx_thread_wrapper.h"
|
|
+#if !BUILDFLAG(IS_BSD)
|
|
#include "third_party/libaom/source/libaom/aom_util/aom_thread.h"
|
|
+#endif
|
|
|
|
namespace media {
|
|
|
|
void InitLibAomThreadWrapper() {
|
|
+#if !BUILDFLAG(IS_BSD)
|
|
const AVxWorkerInterface interface =
|
|
CodecWorkerImpl<AVxWorkerInterface, AVxWorkerImpl, AVxWorker,
|
|
AVxWorkerStatus, AVX_WORKER_STATUS_NOT_OK,
|
|
AVX_WORKER_STATUS_OK,
|
|
AVX_WORKER_STATUS_WORKING>::GetCodecWorkerInterface();
|
|
CHECK(aom_set_worker_interface(&interface));
|
|
+#endif
|
|
}
|
|
|
|
} // namespace media
|