mirror of https://bitbucket.org/ausocean/av.git
codec/h264/h264dec: fixed import paths
This commit is contained in:
parent
5d31c49360
commit
3914bc1422
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package h264dec
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/ausocean/h264decode/h264/bits"
|
||||
"bitbucket.org/ausocean/av/codec/h264/h264dec/bits"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue