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
b3a257af
Commit
b3a257af
authored
May 10, 2007
by
Ramiro Polla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert r8979 (Ugly fix for r8963)
Originally committed as revision 8983 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
803ca89c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pcm.c
libavcodec/pcm.c
+2
-2
No files found.
libavcodec/pcm.c
View file @
b3a257af
...
...
@@ -177,8 +177,8 @@ static inline void encode_from16(int bps, int le, int us,
for
(;
n
>
0
;
n
--
)
{
register
int
v
=
*
(
*
samples
)
++
;
v
+=
usum
;
if
(
le
)
{
AV_WL16
(
*
dst
,
v
);}
else
{
AV_WB16
(
*
dst
,
v
);}
if
(
le
)
AV_WL16
(
*
dst
,
v
);
else
AV_WB16
(
*
dst
,
v
);
*
dst
+=
bps
;
}
if
(
le
)
*
dst
-=
bps
-
2
;
...
...
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