Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
eca0e6db
Commit
eca0e6db
authored
Nov 03, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
player: removed "volatile" attributes
Removed the "volatile" attributes from several variables which are not important for synchronization.
parent
862bbc21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
player_control.h
src/player_control.h
+6
-6
No files found.
src/player_control.h
View file @
eca0e6db
...
...
@@ -64,16 +64,16 @@ struct player_control {
volatile
enum
player_command
command
;
volatile
enum
player_state
state
;
volatile
int8_t
error
;
volatile
uint16_t
bit_rate
;
uint16_t
bit_rate
;
struct
audio_format
audio_format
;
volatile
float
total_time
;
volatile
float
elapsed_time
;
float
total_time
;
float
elapsed_time
;
struct
song
*
volatile
next_song
;
struct
song
*
errored_song
;
volatile
double
seek_where
;
volatile
float
cross_fade_seconds
;
volatile
uint16_t
software_volume
;
volatile
double
total_play_time
;
float
cross_fade_seconds
;
uint16_t
software_volume
;
double
total_play_time
;
};
extern
struct
player_control
pc
;
...
...
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