diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/media/ffmpeg/exec_nowasm.go | 2 | ||||
-rw-r--r-- | internal/media/ffmpeg/ffmpeg.go | 2 | ||||
-rw-r--r-- | internal/media/ffmpeg/ffmpeg_nowasm.go | 2 | ||||
-rw-r--r-- | internal/media/ffmpeg/ffprobe.go | 2 | ||||
-rw-r--r-- | internal/media/ffmpeg/ffprobe_nowasm.go | 2 | ||||
-rw-r--r-- | internal/media/ffmpeg/wasm.go | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/internal/media/ffmpeg/exec_nowasm.go b/internal/media/ffmpeg/exec_nowasm.go index 140cec5bc..4a4646854 100644 --- a/internal/media/ffmpeg/exec_nowasm.go +++ b/internal/media/ffmpeg/exec_nowasm.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build nowasm +//go:build nowasmffmpeg || nowasm package ffmpeg diff --git a/internal/media/ffmpeg/ffmpeg.go b/internal/media/ffmpeg/ffmpeg.go index b978201c1..ae88c1e9a 100644 --- a/internal/media/ffmpeg/ffmpeg.go +++ b/internal/media/ffmpeg/ffmpeg.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build !nowasm +//go:build !nowasmffmpeg && !nowasm package ffmpeg diff --git a/internal/media/ffmpeg/ffmpeg_nowasm.go b/internal/media/ffmpeg/ffmpeg_nowasm.go index 6f528da1a..eed955ae1 100644 --- a/internal/media/ffmpeg/ffmpeg_nowasm.go +++ b/internal/media/ffmpeg/ffmpeg_nowasm.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build nowasm +//go:build nowasmffmpeg || nowasm package ffmpeg diff --git a/internal/media/ffmpeg/ffprobe.go b/internal/media/ffmpeg/ffprobe.go index 410935d9c..bf166b12b 100644 --- a/internal/media/ffmpeg/ffprobe.go +++ b/internal/media/ffmpeg/ffprobe.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build !nowasm +//go:build !nowasmffmpeg && !nowasm package ffmpeg diff --git a/internal/media/ffmpeg/ffprobe_nowasm.go b/internal/media/ffmpeg/ffprobe_nowasm.go index 122fb53f4..bc42ea726 100644 --- a/internal/media/ffmpeg/ffprobe_nowasm.go +++ b/internal/media/ffmpeg/ffprobe_nowasm.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build nowasm +//go:build nowasmffmpeg || nowasm package ffmpeg diff --git a/internal/media/ffmpeg/wasm.go b/internal/media/ffmpeg/wasm.go index a5612ba14..a22431fdd 100644 --- a/internal/media/ffmpeg/wasm.go +++ b/internal/media/ffmpeg/wasm.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build !nowasm +//go:build !nowasmffmpeg && !nowasm package ffmpeg |