codec/h264/h264dec: fixed import paths

This commit is contained in:
Saxon 2019-07-19 15:44:45 +09:30
parent 5d31c49360
commit 3914bc1422
10 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
package h264dec package h264dec
import ( import (
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -1,7 +1,7 @@
package h264dec package h264dec
import ( import (
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -16,7 +16,7 @@ package h264dec
import ( import (
"math" "math"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -15,7 +15,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
) )
// TestReadUe checks that readUe correctly parses an Exp-Golomb-coded element // TestReadUe checks that readUe correctly parses an Exp-Golomb-coded element

View File

@ -3,7 +3,7 @@ package h264dec
import ( import (
"math" "math"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -3,7 +3,7 @@ package h264dec
import ( import (
"fmt" "fmt"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
) )
const ( const (

View File

@ -5,7 +5,7 @@ import (
"io" "io"
"os" "os"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -10,7 +10,7 @@ import (
"os" "os"
"os/signal" "os/signal"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
) )
// InitialNALU indicates the start of a h264 packet // InitialNALU indicates the start of a h264 packet

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"math" "math"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/ausocean/h264decode/h264/bits" "bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors" "github.com/pkg/errors"
) )