probably fixed compile error on MacOSX 10.6

This commit is contained in:
Vadim Pisarevsky 2012-08-31 14:35:11 +04:00
parent 2907eec670
commit 2367a195c5

View File

@ -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;
}