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
f6ec220c
Commit
f6ec220c
authored
Jun 16, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead code.
Originally committed as revision 13781 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
25cd5cb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
g726.c
libavcodec/g726.c
+0
-4
No files found.
libavcodec/g726.c
View file @
f6ec220c
...
...
@@ -381,9 +381,6 @@ static int g726_decode_frame(AVCodecContext *avctx,
uint8_t
mask
;
GetBitContext
gb
;
if
(
!
buf_size
)
goto
out
;
mask
=
(
1
<<
c
->
code_size
)
-
1
;
init_get_bits
(
&
gb
,
buf
,
buf_size
*
8
);
if
(
c
->
bits_left
)
{
...
...
@@ -398,7 +395,6 @@ static int g726_decode_frame(AVCodecContext *avctx,
c
->
bits_left
=
buf_size
*
8
-
get_bits_count
(
&
gb
);
c
->
bit_buffer
=
get_bits
(
&
gb
,
c
->
bits_left
);
out:
*
data_size
=
(
uint8_t
*
)
samples
-
(
uint8_t
*
)
data
;
return
buf_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