From cf6090dc6252f2b276aa4133e3d73a89f4c6046c Mon Sep 17 00:00:00 2001 From: Christophe Gisquet Date: Fri, 8 Aug 2014 18:21:02 +0000 Subject: hevc: use intreadwrite When dealing with MVs, both components may be processed at a time. Signed-off-by: Anton Khirnov --- libavcodec/hevc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/hevc.h') diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 03980b7..93c5125 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; -- cgit v1.1