Commit 953d55f4 authored by James Almer's avatar James Almer

Merge commit '26d9b603'

* commit '26d9b603':
  hevc: Avoid using LOCAL_ALIGNED for 4 byte alignment
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents d289f3fe 26d9b603
...@@ -482,7 +482,7 @@ void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0, int nPbW, ...@@ -482,7 +482,7 @@ void ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0, int nPbW,
{ {
int singleMCLFlag = 0; int singleMCLFlag = 0;
int nCS = 1 << log2_cb_size; 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 nPbW2 = nPbW;
int nPbH2 = nPbH; int nPbH2 = nPbH;
HEVCLocalContext *lc = s->HEVClc; HEVCLocalContext *lc = s->HEVClc;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment