diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-12-29 19:46:35 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-12-29 19:46:35 +0000 |
| commit | a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1 (patch) | |
| tree | d393a23d83549f99772bb156e59ffb88725148b6 /apps/plugins/mpegplayer/mpeg_alloc.h | |
| parent | 1d0f6b90ff43776e55b4b9f062c9bea3f99aa768 (diff) | |
| download | rockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.zip rockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.tar.gz rockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.tar.bz2 rockbox-a222f27c4a17ed8f9809cda7861fe5f23d4cc0c1.tar.xz | |
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/mpeg_alloc.h')
| -rw-r--r-- | apps/plugins/mpegplayer/mpeg_alloc.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_alloc.h b/apps/plugins/mpegplayer/mpeg_alloc.h new file mode 100644 index 0000000..9a08fd5 --- /dev/null +++ b/apps/plugins/mpegplayer/mpeg_alloc.h @@ -0,0 +1,12 @@ +#ifndef MPEG_ALLOC_H +#define MPEG_ALLOC_H + +/* returns the remaining mpeg2 buffer and it's size */ +void * mpeg2_get_buf(size_t *size); +void *mpeg_malloc(size_t size, mpeg2_alloc_t reason); +/* Grabs all the buffer available sans margin */ +void *mpeg_malloc_all(size_t *size_out, mpeg2_alloc_t reason); +/* Initializes the malloc buffer with the given base buffer */ +bool mpeg_alloc_init(unsigned char *buf, size_t mallocsize); + +#endif /* MPEG_ALLOC_H */ |