Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
frameworks_wilhelm
Commits
14463a8e
Commit
14463a8e
authored
10 years ago
by
Glenn Kasten
Browse files
Options
Download
Email Patches
Plain Diff
Fix unsigned warnings
Change-Id: I8d174235cb8092d4e879ec43228e7f7f6fdad462
parent
5bb641dc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
tests/listening/slesTest_playMuteSolo.cpp
tests/listening/slesTest_playMuteSolo.cpp
+1
-1
tests/mimeUri/slesTestLoopUri.cpp
tests/mimeUri/slesTestLoopUri.cpp
+1
-1
tests/mimeUri/slesTestSlowDownUri.cpp
tests/mimeUri/slesTestSlowDownUri.cpp
+1
-1
tests/sandbox/reverb.c
tests/sandbox/reverb.c
+2
-2
tests/sandbox/xaplay.c
tests/sandbox/xaplay.c
+1
-1
No files found.
tests/listening/slesTest_playMuteSolo.cpp
View file @
14463a8e
...
...
@@ -51,7 +51,7 @@ void ExitOnErrorFunc( SLresult result , int line)
// These are extensions to OpenSL ES 1.0.1 values
#define SL_PREFETCHSTATUS_UNKNOWN 0
#define SL_PREFETCHSTATUS_ERROR (-1)
#define SL_PREFETCHSTATUS_ERROR (
(SLuint32)
-1)
// Mutex and condition shared with main program to protect prefetch_status
...
...
This diff is collapsed.
Click to expand it.
tests/mimeUri/slesTestLoopUri.cpp
View file @
14463a8e
...
...
@@ -32,7 +32,7 @@
// These are extensions to OpenSL ES 1.0.1 values
#define SL_PREFETCHSTATUS_UNKNOWN 0
#define SL_PREFETCHSTATUS_ERROR (-1)
#define SL_PREFETCHSTATUS_ERROR (
(SLuint32)
-1)
// Mutex and condition shared with main program to protect prefetch_status
...
...
This diff is collapsed.
Click to expand it.
tests/mimeUri/slesTestSlowDownUri.cpp
View file @
14463a8e
...
...
@@ -34,7 +34,7 @@
// These are extensions to OpenSL ES 1.0.1 values
#define SL_PREFETCHSTATUS_UNKNOWN 0
#define SL_PREFETCHSTATUS_ERROR (-1)
#define SL_PREFETCHSTATUS_ERROR (
(SLuint32)
-1)
// Mutex and condition shared with main program to protect prefetch_status
...
...
This diff is collapsed.
Click to expand it.
tests/sandbox/reverb.c
View file @
14463a8e
...
...
@@ -170,8 +170,8 @@ void printEnvNames(void)
// These are extensions to OpenSL ES 1.0.1 values
#define SL_PREFETCHSTATUS_UNKNOWN
0
#define SL_PREFETCHSTATUS_ERROR (-1)
#define SL_PREFETCHSTATUS_UNKNOWN
((SLuint32) 0)
#define SL_PREFETCHSTATUS_ERROR (
(SLuint32)
-1)
// Mutex and condition shared with main program to protect prefetch_status
...
...
This diff is collapsed.
Click to expand it.
tests/sandbox/xaplay.c
View file @
14463a8e
...
...
@@ -806,7 +806,7 @@ streamIndex, &mediaContainerInformation);
if
(
pauseMs
>=
0
)
{
result
=
(
*
playerPlay
)
->
GetPosition
(
playerPlay
,
&
position
);
assert
(
XA_RESULT_SUCCESS
==
result
);
if
(
position
>=
pauseMs
)
{
if
(
(
int
)
position
>=
pauseMs
)
{
printf
(
"Pausing for 5 seconds at position %u
\n
"
,
position
);
result
=
(
*
playerPlay
)
->
SetPlayState
(
playerPlay
,
XA_PLAYSTATE_PAUSED
);
assert
(
XA_RESULT_SUCCESS
==
result
);
...
...
This diff is collapsed.
Click to expand it.
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