diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-05 17:59:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-05 17:59:26 +0000 |
commit | f7b47594dca27fffed9d0314ac09ffc1316514b5 (patch) | |
tree | ec0d9e214c41daa688b94201bdf1cd8a2753a927 /libavcodec/mpegvideo.h | |
parent | 369fe5993f4df8796081ffd47ffd9d83a6529cb6 (diff) | |
download | ffmpeg-f7b47594dca27fffed9d0314ac09ffc1316514b5.tar.gz |
negative linesize support (so mplayer -flip works)
Originally committed as revision 1395 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 6d794d8626..e6909817aa 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -232,7 +232,8 @@ typedef struct MpegEncContext { UINT8 *mbintra_table; /* used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding */ UINT8 *cbp_table; /* used to store cbp, ac_pred for partitioned decoding */ UINT8 *pred_dir_table; /* used to store pred_dir for partitioned decoding */ - UINT8 *edge_emu_buffer; + uint8_t *allocated_edge_emu_buffer; + uint8_t *edge_emu_buffer; /* points into the middle of allocated_edge_emu_buffer */ int qscale; /* QP */ float frame_qscale; /* qscale from the frame level rc FIXME remove*/ |