1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 05:17:39 +03:00

sync with BE requested by AI Auto Agent

This commit is contained in:
Anton Afanasyeu
2026-06-05 12:54:41 +02:00
parent c5857e65f6
commit 617670ad96
11 changed files with 650 additions and 90 deletions

12
scripts/validate_opus_speex.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# Unit-test baseline for Opus/Speex negotiation and stream protection (task 3).
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT"
echo "== Opus/Speex + stream protection unit tests =="
./gradlew :app:testDebugUnitTest \
--tests 'com.foxx.androidcast.network.transport.StreamProtectionNegotiatorTest' \
--tests 'com.foxx.androidcast.media.AudioNegotiatorTest' \
--tests 'com.foxx.androidcast.media.codec.*' \
"$@"
echo "== OK =="