Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-22 18:13:12 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-08-22 22:30:38 +0400
commit729b2d02af234043dbceb9eee4c864103f6f0f6c (patch)
tree8c447c7969187c4f91d234412408f89303bd8d6d /libavcodec/utvideo.h
parentd79c87a69776f861330857623ba1cbdef7c2f61f (diff)
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.h1
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;