summaryrefslogtreecommitdiffstats
path: root/apps/plugins/mpegplayer/alloc.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-03-22 09:18:46 +0000
committerDave Chapman <dave@dchapman.com>2007-03-22 09:18:46 +0000
commit831084842182c076cbf5e8f7bf089029dbab8ae6 (patch)
tree822c3d42b30bfa33a8d55b7701ba31577410f45c /apps/plugins/mpegplayer/alloc.c
parent81cad7db4617dfaabf324e2f92fae2181911557b (diff)
downloadrockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.tar.gz
rockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.zip
Some small mpegplayer improvements/bug-fixes, and improved A/V sync. Audio is used as the master clock and video is synced to the number of samples played. This doesn't take account of any PTS difference at the start of the stream. Also enable Limit FPS and Skip Frames by default - these options need to be enabled for A/V sync to work. Adds pcm_get_bytes_waiting() to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12884 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/alloc.c')
-rw-r--r--apps/plugins/mpegplayer/alloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/alloc.c b/apps/plugins/mpegplayer/alloc.c
index d406947a58..3bdf7ecb0a 100644
--- a/apps/plugins/mpegplayer/alloc.c
+++ b/apps/plugins/mpegplayer/alloc.c
@@ -36,7 +36,8 @@ void mpeg2_alloc_init(unsigned char* buf, int mallocsize)
mem_ptr = 0;
bufsize = mallocsize;
mallocbuf = buf;
-
+ rb->memset(buf,0,bufsize);
+
return;
}