Commit 099f1b39 authored by mru's avatar mru

do not fail av_find_stream_info() if params for all streams could not be found


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5545 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d0b7536f
......@@ -1939,11 +1939,10 @@ int av_find_stream_info(AVFormatContext *ic)
char buf[256];
avcodec_string(buf, sizeof(buf), st->codec, 0);
av_log(ic, AV_LOG_INFO, "Could not find codec parameters (%s)\n", buf);
break;
} else {
ret = 0;
}
}
if (i == ic->nb_streams)
ret = 0;
break;
}
......
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