avcodec/eatgq: move array to where it is used

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/391/head
Michael Niedermayer 6 months ago
parent 7e020f2141
commit cdce6a8b97
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64
  1. 2
      libavcodec/eatgq.c

@ -161,7 +161,6 @@ static int tgq_decode_mb(TgqContext *s, GetByteContext *gbyte,
{
int mode;
int i;
int8_t dc[6];
mode = bytestream2_get_byte(gbyte);
if (mode > 12) {
@ -178,6 +177,7 @@ static int tgq_decode_mb(TgqContext *s, GetByteContext *gbyte,
tgq_idct_put_mb(s, s->block, frame, mb_x, mb_y);
bytestream2_skip(gbyte, mode);
} else {
int8_t dc[6];
if (mode == 1) {
int x, y;
int mv = bytestream2_get_byte(gbyte);

Loading…
Cancel
Save