Commit b55dd10d authored by Joseph Wecker's avatar Joseph Wecker Committed by Michael Niedermayer

Fix typeo in some rarely used memoization

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d31c68a7
...@@ -342,7 +342,7 @@ static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) { ...@@ -342,7 +342,7 @@ static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) {
stream = s->streams[i]; stream = s->streams[i];
if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream; if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) vstream = stream;
else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream; else if(stream->codec->codec_type == AVMEDIA_TYPE_AUDIO) astream = stream;
else if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO) dstream = stream; else if(stream->codec->codec_type == AVMEDIA_TYPE_DATA) dstream = stream;
} }
//parse the second object (we want a mixed array) //parse the second object (we want a mixed array)
......
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