Commit 2367a195 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

probably fixed compile error on MacOSX 10.6

parent 2907eec6
......@@ -2050,7 +2050,7 @@ bool InputMediaStream_FFMPEG::read(unsigned char** data, int* size, int* endOfFi
if (ret < 0)
{
if ((int64_t)ret == (int64_t)AVERROR_EOF)
if (ret == AVERROR_EOF)
*endOfFile = true;
return false;
}
......
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