bitstream-dbg: Add missing include to decodeframe
If daala_ec is disabled while bistream_debug is enabled, decodeframe.c
fails to compile due to aom_util/debug_util.h not being included
directly.
This patch just adds the missing include so that decodeframe.c will
still build with bitstream_debug enabled and daala_ec disabled.
Change-Id: I2e7eebdd17431a804be5b00239a9ae581e73f731
diff --git a/av1/decoder/decodeframe.c b/av1/decoder/decodeframe.c
index e9d550b..2285b1f 100644
--- a/av1/decoder/decodeframe.c
+++ b/av1/decoder/decodeframe.c
@@ -28,6 +28,10 @@
#include "aom_scale/aom_scale.h"
#include "aom_util/aom_thread.h"
+#if CONFIG_BITSTREAM_DEBUG
+#include "aom_util/debug_util.h"
+#endif // CONFIG_BITSTREAM_DEBUG
+
#include "av1/common/alloccommon.h"
#if CONFIG_CDEF
#include "av1/common/cdef.h"