Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grayjay
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoStreaming
Grayjay
Commits
6045205e
Commit
6045205e
authored
6 months ago
by
Koen J
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.futo.org:videostreaming/grayjay
parents
f2d763cd
e5e34820
No related branches found
Branches containing commit
Tags
255
Tags containing commit
No related merge requests found
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/src/main/assets/scripts/source.js
+96
-0
96 additions, 0 deletions
app/src/main/assets/scripts/source.js
app/src/main/java/com/futo/platformplayer/engine/packages/PackageHttp.kt
+2
-0
2 additions, 0 deletions
...va/com/futo/platformplayer/engine/packages/PackageHttp.kt
with
98 additions
and
0 deletions
app/src/main/assets/scripts/source.js
+
96
−
0
View file @
6045205e
...
@@ -795,3 +795,99 @@ class URLSearchParams {
...
@@ -795,3 +795,99 @@ class URLSearchParams {
return
searchString
;
return
searchString
;
}
}
}
}
var
__REGEX_SPACE_CHARACTERS
=
/<%= spaceCharacters %>/g
;
var
__btoa_TABLE
=
'
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
'
;
function
btoa
(
input
)
{
input
=
String
(
input
);
if
(
/
[^\0
-
\x
FF
]
/
.
test
(
input
))
{
// Note: no need to special-case astral symbols here, as surrogates are
// matched, and the input is supposed to only contain ASCII anyway.
error
(
'
The string to be encoded contains characters outside of the
'
+
'
Latin1 range.
'
);
}
var
padding
=
input
.
length
%
3
;
var
output
=
''
;
var
position
=
-
1
;
var
a
;
var
b
;
var
c
;
var
buffer
;
// Make sure any padding is handled outside of the loop.
var
length
=
input
.
length
-
padding
;
while
(
++
position
<
length
)
{
// Read three bytes, i.e. 24 bits.
a
=
input
.
charCodeAt
(
position
)
<<
16
;
b
=
input
.
charCodeAt
(
++
position
)
<<
8
;
c
=
input
.
charCodeAt
(
++
position
);
buffer
=
a
+
b
+
c
;
// Turn the 24 bits into four chunks of 6 bits each, and append the
// matching character for each of them to the output.
output
+=
(
__btoa_TABLE
.
charAt
(
buffer
>>
18
&
0x3F
)
+
__btoa_TABLE
.
charAt
(
buffer
>>
12
&
0x3F
)
+
__btoa_TABLE
.
charAt
(
buffer
>>
6
&
0x3F
)
+
__btoa_TABLE
.
charAt
(
buffer
&
0x3F
)
);
}
if
(
padding
==
2
)
{
a
=
input
.
charCodeAt
(
position
)
<<
8
;
b
=
input
.
charCodeAt
(
++
position
);
buffer
=
a
+
b
;
output
+=
(
__btoa_TABLE
.
charAt
(
buffer
>>
10
)
+
__btoa_TABLE
.
charAt
((
buffer
>>
4
)
&
0x3F
)
+
__btoa_TABLE
.
charAt
((
buffer
<<
2
)
&
0x3F
)
+
'
=
'
);
}
else
if
(
padding
==
1
)
{
buffer
=
input
.
charCodeAt
(
position
);
output
+=
(
__btoa_TABLE
.
charAt
(
buffer
>>
2
)
+
__btoa_TABLE
.
charAt
((
buffer
<<
4
)
&
0x3F
)
+
'
==
'
);
}
return
output
;
};
function
atob
(
input
)
{
input
=
String
(
input
)
.
replace
(
__REGEX_SPACE_CHARACTERS
,
''
);
var
length
=
input
.
length
;
if
(
length
%
4
==
0
)
{
input
=
input
.
replace
(
/==
?
$/
,
''
);
length
=
input
.
length
;
}
if
(
length
%
4
==
1
||
// http://whatwg.org/C#alphanumeric-ascii-characters
/
[^
+a-zA-Z0-9
/]
/
.
test
(
input
)
)
{
error
(
'
Invalid character: the string to be decoded is not correctly encoded.
'
);
}
var
bitCounter
=
0
;
var
bitStorage
;
var
buffer
;
var
output
=
''
;
var
position
=
-
1
;
while
(
++
position
<
length
)
{
buffer
=
__btoa_TABLE
.
indexOf
(
input
.
charAt
(
position
));
bitStorage
=
bitCounter
%
4
?
bitStorage
*
64
+
buffer
:
buffer
;
// Unless this is the first of a group of 4 characters…
if
(
bitCounter
++
%
4
)
{
// …convert the first 8 bits to a single ASCII character.
output
+=
String
.
fromCharCode
(
0xFF
&
bitStorage
>>
(
-
2
*
bitCounter
&
6
)
);
}
}
return
output
;
};
This diff is collapsed.
Click to expand it.
app/src/main/java/com/futo/platformplayer/engine/packages/PackageHttp.kt
+
2
−
0
View file @
6045205e
...
@@ -99,6 +99,8 @@ class PackageHttp: V8Package {
...
@@ -99,6 +99,8 @@ class PackageHttp: V8Package {
if
(
body
is
V8ValueString
)
if
(
body
is
V8ValueString
)
return
client
.
POST
(
url
,
body
.
value
,
headers
,
if
(
useByteResponse
)
ReturnType
.
BYTES
else
ReturnType
.
STRING
);
return
client
.
POST
(
url
,
body
.
value
,
headers
,
if
(
useByteResponse
)
ReturnType
.
BYTES
else
ReturnType
.
STRING
);
else
if
(
body
is
String
)
return
client
.
POST
(
url
,
body
,
headers
,
if
(
useByteResponse
)
ReturnType
.
BYTES
else
ReturnType
.
STRING
);
else
if
(
body
is
V8ValueTypedArray
)
else
if
(
body
is
V8ValueTypedArray
)
return
client
.
POST
(
url
,
body
.
toBytes
(),
headers
,
if
(
useByteResponse
)
ReturnType
.
BYTES
else
ReturnType
.
STRING
);
return
client
.
POST
(
url
,
body
.
toBytes
(),
headers
,
if
(
useByteResponse
)
ReturnType
.
BYTES
else
ReturnType
.
STRING
);
else
if
(
body
is
ByteArray
)
else
if
(
body
is
ByteArray
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment