summaryrefslogtreecommitdiffstats
path: root/libao2/ao_sdl.c
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-07 17:53:42 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-07 17:53:42 +0000
commita07c26e7dd28b81a40cfe1f9bb000b02bef762fe (patch)
treecca0bfbcb685de5b5c92b109c6a9b918717b6dc5 /libao2/ao_sdl.c
parent3905f57aaf7eefc01e8fdfdeb352c99dc0e12459 (diff)
downloadmpv-a07c26e7dd28b81a40cfe1f9bb000b02bef762fe.tar.bz2
mpv-a07c26e7dd28b81a40cfe1f9bb000b02bef762fe.tar.xz
round len to outburst and increment full_buffers at the correct time, patch by Nehal <nehalmistry at gmx.net>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12152 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/ao_sdl.c')
-rw-r--r--libao2/ao_sdl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libao2/ao_sdl.c b/libao2/ao_sdl.c
index 115eef130b..7749b51946 100644
--- a/libao2/ao_sdl.c
+++ b/libao2/ao_sdl.c
@@ -66,12 +66,13 @@ static int write_buffer(unsigned char* data,int len){
x=BUFFSIZE-buf_write_pos;
if(x>len) x=len;
memcpy(buffer[buf_write]+buf_write_pos,data+len2,x);
+ if (buf_write_pos==0)
+ ++full_buffers;
len2+=x; len-=x;
buffered_bytes+=x; buf_write_pos+=x;
if(buf_write_pos>=BUFFSIZE){
// block is full, find next!
buf_write=(buf_write+1)%NUM_BUFS;
- ++full_buffers;
buf_write_pos=0;
}
}
@@ -316,6 +317,7 @@ static int get_space(){
// return: number of bytes played
static int play(void* data,int len,int flags){
+ len = (len/ao_data.outburst)*ao_data.outburst;
#if 0
int ret;