mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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:
parent
0c494114cc
commit
43b1fd5bb4
@ -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…
Reference in New Issue
Block a user