rtp: use uint64_t for ts_arrive and fix video jitter calculation #1627
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Alpine (musl) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: alpine | |
env: | |
CMAKE_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install devel tools | |
run: | | |
apk add musl-dev git cmake gcc make binutils openssl-dev linux-headers zlib-dev ninja | |
- name: make | |
run: | | |
cmake -B build -DCMAKE_C_FLAGS="-Werror" | |
cmake --build build -j |