matroskadec: Mark variable as av_unused.

This avoids unused variable warnings when zlib/bzlib are not available.
This commit is contained in:
Diego Biurrun 2012-02-12 10:58:46 +01:00
parent 6df5c528ca
commit 529506b5f6
1 changed files with 1 additions and 1 deletions

View File

@ -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;