Add distance and amplitude culling #57

Open
opened 2025-12-17 02:56:12 +00:00 by siennathesane · 0 comments
siennathesane commented 2025-12-17 02:56:12 +00:00 (Migrated from github.com)

Description

Early culling for sources beyond max distance or below audibility threshold.

Acceptance Criteria

Scenario: Inaudible sources are culled
  Given audio sources at various distances and amplitudes
  When culling is applied
  Then sources beyond max distance should be culled
  And sources below audibility threshold should be culled
  And audible sources should remain

Technical Notes

  • Implement distance culling (beyond max_distance)
  • Implement amplitude culling (below threshold)
  • Make thresholds configurable
  • Run before priority scoring for efficiency
## Description Early culling for sources beyond max distance or below audibility threshold. ## Acceptance Criteria ```gherkin Scenario: Inaudible sources are culled Given audio sources at various distances and amplitudes When culling is applied Then sources beyond max distance should be culled And sources below audibility threshold should be culled And audible sources should remain ``` ## Technical Notes - Implement distance culling (beyond max_distance) - Implement amplitude culling (below threshold) - Make thresholds configurable - Run before priority scoring for efficiency
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: studio/marathon#57