Use the CLOCK_RATE define instead of 44100.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15110 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f1fead0c9b
commit
57418b2192
1 changed files with 3 additions and 3 deletions
|
@ -1119,7 +1119,7 @@ static int button_loop(void)
|
|||
rb->lcd_setfont(FONT_SYSFIXED);
|
||||
|
||||
if (result) {
|
||||
settings.resume_time = (int)(get_stream_time()/44100/
|
||||
settings.resume_time = (int)(get_stream_time()/CLOCK_RATE/
|
||||
30-start_pts_time);
|
||||
str_send_msg(&video_str, STREAM_QUIT, 0);
|
||||
audio_str.status = STREAM_STOPPED;
|
||||
|
@ -1131,14 +1131,14 @@ static int button_loop(void)
|
|||
break;
|
||||
|
||||
case MPEG_STOP:
|
||||
settings.resume_time = (int)(get_stream_time()/44100/
|
||||
settings.resume_time = (int)(get_stream_time()/CLOCK_RATE/
|
||||
30-start_pts_time);
|
||||
str_send_msg(&video_str, STREAM_QUIT, 0);
|
||||
audio_str.status = STREAM_STOPPED;
|
||||
break;
|
||||
|
||||
case MPEG_PAUSE:
|
||||
settings.resume_time = (int)(get_stream_time()/44100/
|
||||
settings.resume_time = (int)(get_stream_time()/CLOCK_RATE/
|
||||
30-start_pts_time);
|
||||
save_settings();
|
||||
str_send_msg(&video_str, STREAM_PAUSE, 0);
|
||||
|
|
Loading…
Reference in a new issue