diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-22 15:36:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-22 15:36:46 +0000 |
commit | 9d9e31722ad6dda86da0ccb7eb72004c99057274 (patch) | |
tree | 7d399fb3166011b1e0ee66eb172ae9e5cf9584ed /libavcodec/mpegvideo.h | |
parent | 45686da26db54f1ca7195b360230574f7be3b2f3 (diff) | |
download | ffmpeg-9d9e31722ad6dda86da0ccb7eb72004c99057274.tar.gz |
112 bytes smaller MpegEncContext
Originally committed as revision 2414 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index af01cba210..40a3bdfc04 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -302,8 +302,8 @@ typedef struct MpegEncContext { int linesize; ///< line size, in bytes, may be different from width int uvlinesize; ///< line size, for chroma in bytes, may be different from width Picture *picture; ///< main picture buffer - Picture *input_picture[MAX_PICTURE_COUNT]; ///< next pictures on display order for encoding - Picture *reordered_input_picture[MAX_PICTURE_COUNT]; ///< pointer to the next pictures in codedorder for encoding + Picture **input_picture; ///< next pictures on display order for encoding + Picture **reordered_input_picture; ///< pointer to the next pictures in codedorder for encoding /** * copy of the previous picture structure. |