From 4b801b2d3a45db8df38d02b3c634b0b257290a9b Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Mon, 1 Jan 2007 12:59:32 +0000 Subject: Initial implementation of audio support (44.1KHz only, mp2 or mp3, mono/stereo, any bitrate) and .mpg file (MPEG program stream) parsing for mpegplayer - .m2v files are no longer supported. .mpg parser based on patch #6366 from Mathieu Favreaux. Currently limited to only playing files smaller than the available buffer RAM (it will play longer files, but never refills the buffer when it runs empty). There is also no a/v sync implemented, and still no seeking support. Coldfire (iriver H3x0 and iaudio X5) users can use the optimisations provided in patch #5995 to increase the framerate, and PortalPlayer (ipods and iriver H10) users will want to use kernel_on_cop_6.diff from FS#5755 which enables mpegplayer to run the video thread on the second CPU core - video on the second core with audio on the first core runs at the same speed as the old mpegplayer did with no audio. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11877 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/plugin.c') diff --git a/apps/plugin.c b/apps/plugin.c index 9739df4661..2fbfe346b3 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -486,6 +486,7 @@ static const struct plugin_api rockbox_api = { sound_default, pcm_record_more, #endif + create_thread_on_core, }; int plugin_load(const char* plugin, void* parameter) -- cgit v1.2.3