diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-22 16:13:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-22 20:30:38 +0200 |
commit | 729b2d02af234043dbceb9eee4c864103f6f0f6c (patch) | |
tree | 8c447c7969187c4f91d234412408f89303bd8d6d /libavcodec/utvideo.h | |
parent | d79c87a69776f861330857623ba1cbdef7c2f61f (diff) | |
download | ffmpeg-729b2d02af234043dbceb9eee4c864103f6f0f6c.tar.gz |
utvideoenc: align mangled buffer starts.
This is essential for fast SIMD accesses.
The same should be done with the predict output.
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 24413755d0..266291cec7 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -75,6 +75,7 @@ typedef struct UtvideoContext { int interlaced; int frame_pred; + int slice_stride; uint8_t *slice_bits, *slice_buffer[4]; int slice_bits_size; } UtvideoContext; |