shithub: libvpx

Download patch

ref: 5ae4ba5774a944da16d2a3ca18218ff628f40556
parent: 7fb5e738972260879d7f1f47e687e4f435fdcb89
author: Tom Finegan <tomfinegan@google.com>
date: Sat Nov 16 03:31:20 EST 2013

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

--- a/vpxdec.c
+++ b/vpxdec.c
@@ -245,6 +245,9 @@
     }
 
     return 0;
+  } else if (kind == FILE_TYPE_IVF) {
+    return ivf_read_frame(input->vpx_input_ctx,
+                          buf, bytes_in_buffer, buffer_size);
   }
 
   return 1;