matroskadec: Mark variable as av_unused.

This avoids unused variable warnings when zlib/bzlib are not available.
pull/3/merge
Diego Biurrun 13 years ago
parent 6df5c528ca
commit 529506b5f6
  1. 2
      libavformat/matroskadec.c

@ -939,7 +939,7 @@ static int matroska_decode_buffer(uint8_t** buf, int* buf_size,
uint8_t* data = *buf;
int isize = *buf_size;
uint8_t* pkt_data = NULL;
uint8_t* newpktdata;
uint8_t av_unused *newpktdata;
int pkt_size = isize;
int result = 0;
int olen;

Loading…
Cancel
Save