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
937bc008
authored
Aug 10, 2021
by
olly
Committed by
Christos Tsilopoulos
Aug 10, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Use correct IntDef in FFmpegAudioDecoder
PiperOrigin-RevId: 389840014
parent
ff078cb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/FfmpegAudioDecoder.java
extensions/ffmpeg/src/main/java/com/google/android/exoplayer2/ext/ffmpeg/FfmpegAudioDecoder.java
View file @
937bc008
...
@@ -41,7 +41,7 @@ import java.util.List;
...
@@ -41,7 +41,7 @@ import java.util.List;
private
final
String
codecName
;
private
final
String
codecName
;
@Nullable
private
final
byte
[]
extraData
;
@Nullable
private
final
byte
[]
extraData
;
@C
.
Encoding
private
final
int
encoding
;
@C
.
Pcm
Encoding
private
final
int
encoding
;
private
final
int
outputBufferSize
;
private
final
int
outputBufferSize
;
private
long
nativeContext
;
// May be reassigned on resetting the codec.
private
long
nativeContext
;
// May be reassigned on resetting the codec.
...
@@ -158,7 +158,7 @@ import java.util.List;
...
@@ -158,7 +158,7 @@ import java.util.List;
}
}
/** Returns the encoding of output audio. */
/** Returns the encoding of output audio. */
@C
.
Encoding
@C
.
Pcm
Encoding
public
int
getEncoding
()
{
public
int
getEncoding
()
{
return
encoding
;
return
encoding
;
}
}
...
...
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