mirror of https://bitbucket.org/ausocean/av.git
parent
147716ccab
commit
81eab1c634
|
@ -29,8 +29,8 @@ LICENSE
|
||||||
package mpegts
|
package mpegts
|
||||||
|
|
||||||
import (
|
import (
|
||||||
//"bitbucket.org/ausocean/av/tools"
|
"bitbucket.org/ausocean/av/tools"
|
||||||
"../tools"
|
//"../tools"
|
||||||
|
|
||||||
"errors"
|
"errors"
|
||||||
//"fmt"
|
//"fmt"
|
||||||
|
|
|
@ -32,14 +32,14 @@ import (
|
||||||
_"fmt"
|
_"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
//"bitbucket.org/ausocean/av/mpegts"
|
"bitbucket.org/ausocean/av/mpegts"
|
||||||
//"bitbucket.org/ausocean/av/rtp"
|
"bitbucket.org/ausocean/av/rtp"
|
||||||
//"bitbucket.org/ausocean/av/tools"
|
"bitbucket.org/ausocean/av/tools"
|
||||||
//"bitbucket.org/ausocean/av/itut"
|
"bitbucket.org/ausocean/av/itut"
|
||||||
"../mpegts"
|
//"../mpegts"
|
||||||
"../rtp"
|
//"../rtp"
|
||||||
"../tools"
|
//"../tools"
|
||||||
"../itut"
|
//"../itut"
|
||||||
)
|
)
|
||||||
|
|
||||||
type RtpToH264Converter interface {
|
type RtpToH264Converter interface {
|
||||||
|
|
|
@ -28,8 +28,8 @@ LICENSE
|
||||||
package parser
|
package parser
|
||||||
|
|
||||||
import (
|
import (
|
||||||
//"bitbucket.org/ausocean/av/itut"
|
"bitbucket.org/ausocean/av/itut"
|
||||||
"../itut"
|
//"../itut"
|
||||||
"log"
|
"log"
|
||||||
"sync"
|
"sync"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -27,8 +27,8 @@ LICENSE
|
||||||
package pes
|
package pes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
//"bitbucket.org/ausocean/av/tools"
|
"bitbucket.org/ausocean/av/tools"
|
||||||
"../tools"
|
//"../tools"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -42,15 +42,15 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
//"bitbucket.org/ausocean/av/h264"
|
"bitbucket.org/ausocean/av/h264"
|
||||||
//"bitbucket.org/ausocean/av/tsgenerator"
|
"bitbucket.org/ausocean/av/tsgenerator"
|
||||||
"../parser"
|
//"../parser"
|
||||||
"../tsgenerator"
|
//"../tsgenerator"
|
||||||
|
|
||||||
//"bitbucket.org/ausocean/av/ringbuffer"
|
"bitbucket.org/ausocean/av/ringbuffer"
|
||||||
//"bitbucket.org/ausocean/utils/smartLogger"
|
"bitbucket.org/ausocean/utils/smartLogger"
|
||||||
"../../utils/smartLogger"
|
//"../../utils/smartLogger"
|
||||||
"../ringbuffer"
|
//"../ringbuffer"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Misc constants
|
// Misc constants
|
||||||
|
|
|
@ -31,8 +31,8 @@ package tools
|
||||||
import (
|
import (
|
||||||
_"os"
|
_"os"
|
||||||
_"fmt"
|
_"fmt"
|
||||||
//"bitbucket.org/ausocean/av/rtp"
|
"bitbucket.org/ausocean/av/rtp"
|
||||||
"../rtp"
|
//"../rtp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func BoolToByte(in bool) (out byte) {
|
func BoolToByte(in bool) (out byte) {
|
||||||
|
|
|
@ -31,14 +31,14 @@ package tsgenerator
|
||||||
import (
|
import (
|
||||||
_"fmt"
|
_"fmt"
|
||||||
_"os"
|
_"os"
|
||||||
//"bitbucket.org/ausocean/av/mpegts"
|
"bitbucket.org/ausocean/av/mpegts"
|
||||||
//"bitbucket.org/ausocean/av/pes"
|
"bitbucket.org/ausocean/av/pes"
|
||||||
//"bitbucket.org/ausocean/av/tools"
|
"bitbucket.org/ausocean/av/tools"
|
||||||
//"bitbucket.org/ausocean/av/rtp"
|
"bitbucket.org/ausocean/av/rtp"
|
||||||
"../mpegts"
|
//"../mpegts"
|
||||||
"../pes"
|
//"../pes"
|
||||||
"../tools"
|
//"../tools"
|
||||||
"../rtp"
|
//"../rtp"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in New Issue