diff options
author | Benjamin Larsson <benjamin@southpole.se> | 2012-09-16 04:09:24 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-01-07 13:25:20 +0100 |
commit | bbae68596e78025c2165411eea84744c72d394df (patch) | |
tree | 7eb0d03f919874f15a822591d1082359a8e47c37 | |
parent | e817d9139ff6d761fbee2c990ff0b72789d3c17c (diff) | |
download | ffmpeg-bbae68596e78025c2165411eea84744c72d394df.tar.gz |
xwma: Remove unused variable
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavformat/xwma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c index 46ca0b80f1..baabf5775e 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -42,7 +42,7 @@ static int xwma_probe(AVProbeData *p) static int xwma_read_header(AVFormatContext *s) { - int64_t size, av_uninit(data_size); + int64_t size; int ret; uint32_t dpds_table_size = 0; uint32_t *dpds_table = 0; |