diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-22 15:37:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-22 20:30:33 +0200 |
commit | ba69eb5221f55a6bcb93817760e1a888b6dac529 (patch) | |
tree | d3122965ae8f79acdefabd27f96131cada4170ea /libavcodec/utvideo.h | |
parent | f92f4935acd7d974adfd1deebdf1bb06cbe107ca (diff) | |
download | ffmpeg-ba69eb5221f55a6bcb93817760e1a888b6dac529.tar.gz |
utvideoenc: avoid writing into the input picture.
Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utvideo.h')
-rw-r--r-- | libavcodec/utvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 00c44be9a9..24413755d0 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -75,7 +75,7 @@ typedef struct UtvideoContext { int interlaced; int frame_pred; - uint8_t *slice_bits, *slice_buffer; + uint8_t *slice_bits, *slice_buffer[4]; int slice_bits_size; } UtvideoContext; |