av: fixed remaining import errors

This commit is contained in:
Saxon 2019-03-28 11:35:32 +10:30
parent de172bd0a1
commit da54f7af27
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ import (
"io/ioutil"
"log"
"bitbucket.org/ausocean/av/audio/adpcm"
"bitbucket.org/ausocean/av/codec/adpcm"
)
// This program accepts an input file encoded in adpcm and outputs a decoded pcm file.

View File

@ -34,7 +34,7 @@ import (
"io/ioutil"
"log"
"bitbucket.org/ausocean/av/audio/adpcm"
"bitbucket.org/ausocean/av/codec/adpcm"
)
// This program accepts an input pcm file and outputs an encoded adpcm file.

View File

@ -40,7 +40,7 @@ import (
"io"
"os"
"bitbucket.org/ausocean/av/stream/mts"
"bitbucket.org/ausocean/av/container/mts"
"github.com/Comcast/gots/packet"
)