summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpeg2.h
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 /apps/plugins/mpegplayer/mpeg2.h
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 'apps/plugins/mpegplayer/mpeg2.h')
-rw-r--r--apps/plugins/mpegplayer/mpeg2.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/mpeg2.h b/apps/plugins/mpegplayer/mpeg2.h
index 605a3538b0..824454feab 100644
--- a/apps/plugins/mpegplayer/mpeg2.h
+++ b/apps/plugins/mpegplayer/mpeg2.h
@@ -189,7 +189,13 @@ typedef enum
189} mpeg2_alloc_t; 189} mpeg2_alloc_t;
190 190
191void * mpeg2_malloc (unsigned size, mpeg2_alloc_t reason); 191void * mpeg2_malloc (unsigned size, mpeg2_alloc_t reason);
192#if 0
192void mpeg2_free (void * buf); 193void mpeg2_free (void * buf);
194#endif
195/* allocates a dedicated buffer and locks all previous allocation in place */
196void * mpeg2_bufalloc(unsigned size, mpeg2_alloc_t reason);
197/* clears all non-dedicated buffer space */
198void mpeg2_mem_reset(void);
193void mpeg2_alloc_init(unsigned char* buf, int mallocsize); 199void mpeg2_alloc_init(unsigned char* buf, int mallocsize);
194 200
195#endif /* MPEG2_H */ 201#endif /* MPEG2_H */