Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1a616b4e
authored
Feb 15, 2022
by
Dustin
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Added /* package */ to package level variables.
parent
f604ee59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
library/extractor/src/test/java/com/google/android/exoplayer2/extractor/avi/DataHelper.java
library/extractor/src/test/java/com/google/android/exoplayer2/extractor/avi/DataHelper.java
View file @
1a616b4e
...
...
@@ -26,14 +26,14 @@ import java.util.ArrayList;
import
java.util.Arrays
;
public
class
DataHelper
{
static
final
int
FPS
=
24
;
static
final
long
VIDEO_US
=
1_000_000L
/
FPS
;
static
final
int
AUDIO_PER_VIDEO
=
4
;
static
final
int
VIDEO_SIZE
=
4096
;
static
final
int
AUDIO_SIZE
=
256
;
static
final
int
VIDEO_ID
=
0
;
static
final
int
AUDIO_ID
=
1
;
static
final
int
MOVI_OFFSET
=
4096
;
/* package */
static
final
int
FPS
=
24
;
/* package */
static
final
long
VIDEO_US
=
1_000_000L
/
FPS
;
/* package */
static
final
int
AUDIO_PER_VIDEO
=
4
;
/* package */
static
final
int
VIDEO_SIZE
=
4096
;
/* package */
static
final
int
AUDIO_SIZE
=
256
;
/* package */
static
final
int
VIDEO_ID
=
0
;
/* package */
static
final
int
AUDIO_ID
=
1
;
/* package */
static
final
int
MOVI_OFFSET
=
4096
;
public
static
StreamHeaderBox
getStreamHeader
(
int
type
,
int
scale
,
int
rate
,
int
length
)
{
final
ByteBuffer
byteBuffer
=
AviExtractor
.
allocate
(
0x40
);
...
...
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