avformat/nutdec: remove unused variable

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-01-05 17:27:23 +01:00
parent b1ad931233
commit d04aceb7d0
1 changed files with 2 additions and 2 deletions

View File

@ -792,11 +792,11 @@ static int read_sm_data(AVFormatContext *s, AVIOContext *bc, AVPacket *pkt, int
for (i=0; i<count; i++) {
uint8_t name[256], str_value[256], type_str[256];
int value, type;
int value;
if (avio_tell(bc) >= maxpos)
return AVERROR_INVALIDDATA;
get_str(bc, name, sizeof(name));
type = value = get_s(bc);
value = get_s(bc);
if (value == -1) {
get_str(bc, str_value, sizeof(str_value));