mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/nutdec: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b1ad931233
commit
d04aceb7d0
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user