mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/hevc_ps: Remove unused-but-set variable
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
624d0cf428
commit
bdaff63723
|
@ -122,7 +122,6 @@ int ff_hevc_decode_short_term_rps(GetBitContext *gb, AVCodecContext *avctx,
|
|||
uint8_t rps_predict = 0;
|
||||
int delta_poc;
|
||||
int k0 = 0;
|
||||
int k1 = 0;
|
||||
int k = 0;
|
||||
int i;
|
||||
|
||||
|
@ -172,8 +171,6 @@ int ff_hevc_decode_short_term_rps(GetBitContext *gb, AVCodecContext *avctx,
|
|||
rps->delta_poc[k] = delta_poc;
|
||||
if (delta_poc < 0)
|
||||
k0++;
|
||||
else
|
||||
k1++;
|
||||
k++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue