summaryrefslogtreecommitdiff
path: root/src/libmpeg2/mpeg2.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-03-24 14:15:36 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-03-24 14:15:36 +0000
commit0b1e872fa96412fdf7dc54b8f18ab34ac148e65d (patch)
treea0da29367fe2d667485a63d38c7e6e5380916a99 /src/libmpeg2/mpeg2.h
parent6d9934d47e664e902402f49c4cf962de5627bc87 (diff)
downloadxine-lib-0b1e872fa96412fdf7dc54b8f18ab34ac148e65d.tar.gz
xine-lib-0b1e872fa96412fdf7dc54b8f18ab34ac148e65d.tar.bz2
scr unregister patch from Michael Roitzsch, buffer mem release fix, xmalloc_aligned cleanup - fb vo plugin needs to be fixed for this one
CVS patchset: 1626 CVS date: 2002/03/24 14:15:36
Diffstat (limited to 'src/libmpeg2/mpeg2.h')
-rw-r--r--src/libmpeg2/mpeg2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmpeg2/mpeg2.h b/src/libmpeg2/mpeg2.h
index a0efeaac5..6e70f4bd9 100644
--- a/src/libmpeg2/mpeg2.h
+++ b/src/libmpeg2/mpeg2.h
@@ -25,7 +25,7 @@ typedef struct mpeg2dec_s {
vo_instance_t * output;
/* this is where we keep the state of the decoder */
- struct picture_s * picture;
+ struct picture_s * picture, *picture_base;
uint32_t shift;
int is_sequence_needed;
@@ -37,7 +37,7 @@ typedef struct mpeg2dec_s {
/* which is 224K for MP@ML streams. */
/* (we make no pretenses of decoding anything more than that) */
/* allocated in init - gcc has problems allocating such big structures */
- uint8_t * chunk_buffer;
+ uint8_t * chunk_buffer, *chunk_base;
/* pointer to current position in chunk_buffer */
uint8_t * chunk_ptr;
/* last start code ? */