diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-03-22 09:18:46 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-03-22 09:18:46 +0000 |
| commit | 831084842182c076cbf5e8f7bf089029dbab8ae6 (patch) | |
| tree | 822c3d42b30bfa33a8d55b7701ba31577410f45c /apps/plugin.c | |
| parent | 81cad7db4617dfaabf324e2f92fae2181911557b (diff) | |
| download | rockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.zip rockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.tar.gz rockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.tar.bz2 rockbox-831084842182c076cbf5e8f7bf089029dbab8ae6.tar.xz | |
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/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 1a5ee4e..82f0113 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -487,6 +487,8 @@ static const struct plugin_api rockbox_api = { playlist_resume, playlist_start, &global_status, + + pcm_get_bytes_waiting, }; int plugin_load(const char* plugin, void* parameter) |