Browse Source

avcodec/hevc: drop redundant ifs()

Found-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
43b1fd5bb4
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavcodec/hevc.c

+ 2
- 4
libavcodec/hevc.c View File

@@ -335,10 +335,8 @@ static int set_sps(HEVCContext *s, const HEVCSPS *sps)
ff_videodsp_init (&s->vdsp, sps->bit_depth);

for (i = 0; i < 3; i++) {
if (s->sao_pixel_buffer_h[i])
av_freep(&s->sao_pixel_buffer_h[i]);
if (s->sao_pixel_buffer_v[i])
av_freep(&s->sao_pixel_buffer_v[i]);
av_freep(&s->sao_pixel_buffer_h[i]);
av_freep(&s->sao_pixel_buffer_v[i]);
}

if (sps->sao_enabled && !s->avctx->hwaccel) {


Loading…
Cancel
Save