Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
feat(elements): vpx decoder (#79)
Browse files Browse the repository at this point in the history
* feat(elements): vpx decoder

* add libvpx to ci

* support close
  • Loading branch information
tarrencev authored Sep 30, 2020
1 parent dcf8d8a commit 1a81952
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 21 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: install deps
run: |
sudo apt-get update -qq \
&& sudo apt-get install --no-install-recommends -y \
libvpx-dev
- name: golangci-lint
uses: golangci/golangci-lint-action@v1
env:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: install deps
run: |
sudo apt-get update -qq \
&& sudo apt-get install --no-install-recommends -y \
libvpx-dev
- name: test
run: make test

Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.13

require (
github.com/at-wat/ebml-go v0.11.0
github.com/dialup-inc/ascii v0.0.0-20191031215043-07c3fdeef4e5
github.com/golang/protobuf v1.4.2
github.com/pion/ion-sfu v1.0.19
github.com/pion/rtcp v1.2.4
Expand All @@ -13,6 +14,7 @@ require (
github.com/rs/zerolog v1.20.0
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.6.1
github.com/xlab/libvpx-go v0.0.0-20200321114045-4c41f8a7acef
golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136
golang.org/x/image v0.0.0-20200801110659-972c09e46d76
google.golang.org/grpc v1.32.0
Expand Down
Loading

0 comments on commit 1a81952

Please # to comment.