summaryrefslogtreecommitdiff
path: root/apps/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mpeg.c')
-rw-r--r--apps/mpeg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/mpeg.c b/apps/mpeg.c
index 514379c16c..eb2cc735ba 100644
--- a/apps/mpeg.c
+++ b/apps/mpeg.c
@@ -131,10 +131,10 @@ static struct trackdata trackdata[MAX_TRACK_ENTRIES];
131 131
132static unsigned int current_track_counter = 0; 132static unsigned int current_track_counter = 0;
133 133
134#ifndef SIMULATOR
134/* Play time of the previous track */ 135/* Play time of the previous track */
135unsigned long prev_track_elapsed; 136static unsigned long prev_track_elapsed;
136 137
137#ifndef SIMULATOR
138static int track_read_idx = 0; 138static int track_read_idx = 0;
139static int track_write_idx = 0; 139static int track_write_idx = 0;
140#endif /* !SIMULATOR */ 140#endif /* !SIMULATOR */
@@ -213,10 +213,10 @@ static int prerecord_count; /* Number of seconds in the prerecord buffer */
213static int prerecord_timeout; /* The tick count of the next prerecord data 213static int prerecord_timeout; /* The tick count of the next prerecord data
214 store */ 214 store */
215 215
216unsigned long record_start_time; /* Value of current_tick when recording 216static unsigned long record_start_time; /* Value of current_tick when recording
217 was started */ 217 was started */
218unsigned long pause_start_time; /* Value of current_tick when pause was 218static unsigned long pause_start_time; /* Value of current_tick when pause was
219 started */ 219 started */
220static unsigned long last_rec_time; 220static unsigned long last_rec_time;
221static unsigned long num_rec_bytes; 221static unsigned long num_rec_bytes;
222static unsigned long last_rec_bytes; 222static unsigned long last_rec_bytes;