Skip to content
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 .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Test
shell: bash
run: PATH="/github/home/compiled/bin:$PATH" go test --tags=nvidia -coverprofile cover.out ./...
run: PATH="/github/home/compiled/bin:$PATH" go test -coverprofile cover.out ./...

- name: Upload coverage reports
uses: codecov/codecov-action@v4
Expand Down
2 changes: 1 addition & 1 deletion ffmpeg/transcoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ int transcode_init(struct transcode_thread *h, input_params *inp,

if (!inp) LPMS_ERR(transcode_cleanup, "Missing input params")

AVDictionary **demuxer_opts;
AVDictionary **demuxer_opts = NULL;
if (inp->demuxer.opts) demuxer_opts = &inp->demuxer.opts;

// by default we re-use decoder between segments of same stream
Expand Down