package aac import ( "context" "fmt" "io" "github.com/jan/fm-rds-tx/internal/ingest" "github.com/jan/fm-rds-tx/internal/ingest/decoder" ) type Decoder struct{} func New() *Decoder { return &Decoder{} } func (d *Decoder) Name() string { return "aac-native" } func (d *Decoder) DecodeStream(_ context.Context, _ io.Reader, _ decoder.StreamMeta, _ func(ingest.PCMChunk) error) error { return fmt.Errorf("%w: aac native decoder not wired yet", decoder.ErrUnsupported) }