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
import (
"github.com/ausocean/h264decode/h264/bits"
"bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
"github.com/pkg/errors"
)

View File

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

View File

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

View File

@ -15,7 +15,7 @@ import (
"bytes"
"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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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