diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-07-15 13:32:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-07-18 13:59:25 +0200 |
commit | 706c9beaead70ee861e183338e136382b17ade05 (patch) | |
tree | c4b0294b5253e77868d47069cd34c857acde2d5b | |
parent | 088b07427dfe05de998609fe214017ebdb703a63 (diff) | |
download | ffmpeg-706c9beaead70ee861e183338e136382b17ade05.tar.gz |
avcodec/lagarith: Remove redundant varianble init
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/lagarith.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lagarith.c b/libavcodec/lagarith.c index ba2da2eeb2..510a6ff2d6 100644 --- a/libavcodec/lagarith.c +++ b/libavcodec/lagarith.c @@ -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; |