Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
galene
Commits
325f2881
Commit
325f2881
authored
Dec 19, 2020
by
Juliusz Chroboczek
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move to github.
parent
66fb73d0
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
33 additions
and
33 deletions
+33
-33
diskwriter/diskwriter.go
diskwriter/diskwriter.go
+2
-2
estimator/estimator.go
estimator/estimator.go
+1
-1
estimator/estimator_test.go
estimator/estimator_test.go
+1
-1
galene-password-generator/galene-password.generator.go
galene-password-generator/galene-password.generator.go
+1
-1
galene.go
galene.go
+3
-3
go.mod
go.mod
+1
-1
group/client.go
group/client.go
+1
-1
jitter/jitter.go
jitter/jitter.go
+1
-1
rtpconn/rtpconn.go
rtpconn/rtpconn.go
+6
-6
rtpconn/rtpreader.go
rtpconn/rtpreader.go
+2
-2
rtpconn/rtpstats.go
rtpconn/rtpstats.go
+2
-2
rtpconn/rtpwriter.go
rtpconn/rtpwriter.go
+3
-3
rtpconn/webclient.go
rtpconn/webclient.go
+4
-4
stats/stats.go
stats/stats.go
+1
-1
webserver/webserver.go
webserver/webserver.go
+4
-4
No files found.
diskwriter/diskwriter.go
View file @
325f2881
...
@@ -16,8 +16,8 @@ import (
...
@@ -16,8 +16,8 @@ import (
"github.com/pion/rtp/codecs"
"github.com/pion/rtp/codecs"
"github.com/pion/webrtc/v3/pkg/media/samplebuilder"
"github.com/pion/webrtc/v3/pkg/media/samplebuilder"
"galene/conn"
"g
ithub.com/jech/g
alene/conn"
"galene/group"
"g
ithub.com/jech/g
alene/group"
)
)
var
Directory
string
var
Directory
string
...
...
estimator/estimator.go
View file @
325f2881
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
"sync/atomic"
"sync/atomic"
"time"
"time"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
type
Estimator
struct
{
type
Estimator
struct
{
...
...
estimator/estimator_test.go
View file @
325f2881
...
@@ -3,7 +3,7 @@ package estimator
...
@@ -3,7 +3,7 @@ package estimator
import
(
import
(
"testing"
"testing"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
func
TestEstimator
(
t
*
testing
.
T
)
{
func
TestEstimator
(
t
*
testing
.
T
)
{
...
...
galene-password-generator/galene-password.generator.go
View file @
325f2881
...
@@ -12,7 +12,7 @@ import (
...
@@ -12,7 +12,7 @@ import (
"golang.org/x/crypto/pbkdf2"
"golang.org/x/crypto/pbkdf2"
"galene/group"
"g
ithub.com/jech/g
alene/group"
)
)
func
main
()
{
func
main
()
{
...
...
galene.go
View file @
325f2881
...
@@ -11,9 +11,9 @@ import (
...
@@ -11,9 +11,9 @@ import (
"syscall"
"syscall"
"time"
"time"
"galene/diskwriter"
"g
ithub.com/jech/g
alene/diskwriter"
"galene/group"
"g
ithub.com/jech/g
alene/group"
"galene/webserver"
"g
ithub.com/jech/g
alene/webserver"
)
)
func
main
()
{
func
main
()
{
...
...
go.mod
View file @
325f2881
module galene
module g
ithub.com/jech/g
alene
go 1.13
go 1.13
...
...
group/client.go
View file @
325f2881
...
@@ -10,7 +10,7 @@ import (
...
@@ -10,7 +10,7 @@ import (
"golang.org/x/crypto/pbkdf2"
"golang.org/x/crypto/pbkdf2"
"galene/conn"
"g
ithub.com/jech/g
alene/conn"
)
)
type
RawPassword
struct
{
type
RawPassword
struct
{
...
...
jitter/jitter.go
View file @
325f2881
...
@@ -3,7 +3,7 @@ package jitter
...
@@ -3,7 +3,7 @@ package jitter
import
(
import
(
"sync/atomic"
"sync/atomic"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
type
Estimator
struct
{
type
Estimator
struct
{
...
...
rtpconn/rtpconn.go
View file @
325f2881
...
@@ -13,12 +13,12 @@ import (
...
@@ -13,12 +13,12 @@ import (
"github.com/pion/rtp"
"github.com/pion/rtp"
"github.com/pion/webrtc/v3"
"github.com/pion/webrtc/v3"
"galene/conn"
"g
ithub.com/jech/g
alene/conn"
"galene/estimator"
"g
ithub.com/jech/g
alene/estimator"
"galene/group"
"g
ithub.com/jech/g
alene/group"
"galene/jitter"
"g
ithub.com/jech/g
alene/jitter"
"galene/packetcache"
"g
ithub.com/jech/g
alene/packetcache"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
type
bitrate
struct
{
type
bitrate
struct
{
...
...
rtpconn/rtpreader.go
View file @
325f2881
...
@@ -9,8 +9,8 @@ import (
...
@@ -9,8 +9,8 @@ import (
"github.com/pion/rtp/codecs"
"github.com/pion/rtp/codecs"
"github.com/pion/webrtc/v3"
"github.com/pion/webrtc/v3"
"galene/packetcache"
"g
ithub.com/jech/g
alene/packetcache"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
func
isVP8Keyframe
(
packet
*
rtp
.
Packet
)
bool
{
func
isVP8Keyframe
(
packet
*
rtp
.
Packet
)
bool
{
...
...
rtpconn/rtpstats.go
View file @
325f2881
...
@@ -5,8 +5,8 @@ import (
...
@@ -5,8 +5,8 @@ import (
"sync/atomic"
"sync/atomic"
"time"
"time"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
"galene/stats"
"g
ithub.com/jech/g
alene/stats"
)
)
func
(
c
*
webClient
)
GetStats
()
*
stats
.
Client
{
func
(
c
*
webClient
)
GetStats
()
*
stats
.
Client
{
...
...
rtpconn/rtpwriter.go
View file @
325f2881
...
@@ -9,9 +9,9 @@ import (
...
@@ -9,9 +9,9 @@ import (
"github.com/pion/rtp"
"github.com/pion/rtp"
"galene/conn"
"g
ithub.com/jech/g
alene/conn"
"galene/packetcache"
"g
ithub.com/jech/g
alene/packetcache"
"galene/rtptime"
"g
ithub.com/jech/g
alene/rtptime"
)
)
// packetIndex is a request to send a packet from the cache.
// packetIndex is a request to send a packet from the cache.
...
...
rtpconn/webclient.go
View file @
325f2881
...
@@ -12,10 +12,10 @@ import (
...
@@ -12,10 +12,10 @@ import (
"github.com/gorilla/websocket"
"github.com/gorilla/websocket"
"github.com/pion/webrtc/v3"
"github.com/pion/webrtc/v3"
"galene/conn"
"g
ithub.com/jech/g
alene/conn"
"galene/diskwriter"
"g
ithub.com/jech/g
alene/diskwriter"
"galene/estimator"
"g
ithub.com/jech/g
alene/estimator"
"galene/group"
"g
ithub.com/jech/g
alene/group"
)
)
func
errorToWSCloseMessage
(
id
string
,
err
error
)
(
*
clientMessage
,
[]
byte
)
{
func
errorToWSCloseMessage
(
id
string
,
err
error
)
(
*
clientMessage
,
[]
byte
)
{
...
...
stats/stats.go
View file @
325f2881
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
"sort"
"sort"
"time"
"time"
"galene/group"
"g
ithub.com/jech/g
alene/group"
)
)
type
GroupStats
struct
{
type
GroupStats
struct
{
...
...
webserver/webserver.go
View file @
325f2881
...
@@ -21,10 +21,10 @@ import (
...
@@ -21,10 +21,10 @@ import (
"github.com/gorilla/websocket"
"github.com/gorilla/websocket"
"galene/diskwriter"
"g
ithub.com/jech/g
alene/diskwriter"
"galene/group"
"g
ithub.com/jech/g
alene/group"
"galene/rtpconn"
"g
ithub.com/jech/g
alene/rtpconn"
"galene/stats"
"g
ithub.com/jech/g
alene/stats"
)
)
var
server
atomic
.
Value
var
server
atomic
.
Value
...
...
Thomas Gambier
🚴🏼
@tomo
mentioned in merge request
slapos!878 (merged)
·
Dec 23, 2020
mentioned in merge request
slapos!878 (merged)
mentioned in merge request slapos!878
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment