shithub: libvpx

Download patch

ref: 794a7ccd78a4ee2fa8cdf0d99a03142dd6b1526e
parent: 831d72ac5f21ea53d4a466f411fd9b6a5af605fc
author: Dmitry Kovalev <dkovalev@google.com>
date: Thu Sep 26 06:33:21 EDT 2013

Fixing warning generated by gcc.

vp9/vp9_cx_iface.c:92: warning: type qualifiers ignored on function
return type

Change-Id: I6f130e280e2db261506a4af8ce11fc788ad13198

--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -89,7 +89,7 @@
   unsigned int                fixed_kf_cntr;
 };
 
-static const VP9_REFFRAME ref_frame_to_vp9_reframe(vpx_ref_frame_type_t frame) {
+static VP9_REFFRAME ref_frame_to_vp9_reframe(vpx_ref_frame_type_t frame) {
   switch (frame) {
     case VP8_LAST_FRAME:
       return VP9_LAST_FLAG;