Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed mpeg7 cuda signature filter memory leak #2108

Merged
merged 1 commit into from
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require (
github.com/golang/protobuf v1.5.2
github.com/jaypipes/ghw v0.7.0
github.com/livepeer/livepeer-data v0.2.0
github.com/livepeer/lpms v0.0.0-20211112122814-e2ac92166d0c
github.com/livepeer/lpms v0.0.0-20211118135113-46f7030c62d9
github.com/livepeer/m3u8 v0.11.1
github.com/mattn/go-sqlite3 v1.11.0
github.com/olekukonko/tablewriter v0.0.5
Expand Down
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,8 @@ github.com/livepeer/joy4 v0.1.2-0.20191121080656-b2fea45cbded h1:ZQlvR5RB4nfT+cO
github.com/livepeer/joy4 v0.1.2-0.20191121080656-b2fea45cbded/go.mod h1:xkDdm+akniYxVT9KW1Y2Y7Hso6aW+rZObz3nrA9yTHw=
github.com/livepeer/livepeer-data v0.2.0 h1:8ELEri/sWd6fAHT3anAgoKe9Z+XgbW0oLg5qODdhvm8=
github.com/livepeer/livepeer-data v0.2.0/go.mod h1:vkW1PJ24gOJgx1hHUo07cXkR1b409n+dGpyWJsHKI3s=
github.com/livepeer/lpms v0.0.0-20211022165630-1d91ede415fa h1:tgEYFcJIUbpgEDXYHYEVVklG+QUVGZwg4KHC9OcsRyo=
github.com/livepeer/lpms v0.0.0-20211022165630-1d91ede415fa/go.mod h1:iIvqFRRSIcouTWFheH2/TeDAq7xTVOJNR0eAS84o754=
github.com/livepeer/lpms v0.0.0-20211112122814-e2ac92166d0c h1:4Ivom0fVEPL3henXLUrvP+teYu2Su9JJMwmAwJCjQfI=
github.com/livepeer/lpms v0.0.0-20211112122814-e2ac92166d0c/go.mod h1:iIvqFRRSIcouTWFheH2/TeDAq7xTVOJNR0eAS84o754=
github.com/livepeer/lpms v0.0.0-20211118135113-46f7030c62d9 h1:lIb6ktT7+GSR1RyjT1tovTJCETa/lf/G+SmHe3Hlk5I=
github.com/livepeer/lpms v0.0.0-20211118135113-46f7030c62d9/go.mod h1:iIvqFRRSIcouTWFheH2/TeDAq7xTVOJNR0eAS84o754=
github.com/livepeer/m3u8 v0.11.1 h1:VkUJzfNTyjy9mqsgp5JPvouwna8wGZMvd/gAfT5FinU=
github.com/livepeer/m3u8 v0.11.1/go.mod h1:IUqAtwWPAG2CblfQa4SVzTQoDcEMPyfNOaBSxqHMS04=
github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
Expand Down
2 changes: 1 addition & 1 deletion install_ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ fi
if [ ! -e "$ROOT/ffmpeg/libavcodec/libavcodec.a" ]; then
git clone https://github.com/livepeer/FFmpeg.git "$ROOT/ffmpeg" || echo "FFmpeg dir already exists"
cd "$ROOT/ffmpeg"
git checkout 6f1935620a718c50e59a776c8e3b752985c73b7f
git checkout 682c4189d8364867bcc49f9749e04b27dc37cded
./configure ${TARGET_OS:-} --fatal-warnings \
--disable-programs --disable-doc --disable-sdl2 --disable-iconv \
--disable-muxers --disable-demuxers --disable-parsers --disable-protocols \
Expand Down