summaryrefslogtreecommitdiff
path: root/firmware/general.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-12-29 19:46:35 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-12-29 19:46:35 +0000
commita222f27c4a17ed8f9809cda7861fe5f23d4cc0c1 (patch)
treed393a23d83549f99772bb156e59ffb88725148b6 /firmware/general.c
parent1d0f6b90ff43776e55b4b9f062c9bea3f99aa768 (diff)
downloadrockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.tar.gz
rockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.zip
mpegplayer: Make playback engine fully seekable and frame-accurate and split into logical parts. Be sure to have all current features work. Actual UI for seeking will be added soon. Recommended GOP size is about 15-30 frames depending on target or seeking can be slow with really long GOPs (nature of MPEG video). More refined encoding recommendations for a particular player should be posted soon.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15977 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/general.c')
-rw-r--r--firmware/general.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/firmware/general.c b/firmware/general.c
index cc3710c8f3..117e6c3548 100644
--- a/firmware/general.c
+++ b/firmware/general.c
@@ -77,8 +77,6 @@ int make_list_from_caps32(unsigned long src_mask,
77 return count; 77 return count;
78} /* make_list_from_caps32 */ 78} /* make_list_from_caps32 */
79 79
80/* Only needed for cache aligning atm */
81#ifdef PROC_NEEDS_CACHEALIGN
82/* Align a buffer and size to a size boundary while remaining within 80/* Align a buffer and size to a size boundary while remaining within
83 * the original boundaries */ 81 * the original boundaries */
84size_t align_buffer(void **start, size_t size, size_t align) 82size_t align_buffer(void **start, size_t size, size_t align)
@@ -98,4 +96,3 @@ size_t align_buffer(void **start, size_t size, size_t align)
98 *start = newstart; 96 *start = newstart;
99 return newend - newstart; 97 return newend - newstart;
100} 98}
101#endif /* PROC_NEEDS_CACHEALIGN */