Fix unused parameter warning in decodemv.c
This warning only comes up if none of the experiments ext-intra,
palette and filter-intra are enabled.
Change-Id: Ic58863d8d845034aa52230bf52a3c5def8d3ac0f
diff --git a/av1/decoder/decodemv.c b/av1/decoder/decodemv.c
index cff90b5..4fe3fd9 100644
--- a/av1/decoder/decodemv.c
+++ b/av1/decoder/decodemv.c
@@ -1819,6 +1819,10 @@
}
#endif
+ // Explicitly ignore cm here to avoid a compile warning if none of
+ // ext-intra, palette and filter-intra are enabled.
+ (void)cm;
+
#if CONFIG_EXT_INTRA
read_intra_angle_info(cm, xd, r);
#endif // CONFIG_EXT_INTRA