diff options
author | Clément Bœsch <[email protected]> | 2011-05-29 21:07:34 +0200 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2011-05-30 00:24:01 +0200 |
commit | adba9c63525b8971fc6ccda47e643dca05c3ee9d (patch) | |
tree | 7f4521c4ceaf684a4cdc4f8b57db30a4364c35e0 /libavformat/oggparseogm.c | |
parent | fd38a15adf7f4e20f25d89f162e4a8fbbd8ec92e (diff) |
Fix various unused variable warnings
Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'libavformat/oggparseogm.c')
-rw-r--r-- | libavformat/oggparseogm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c index dda5be601a..ec575e068d 100644 --- a/libavformat/oggparseogm.c +++ b/libavformat/oggparseogm.c @@ -39,7 +39,7 @@ ogm_header(AVFormatContext *s, int idx) const uint8_t *p = os->buf + os->pstart; uint64_t time_unit; uint64_t spu; - uint32_t default_len; + uint32_t default_len av_unused; if(!(*p & 1)) return 0; |