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:
Antoine Cellerier 2007-10-14 21:05:26 +00:00
parent f1fead0c9b
commit 57418b2192

View file

@ -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);