Skip to content

Commit

Permalink
use go-audio/riff instead of mattetti/audio/riff
Browse files Browse the repository at this point in the history
  • Loading branch information
mattetti committed Apr 4, 2019
1 parent de841e6 commit cc32323
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cue_chunk.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/binary"
"fmt"

"github.com/mattetti/audio/riff"
"github.com/go-audio/riff"
)

// CuePoint defines an offset which marks a noteworthy sections of the audio
Expand Down
2 changes: 1 addition & 1 deletion decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/go-audio/audio"
"github.com/mattetti/audio/riff"
"github.com/go-audio/riff"
)

var (
Expand Down
3 changes: 1 addition & 2 deletions encoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import (
"os"

"github.com/go-audio/audio"

"github.com/mattetti/audio/riff"
"github.com/go-audio/riff"
)

// Encoder encodes LPCM data into a wav containter.
Expand Down
7 changes: 4 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
module github.com/go-audio/wav

go 1.12

require (
github.com/go-audio/aiff v0.0.0-20180403003018-6c3a8a6aff12
github.com/go-audio/audio v0.0.0-20180206231410-b697a35b5608
github.com/mattetti/audio v0.0.0-20180912171649-01576cde1f21
github.com/go-audio/audio v1.0.0
github.com/go-audio/riff v1.0.0
)
9 changes: 4 additions & 5 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
github.com/go-audio/aiff v0.0.0-20180403003018-6c3a8a6aff12 h1:gjXrZYhuZMD7np1SgUkYWWRCsDN3YjNTMa8/IcCEtE0=
github.com/go-audio/aiff v0.0.0-20180403003018-6c3a8a6aff12/go.mod h1:AMSAp6W1zd0koOdX6QDgGIuBDTUvLa2SLQtm7d9eM3c=
github.com/go-audio/audio v0.0.0-20180206231410-b697a35b5608/go.mod h1:6uAu0+H2lHkwdGsAY+j2wHPNPpPoeg5AaEFh9FlA+Zs=
github.com/mattetti/audio v0.0.0-20180912171649-01576cde1f21 h1:Hc1iKlyxNHp3CV59G2E/qabUkHvEwOIJxDK0CJ7CRjA=
github.com/mattetti/audio v0.0.0-20180912171649-01576cde1f21/go.mod h1:LlQmBGkOuV/SKzEDXBPKauvN2UqCgzXO2XjecTGj40s=
github.com/go-audio/audio v1.0.0 h1:zS9vebldgbQqktK4H0lUqWrG8P0NxCJVqcj7ZpNnwd4=
github.com/go-audio/audio v1.0.0/go.mod h1:6uAu0+H2lHkwdGsAY+j2wHPNPpPoeg5AaEFh9FlA+Zs=
github.com/go-audio/riff v1.0.0 h1:d8iCGbDvox9BfLagY94fBynxSPHO80LmZCaOsmKxokA=
github.com/go-audio/riff v1.0.0/go.mod h1:l3cQwc85y79NQFCRB7TiPoNiaijp6q8Z0Uv38rVG498=
2 changes: 1 addition & 1 deletion list_chunk.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/binary"
"fmt"

"github.com/mattetti/audio/riff"
"github.com/go-audio/riff"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion smpl_chunk.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/binary"
"fmt"

"github.com/mattetti/audio/riff"
"github.com/go-audio/riff"
)

// smpl chunk is documented here:
Expand Down
6 changes: 0 additions & 6 deletions vendor/modules.txt

This file was deleted.

0 comments on commit cc32323

Please sign in to comment.