Tree clean up.
Relocate C source and include files from the root of the
repository to more appropriate places. Helps quiet linters.
- Move common app support sources and includes to common/
- Move apps to apps/
- Move stats support to stats/
- Drop unnecessary includes of aom_config.h where appropriate
- Clean up include order where appropriate
- Change CMake build to accomodate the above
- Fix resize_util and add it to app targets.
Change-Id: I268838e93400c67eb365aba9d2ecb2891538fc07
diff --git a/examples/analyzer.cc b/examples/analyzer.cc
index 0e7ba15..6a42eca 100644
--- a/examples/analyzer.cc
+++ b/examples/analyzer.cc
@@ -12,13 +12,14 @@
#include <wx/aboutdlg.h>
#include <wx/cmdline.h>
#include <wx/dcbuffer.h>
-#include "./tools_common.h"
-#include "./video_reader.h"
+
#include "aom/aom_decoder.h"
#include "aom/aomdx.h"
-#include "av1/decoder/accounting.h"
#include "av1/common/onyxc_int.h"
+#include "av1/decoder/accounting.h"
#include "av1/decoder/inspection.h"
+#include "common/tools_common.h"
+#include "common/video_reader.h"
#define OD_SIGNMASK(a) (-((a) < 0))
#define OD_FLIPSIGNI(a, b) (((a) + OD_SIGNMASK(b)) ^ OD_SIGNMASK(b))