Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
337b20e2
Commit
337b20e2
authored
Feb 23, 1993
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added audioop.reverse() which reverses an audio sample
parent
36d330bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
Modules/audioop.c
Modules/audioop.c
+40
-0
No files found.
Modules/audioop.c
View file @
337b20e2
...
...
@@ -821,6 +821,45 @@ audioop_bias(self, args)
return
rv
;
}
static
object
*
audioop_reverse
(
self
,
args
)
object
*
self
;
object
*
args
;
{
signed
char
*
cp
;
unsigned
char
*
ncp
;
int
len
,
size
,
val
;
object
*
rv
;
int
i
,
j
;
if
(
!
getargs
(
args
,
"(s#i)"
,
&
cp
,
&
len
,
&
size
)
)
return
0
;
if
(
size
!=
1
&&
size
!=
2
&&
size
!=
4
)
{
err_setstr
(
AudioopError
,
"Size should be 1, 2 or 4"
);
return
0
;
}
rv
=
newsizedstringobject
(
NULL
,
len
);
if
(
rv
==
0
)
return
0
;
ncp
=
(
unsigned
char
*
)
getstringvalue
(
rv
);
for
(
i
=
0
;
i
<
len
;
i
+=
size
)
{
if
(
size
==
1
)
val
=
((
int
)
*
CHARP
(
cp
,
i
))
<<
8
;
else
if
(
size
==
2
)
val
=
(
int
)
*
SHORTP
(
cp
,
i
);
else
if
(
size
==
4
)
val
=
((
int
)
*
LONGP
(
cp
,
i
))
>>
16
;
j
=
len
-
i
-
size
;
if
(
size
==
1
)
*
CHARP
(
ncp
,
j
)
=
(
signed
char
)(
val
>>
8
);
else
if
(
size
==
2
)
*
SHORTP
(
ncp
,
j
)
=
(
short
)(
val
);
else
if
(
size
==
4
)
*
LONGP
(
ncp
,
j
)
=
(
long
)(
val
<<
16
);
}
return
rv
;
}
static
object
*
audioop_lin2lin
(
self
,
args
)
object
*
self
;
...
...
@@ -1286,6 +1325,7 @@ static struct methodlist audioop_methods[] = {
{
"tomono"
,
audioop_tomono
},
{
"tostereo"
,
audioop_tostereo
},
{
"getsample"
,
audioop_getsample
},
{
"reverse"
,
audioop_reverse
},
{
0
,
0
}
};
...
...
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