Draft
Add a=sendonly to AES67 SDP for hardware receiver compatibility#5
a=sendonly to AES67 SDP for hardware receiver compatibility#5Conversation
Agent-Logs-Url: https://github.com/silly82/go-radio-streamer/sessions/73f8e6df-17a7-4b66-a5ed-61edb18dfe5b Co-authored-by: silly82 <527175+silly82@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix software streaming receiver issues
Add Apr 7, 2026
a=sendonly to AES67 SDP for hardware receiver compatibility
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hardware AES67 receivers (e.g. Nota 142) strictly enforce SDP compliance per AES67-2018 and reject sender sessions missing the
a=sendonlydirection attribute. Software receivers (VLC, etc.) tolerate its absence, which is why only hardware receivers were affected.Changes
pkg/aes67/sdp.go— Addeda=sendonlyto the media section ofBuildSDP(), immediately after them=audioline:pkg/aes67/sdp_test.go— Addeda=sendonlytoTestBuildSDP_Defaultsexpected output; addedTestBuildSDP_Sendonlyto assert the attribute appears in the media section (not the session section).README.md— Added hardware receiver troubleshooting section covering the Nota 142 and PTP clock configuration.Original prompt
Created from VS Code.