Commit ee2e5acd authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dxtory: remove unused variables

Found-by: 's avatarBenoit Fouet <benoit.fouet@free.fr>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4c57be12
...@@ -410,7 +410,7 @@ static int dxtory_decode_v2_410(AVCodecContext *avctx, AVFrame *pic, ...@@ -410,7 +410,7 @@ static int dxtory_decode_v2_410(AVCodecContext *avctx, AVFrame *pic,
{ {
GetByteContext gb; GetByteContext gb;
GetBitContext gb2; GetBitContext gb2;
int nslices, slice, slice_height, ref_slice_height; int nslices, slice, slice_height;
int cur_y, next_y; int cur_y, next_y;
uint32_t off, slice_size; uint32_t off, slice_size;
uint8_t *Y, *U, *V; uint8_t *Y, *U, *V;
...@@ -430,7 +430,6 @@ static int dxtory_decode_v2_410(AVCodecContext *avctx, AVFrame *pic, ...@@ -430,7 +430,6 @@ static int dxtory_decode_v2_410(AVCodecContext *avctx, AVFrame *pic,
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
ref_slice_height = avctx->height / nslices;
if ((avctx->width & 3) || (avctx->height & 3)) { if ((avctx->width & 3) || (avctx->height & 3)) {
avpriv_request_sample(avctx, "Frame dimensions %dx%d", avpriv_request_sample(avctx, "Frame dimensions %dx%d",
avctx->width, avctx->height); avctx->width, avctx->height);
...@@ -513,7 +512,7 @@ static int dxtory_decode_v2_420(AVCodecContext *avctx, AVFrame *pic, ...@@ -513,7 +512,7 @@ static int dxtory_decode_v2_420(AVCodecContext *avctx, AVFrame *pic,
{ {
GetByteContext gb; GetByteContext gb;
GetBitContext gb2; GetBitContext gb2;
int nslices, slice, slice_height, ref_slice_height; int nslices, slice, slice_height;
int cur_y, next_y; int cur_y, next_y;
uint32_t off, slice_size; uint32_t off, slice_size;
uint8_t *Y, *U, *V; uint8_t *Y, *U, *V;
...@@ -533,7 +532,6 @@ static int dxtory_decode_v2_420(AVCodecContext *avctx, AVFrame *pic, ...@@ -533,7 +532,6 @@ static int dxtory_decode_v2_420(AVCodecContext *avctx, AVFrame *pic,
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
ref_slice_height = avctx->height / nslices;
if ((avctx->width & 1) || (avctx->height & 1)) { if ((avctx->width & 1) || (avctx->height & 1)) {
avpriv_request_sample(avctx, "Frame dimensions %dx%d", avpriv_request_sample(avctx, "Frame dimensions %dx%d",
avctx->width, avctx->height); avctx->width, avctx->height);
......
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