Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit a40f19c

Browse files
committed
Bug 1660336 Provide libva wrapper to run Firefox on systems without libva installed, r=jya
Differential Revision: https://phabricator.services.mozilla.com/D94650
1 parent d27e30a commit a40f19c

3 files changed

Lines changed: 493 additions & 0 deletions

File tree

media/ffvpx/moz.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ DIRS += [
1111
'libavutil',
1212
'libavcodec'
1313
]
14+
15+
if CONFIG['MOZ_WAYLAND']:
16+
DIRS += [
17+
'mozva',
18+
]

media/ffvpx/mozva/moz.build

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2+
# vim: set filetype=python:
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6+
7+
SOURCES += [
8+
'mozva.cpp',
9+
]
10+
11+
SharedLibrary('mozva')

0 commit comments

Comments
 (0)