From: Tom Finegan Date: Sat, 16 Nov 2013 16:31:20 +0000 (-0800) Subject: vpxdec: Restore IVF support. X-Git-Tag: v1.4.0~3021 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ae4ba5774a944da16d2a3ca18218ff628f40556;p=libvpx vpxdec: Restore IVF support. Refactored IVF frame reading code out into ivf_read_frame(). Forgot to actually make the function call in read_frame(). Change-Id: Ie9f6917e70bd26d0352a761932465c60a29a1f81 --- diff --git a/vpxdec.c b/vpxdec.c index a5bb1c556..ab9bc7c34 100644 --- a/vpxdec.c +++ b/vpxdec.c @@ -245,6 +245,9 @@ static int read_frame(struct VpxDecInputContext *input, } return 0; + } else if (kind == FILE_TYPE_IVF) { + return ivf_read_frame(input->vpx_input_ctx, + buf, bytes_in_buffer, buffer_size); } return 1;