Commit 5162e5b9 authored by michael's avatar michael

Remove unused variable from flv_read_metabody() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18571 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d1673c1e
......@@ -223,12 +223,11 @@ static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
AMFDataType type;
AVStream *stream, *astream, *vstream;
ByteIOContext *ioc;
int i, keylen;
int i;
char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want.
astream = NULL;
vstream = NULL;
keylen = 0;
ioc = s->pb;
//first object needs to be "onMetaData" string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment