Commit 794a7ccd authored by Dmitry Kovalev's avatar Dmitry Kovalev
Browse files

Fixing warning generated by gcc.

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

Change-Id: I6f130e280e2db261506a4af8ce11fc788ad13198
Showing with 1 addition and 1 deletion
...@@ -89,7 +89,7 @@ struct vpx_codec_alg_priv { ...@@ -89,7 +89,7 @@ struct vpx_codec_alg_priv {
unsigned int fixed_kf_cntr; 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) { switch (frame) {
case VP8_LAST_FRAME: case VP8_LAST_FRAME:
return VP9_LAST_FLAG; return VP9_LAST_FLAG;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment