summaryrefslogtreecommitdiff
path: root/libavcodec/hevc.h
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2014-08-08 18:21:02 +0000
committerAnton Khirnov <anton@khirnov.net>2014-08-12 10:03:20 +0000
commitcf6090dc6252f2b276aa4133e3d73a89f4c6046c (patch)
tree73b08aabe6484a1c2aebecc6f5f32b94be63b319 /libavcodec/hevc.h
parented53cc217f6a6e4ddb35e3f01a79496091dc82dc (diff)
hevc: use intreadwrite
When dealing with MVs, both components may be processed at a time. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 03980b729c..93c5125665 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -621,7 +621,7 @@ typedef struct Mv {
} Mv;
typedef struct MvField {
- Mv mv[2];
+ DECLARE_ALIGNED(4, Mv, mv)[2];
int8_t ref_idx[2];
int8_t pred_flag[2];
uint8_t is_intra;