diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-11-30 05:16:56 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-11-30 05:16:56 +0000 |
| commit | 5323fe996b6a62be2201de2b2a5f6917a6040cb1 (patch) | |
| tree | 9ae9d6473718ecb686e9eaa5bf1804e276f2a0c2 /apps/codecs.c | |
| parent | b0dd9eb5bcdd0c320444474fbf3a0f09dc71684d (diff) | |
| download | rockbox-5323fe996b6a62be2201de2b2a5f6917a6040cb1.zip rockbox-5323fe996b6a62be2201de2b2a5f6917a6040cb1.tar.gz rockbox-5323fe996b6a62be2201de2b2a5f6917a6040cb1.tar.bz2 rockbox-5323fe996b6a62be2201de2b2a5f6917a6040cb1.tar.xz | |
Move encoder CPU boost control to the core. Allow CPU to sleep a bit when PCM buffer is empty and save some power. Codec API becomes incompatible so full updates! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15854 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.c')
| -rw-r--r-- | apps/codecs.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 9969b6f..dfae463 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -131,7 +131,6 @@ struct codec_api ci = { enc_set_parameters, enc_get_chunk, enc_finish_chunk, - enc_pcm_buf_near_empty, enc_get_pcm_data, enc_unget_pcm_data, @@ -141,15 +140,6 @@ struct codec_api ci = { (read_func)read, PREFIX(lseek), (write_func)write, - -#ifdef HAVE_ADJUSTABLE_CPU_FREQ -#ifdef CPU_BOOST_LOGGING - cpu_boost_, -#else - cpu_boost, -#endif -#endif - round_value_to_list32, #endif |