# HG changeset patch # User uau # Date 1154104407 0 # Node ID 5fd0003557772706f60c776e26e588db9f7e3983 # Parent 64264df4c4e1e14493a9b758029ee5a6cb7ce9e0 cosmetics: fix incorrect indentation left by reimar and extra word in comment diff -r 64264df4c4e1 -r 5fd000355777 mplayer.c --- a/mplayer.c Fri Jul 28 15:40:05 2006 +0000 +++ b/mplayer.c Fri Jul 28 16:33:27 2006 +0000 @@ -2487,12 +2487,12 @@ // but not accurately known in sh_audio->i_bps. a_pts = d_audio->pts; - // ds_tell_pts returns gets bytes read after last timestamp from + // ds_tell_pts returns bytes read after last timestamp from // demuxing layer, decoder might use sh_audio->a_in_buffer for bytes // it has read but not decoded if (sh_audio->i_bps) - a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) / - (double)sh_audio->i_bps; + a_pts += (ds_tell_pts(d_audio) - sh_audio->a_in_buffer_len) / + (double)sh_audio->i_bps; } // Now a_pts hopefully holds the pts for end of audio from decoder. // Substract data in buffers between decoder and audio out.