diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-01 17:29:22 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-02 20:06:18 +0100 |
commit | 14086341bfd2f8f5a5dfbb23868bf8cf677862ef (patch) | |
tree | 87a7dbdb87d0cb560a6ba6af201f117d24e98bc9 /libavformat/nutdec.c | |
parent | e65ab9d94f1c8d8893e32d90467d9525625d306a (diff) | |
download | ffmpeg-14086341bfd2f8f5a5dfbb23868bf8cf677862ef.tar.gz |
nutdec: remove unused variable
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 0a1ed554e3..d8278175a0 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -190,7 +190,6 @@ static int decode_main_header(NUTContext *nut){ uint64_t tmp, end; unsigned int stream_count; int i, j, tmp_stream, tmp_mul, tmp_pts, tmp_size, count, tmp_res, tmp_head_idx; - int64_t tmp_match; end= get_packetheader(nut, bc, 1, MAIN_STARTCODE); end += avio_tell(bc); @@ -218,7 +217,6 @@ static int decode_main_header(NUTContext *nut){ tmp_pts=0; tmp_mul=1; tmp_stream=0; - tmp_match= 1-(1LL<<62); tmp_head_idx= 0; for(i=0; i<256;){ int tmp_flags = ffio_read_varlen(bc); @@ -232,7 +230,7 @@ static int decode_main_header(NUTContext *nut){ else tmp_res = 0; if(tmp_fields>5) count = ffio_read_varlen(bc); else count = tmp_mul - tmp_size; - if(tmp_fields>6) tmp_match = get_s(bc); + if(tmp_fields>6) get_s(bc); if(tmp_fields>7) tmp_head_idx= ffio_read_varlen(bc); while(tmp_fields-- > 8) |