mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
hevc: Avoid using LOCAL_ALIGNED for 4 byte alignment
The data types within the MvField struct themselves imply 4 byte alignment. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
163cc67beb
commit
26d9b60373
@ -550,7 +550,7 @@ void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0, int nPbW,
|
||||
{
|
||||
int singleMCLFlag = 0;
|
||||
int nCS = 1 << log2_cb_size;
|
||||
LOCAL_ALIGNED(4, MvField, mergecand_list, [MRG_MAX_NUM_CANDS]);
|
||||
MvField mergecand_list[MRG_MAX_NUM_CANDS];
|
||||
int nPbW2 = nPbW;
|
||||
int nPbH2 = nPbH;
|
||||
HEVCLocalContext *lc = &s->HEVClc;
|
||||
|
Loading…
Reference in New Issue
Block a user