Skip to content

Commit

Permalink
DEBUGGING
Browse files Browse the repository at this point in the history
  • Loading branch information
j0sh committed Sep 6, 2024
1 parent beda797 commit f27bb55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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 -coverprofile cover.out ./...
run: PATH="/github/home/compiled/bin:$PATH" go test -v -coverprofile cover.out ./...

- name: Upload coverage reports
uses: codecov/codecov-action@v4
Expand Down
1 change: 1 addition & 0 deletions ffmpeg/encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ int open_output(struct output_ctx *octx, struct input_ctx *ictx)
AVCodecContext *vc = NULL;

// open muxer
fprintf(stderr, "JOSH muxer name %s fname %s\n", octx->muxer->name, octx->fname);
fmt = av_guess_format(octx->muxer->name, octx->fname, NULL);
if (!fmt) LPMS_ERR(open_output_err, "Unable to guess output format");
ret = avformat_alloc_output_context2(&oc, fmt, NULL, octx->fname);
Expand Down

0 comments on commit f27bb55

Please sign in to comment.