mv pio to bits/pio
This commit is contained in:
parent
45d9944a52
commit
4b61d9daea
@ -4,7 +4,7 @@ package h264parser
|
|||||||
import (
|
import (
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
"github.com/nareix/bits"
|
"github.com/nareix/bits"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"bytes"
|
"bytes"
|
||||||
)
|
)
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/nareix/joy4/codec"
|
"github.com/nareix/joy4/codec"
|
||||||
"github.com/nareix/joy4/codec/fake"
|
"github.com/nareix/joy4/codec/fake"
|
||||||
"github.com/nareix/joy4/codec/aacparser"
|
"github.com/nareix/joy4/codec/aacparser"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/format/flv/flvio"
|
"github.com/nareix/joy4/format/flv/flvio"
|
||||||
"io"
|
"io"
|
||||||
"bufio"
|
"bufio"
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"math"
|
"math"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AMF0ParseError struct {
|
type AMF0ParseError struct {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -967,7 +967,7 @@ func genatoms(filename, outfilename string) {
|
|||||||
&ast.GenDecl{
|
&ast.GenDecl{
|
||||||
Tok: token.IMPORT,
|
Tok: token.IMPORT,
|
||||||
Specs: []ast.Spec{
|
Specs: []ast.Spec{
|
||||||
&ast.ImportSpec{Path: &ast.BasicLit{Kind: token.STRING, Value: `"github.com/nareix/pio"`}},
|
&ast.ImportSpec{Path: &ast.BasicLit{Kind: token.STRING, Value: `"github.com/nareix/bits/pio"`}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
&ast.GenDecl{
|
&ast.GenDecl{
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
package mp4io
|
package mp4io
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"os"
|
"os"
|
||||||
"io"
|
"io"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/nareix/joy4/codec/aacparser"
|
"github.com/nareix/joy4/codec/aacparser"
|
||||||
"github.com/nareix/joy4/codec/h264parser"
|
"github.com/nareix/joy4/codec/h264parser"
|
||||||
"github.com/nareix/joy4/format/mp4/mp4io"
|
"github.com/nareix/joy4/format/mp4/mp4io"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"io"
|
"io"
|
||||||
"bufio"
|
"bufio"
|
||||||
)
|
)
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"io"
|
"io"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/format/flv"
|
"github.com/nareix/joy4/format/flv"
|
||||||
"github.com/nareix/joy4/format/flv/flvio"
|
"github.com/nareix/joy4/format/flv/flvio"
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
"github.com/nareix/joy4/av/avutil"
|
"github.com/nareix/joy4/av/avutil"
|
||||||
"github.com/nareix/joy4/codec"
|
"github.com/nareix/joy4/codec"
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"bufio"
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
"github.com/nareix/joy4/format/ts/tsio"
|
"github.com/nareix/joy4/format/ts/tsio"
|
||||||
"github.com/nareix/joy4/codec/aacparser"
|
"github.com/nareix/joy4/codec/aacparser"
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nareix/joy4/av"
|
"github.com/nareix/joy4/av"
|
||||||
"github.com/nareix/joy4/format/ts/tsio"
|
"github.com/nareix/joy4/format/ts/tsio"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
"github.com/nareix/joy4/codec/aacparser"
|
"github.com/nareix/joy4/codec/aacparser"
|
||||||
"github.com/nareix/joy4/codec/h264parser"
|
"github.com/nareix/joy4/codec/h264parser"
|
||||||
"io"
|
"io"
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nareix/pio"
|
"github.com/nareix/bits/pio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user