将包名改为 git.r-2.top/kunmeng/vdk

This commit is contained in:
kunmeng
2025-01-24 14:45:45 +08:00
parent bcb44378a5
commit 0e65c9d1cc
86 changed files with 264 additions and 338 deletions

View File

@@ -6,10 +6,10 @@ import (
"io"
"time"
"github.com/deepch/vdk/av"
"github.com/deepch/vdk/codec/aacparser"
"github.com/deepch/vdk/codec/h264parser"
"github.com/deepch/vdk/format/mp4/mp4io"
"git.r-2.top/kunmeng/vdk/av"
"git.r-2.top/kunmeng/vdk/codec/aacparser"
"git.r-2.top/kunmeng/vdk/codec/h264parser"
"git.r-2.top/kunmeng/vdk/format/mp4/mp4io"
)
type Demuxer struct {

View File

@@ -3,8 +3,8 @@ package mp4
import (
"io"
"github.com/deepch/vdk/av"
"github.com/deepch/vdk/av/avutil"
"git.r-2.top/kunmeng/vdk/av"
"git.r-2.top/kunmeng/vdk/av/avutil"
)
var CodecTypes = []av.CodecType{av.H264, av.AAC}

View File

@@ -4,7 +4,7 @@ import (
"errors"
"time"
"github.com/deepch/vdk/utils/bits/pio"
"git.r-2.top/kunmeng/vdk/utils/bits/pio"
)
const MOOF = Tag(0x6d6f6f66)

View File

@@ -966,7 +966,7 @@ func genatoms(filename, outfilename string) {
&ast.GenDecl{
Tok: token.IMPORT,
Specs: []ast.Spec{
&ast.ImportSpec{Path: &ast.BasicLit{Kind: token.STRING, Value: `"github.com/deepch/vdk/utils/bits/pio"`}},
&ast.ImportSpec{Path: &ast.BasicLit{Kind: token.STRING, Value: `"git.r-2.top/kunmeng/vdk/utils/bits/pio"`}},
},
},
&ast.GenDecl{

View File

@@ -8,7 +8,7 @@ import (
"strings"
"time"
"github.com/deepch/vdk/utils/bits/pio"
"git.r-2.top/kunmeng/vdk/utils/bits/pio"
)
type ParseError struct {

View File

@@ -6,11 +6,11 @@ import (
"io"
"time"
"github.com/deepch/vdk/av"
"github.com/deepch/vdk/codec/aacparser"
"github.com/deepch/vdk/codec/h264parser"
"github.com/deepch/vdk/format/mp4/mp4io"
"github.com/deepch/vdk/utils/bits/pio"
"git.r-2.top/kunmeng/vdk/av"
"git.r-2.top/kunmeng/vdk/codec/aacparser"
"git.r-2.top/kunmeng/vdk/codec/h264parser"
"git.r-2.top/kunmeng/vdk/format/mp4/mp4io"
"git.r-2.top/kunmeng/vdk/utils/bits/pio"
)
type Muxer struct {

View File

@@ -3,8 +3,8 @@ package mp4
import (
"time"
"github.com/deepch/vdk/av"
"github.com/deepch/vdk/format/mp4/mp4io"
"git.r-2.top/kunmeng/vdk/av"
"git.r-2.top/kunmeng/vdk/format/mp4/mp4io"
)
type Stream struct {