Commit 706c9bea authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/lagarith: Remove redundant varianble init

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 088b0742
......@@ -541,7 +541,7 @@ static int lag_decode_frame(AVCodecContext *avctx,
LagarithContext *l = avctx->priv_data;
ThreadFrame frame = { .f = data };
AVFrame *const p = data;
uint8_t frametype = 0;
uint8_t frametype;
uint32_t offset_gu = 0, offset_bv = 0, offset_ry = 9;
uint32_t offs[4];
uint8_t *srcs[4], *dst;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment