Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8db4f43c
Commit
8db4f43c
authored
Nov 20, 2006
by
Guillaume Poirier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix declaration and code thingie
Originally committed as revision 7140 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4ec0ccb1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
amr.c
libavcodec/amr.c
+2
-1
No files found.
libavcodec/amr.c
View file @
8db4f43c
...
...
@@ -625,8 +625,9 @@ static int amr_wb_encode_close(AVCodecContext * avctx)
static
int
amr_wb_encode_frame
(
AVCodecContext
*
avctx
,
unsigned
char
*
frame
/*out*/
,
int
buf_size
,
void
*
data
/*in*/
)
{
AMRWBContext
*
s
=
(
AMRWBContext
*
)
avctx
->
priv_data
;
AMRWBContext
*
s
;
int
size
;
s
=
(
AMRWBContext
*
)
avctx
->
priv_data
;
s
->
mode
=
getWBBitrateMode
(
avctx
->
bit_rate
);
size
=
E_IF_encode
(
s
->
state
,
s
->
mode
,
data
,
frame
,
s
->
allow_dtx
);
return
size
;
...
...
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