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

Increase mod_twilio_stream audio buffer to 60s #653

Closed
wants to merge 2 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ jobs:
docker compose run -e DATABASE_NAME=opensips_${{ inputs.context }}_test gateway-bootstrap create_db ${{ inputs.context }}
docker compose up --wait -d ${{ inputs.context }} media_proxy freeswitch freeswitch_event_logger switch-app redis testing

- name: Setup upterm session
uses: lhotari/action-upterm@v1

- name: Run ${{ inputs.context }} Tests
run: |
docker compose exec testing ./tests.sh ./tests/${{ inputs.context }}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

#include "lockfree/lockfree.hpp"

// 5s of L16 8Khz audio
#define MAX_AUDIO_BUFFER 5 * 2 * 8000
// 60s of L16 8Khz audio
#define MAX_AUDIO_BUFFER 60 * 2 * 8000

class AudioPipe
{
Expand Down
Loading