Browse Source

hevc: Do not left shift a negative value in hevc_loop_filter_chroma

tags/n2.2-rc1
Luca Barbato 11 years ago
parent
commit
8eeacf31c5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/hevcdsp_template.c

+ 1
- 1
libavcodec/hevcdsp_template.c View File

@@ -1281,7 +1281,7 @@ static void FUNC(hevc_loop_filter_chroma)(uint8_t *_pix, ptrdiff_t _xstride,
const int p0 = P0;
const int q0 = Q0;
const int q1 = Q1;
delta0 = av_clip((((q0 - p0) << 2) + p1 - q1 + 4) >> 3, -tc, tc);
delta0 = av_clip((((q0 - p0) * 4) + p1 - q1 + 4) >> 3, -tc, tc);
if (!no_p)
P0 = av_clip_pixel(p0 + delta0);
if (!no_q)


Loading…
Cancel
Save