Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-08-01 03:29:37 +0400
committerPaul B Mahol <onemda@gmail.com>2012-08-01 07:15:32 +0400
commitc36bad3b895c908c270af8b526687307a15855d9 (patch)
treea959f9e04a29703c341a53e88fe6086e4bec06a5 /libavformat/xwma.c
parentb0c51bbcd18b4438128dbaabfe1c864bef252b4c (diff)
xvma: remove unused variable
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r--libavformat/xwma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c
index bd3af35b72..f8561d1522 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;