av: fixed imports

This commit is contained in:
Saxon 2019-03-25 11:51:03 +10:30
parent 3a736172ee
commit 5366eca2f2
12 changed files with 23 additions and 23 deletions

View File

@ -36,9 +36,9 @@ import (
"strings" "strings"
"time" "time"
"bitbucket.org/ausocean/av/container/mts"
"bitbucket.org/ausocean/av/container/mts/meta"
"bitbucket.org/ausocean/av/revid" "bitbucket.org/ausocean/av/revid"
"bitbucket.org/ausocean/av/stream/mts"
"bitbucket.org/ausocean/av/stream/mts/meta"
"bitbucket.org/ausocean/iot/pi/netsender" "bitbucket.org/ausocean/iot/pi/netsender"
"bitbucket.org/ausocean/iot/pi/sds" "bitbucket.org/ausocean/iot/pi/sds"
"bitbucket.org/ausocean/iot/pi/smartlogger" "bitbucket.org/ausocean/iot/pi/smartlogger"

View File

@ -35,7 +35,7 @@ import (
"io" "io"
"time" "time"
"bitbucket.org/ausocean/av/stream" "bitbucket.org/ausocean/av/container"
) )
var noDelay = make(chan time.Time) var noDelay = make(chan time.Time)

View File

@ -32,9 +32,9 @@ import (
"io" "io"
"time" "time"
"bitbucket.org/ausocean/av/stream/mts/meta" "bitbucket.org/ausocean/av/container/mts/meta"
"bitbucket.org/ausocean/av/stream/mts/pes" "bitbucket.org/ausocean/av/container/mts/pes"
"bitbucket.org/ausocean/av/stream/mts/psi" "bitbucket.org/ausocean/av/container/mts/psi"
) )
// Some common manifestations of PSI // Some common manifestations of PSI

View File

@ -31,8 +31,8 @@ import (
"bytes" "bytes"
"testing" "testing"
"bitbucket.org/ausocean/av/stream/mts/meta" "bitbucket.org/ausocean/av/container/mts/meta"
"bitbucket.org/ausocean/av/stream/mts/psi" "bitbucket.org/ausocean/av/container/mts/psi"
) )
const ( const (

View File

@ -39,7 +39,7 @@ import (
"strconv" "strconv"
"time" "time"
"bitbucket.org/ausocean/av/rtmp/amf" "bitbucket.org/ausocean/av/protocol/rtmp/amf"
) )
// Conn represents an RTMP connection. // Conn represents an RTMP connection.

View File

@ -38,7 +38,7 @@ import (
"encoding/binary" "encoding/binary"
"io" "io"
"bitbucket.org/ausocean/av/rtmp/amf" "bitbucket.org/ausocean/av/protocol/rtmp/amf"
) )
// Packet types. // Packet types.

View File

@ -43,7 +43,7 @@ import (
"strconv" "strconv"
"time" "time"
"bitbucket.org/ausocean/av/rtmp/amf" "bitbucket.org/ausocean/av/protocol/rtmp/amf"
) )
const ( const (

View File

@ -38,8 +38,8 @@ import (
"testing" "testing"
"time" "time"
"bitbucket.org/ausocean/av/stream/flv" "bitbucket.org/ausocean/av/codec/lex"
"bitbucket.org/ausocean/av/stream/lex" "bitbucket.org/ausocean/av/container/flv"
) )
const ( const (

View File

@ -40,10 +40,10 @@ import (
"sync" "sync"
"time" "time"
"bitbucket.org/ausocean/av/stream" "bitbucket.org/ausocean/av/codec/lex"
"bitbucket.org/ausocean/av/stream/flv" "bitbucket.org/ausocean/av/container"
"bitbucket.org/ausocean/av/stream/lex" "bitbucket.org/ausocean/av/container/flv"
"bitbucket.org/ausocean/av/stream/mts" "bitbucket.org/ausocean/av/container/mts"
"bitbucket.org/ausocean/iot/pi/netsender" "bitbucket.org/ausocean/iot/pi/netsender"
"bitbucket.org/ausocean/utils/logger" "bitbucket.org/ausocean/utils/logger"
"bitbucket.org/ausocean/utils/ring" "bitbucket.org/ausocean/utils/ring"

View File

@ -36,9 +36,9 @@ import (
"github.com/Comcast/gots/packet" "github.com/Comcast/gots/packet"
"bitbucket.org/ausocean/av/rtmp" "bitbucket.org/ausocean/av/container/mts"
"bitbucket.org/ausocean/av/stream/mts" "bitbucket.org/ausocean/av/protocol/rtmp"
"bitbucket.org/ausocean/av/stream/rtp" "bitbucket.org/ausocean/av/protocol/rtp"
"bitbucket.org/ausocean/iot/pi/netsender" "bitbucket.org/ausocean/iot/pi/netsender"
"bitbucket.org/ausocean/utils/logger" "bitbucket.org/ausocean/utils/logger"
"bitbucket.org/ausocean/utils/ring" "bitbucket.org/ausocean/utils/ring"

View File

@ -37,8 +37,8 @@ import (
"github.com/Comcast/gots/packet" "github.com/Comcast/gots/packet"
"github.com/Comcast/gots/pes" "github.com/Comcast/gots/pes"
"bitbucket.org/ausocean/av/stream/mts" "bitbucket.org/ausocean/av/container/mts"
"bitbucket.org/ausocean/av/stream/mts/meta" "bitbucket.org/ausocean/av/container/mts/meta"
"bitbucket.org/ausocean/utils/logger" "bitbucket.org/ausocean/utils/logger"
"bitbucket.org/ausocean/utils/ring" "bitbucket.org/ausocean/utils/ring"
) )