vpxdec updated to use !feof() instead of *buf_sz in readframe()

For partial droped frames using *buf_sz could incorrectly terminate
a decode.

Change-Id: Id4a1166fa9ae6c0aa7e9f214bfa4c0be0ea82c1c
This commit is contained in:
James Berry 2011-09-22 15:03:28 -04:00
Родитель 6f9457ec12
Коммит 9b85079342
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -303,7 +303,7 @@ static int read_frame(struct input_ctx *input,
*buf_sz = new_buf_sz;
if (*buf_sz)
if (!feof(infile))
{
if (fread(*buf, 1, *buf_sz, infile) != *buf_sz)
{