avcodec/hevc: drop redundant ifs()

Found-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-05 22:29:55 +01:00
parent 0c494114cc
commit 43b1fd5bb4
1 changed files with 2 additions and 4 deletions

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) {