codec2: correct include order and add include dir

Include order (according to Android coding style):
1. local includes
2. ported Chromium vda includes
3. codec2 header includes
4. external includes (libchrome)
5. external includes (system, media, framework...)
6. c/c++ header includes

Bug: None
Test: run native tests
Change-Id: I7506cf4561a1df87a1bc8b6324d9419a01035b18
diff --git a/C2VDAComponent.cpp b/C2VDAComponent.cpp
index 36e1598..0c05807 100644
--- a/C2VDAComponent.cpp
+++ b/C2VDAComponent.cpp
@@ -5,21 +5,23 @@
 //#define LOG_NDEBUG 0
 #define LOG_TAG "C2VDAComponent"
 
-#include <inttypes.h>
-#include <algorithm>
-
-#include "C2VDAAdaptor.h"
+#include <C2VDAAdaptor.h>
 #define __C2_GENERATE_GLOBAL_VARS__
-#include "C2VDAComponent.h"
-#include "C2VDASupport.h"
-#include "base/bind.h"
-#include "base/bind_helpers.h"
-#include "videodev2.h"
+#include <C2VDAComponent.h>
+#include <C2VDASupport.h>
+
+#include <videodev2.h>
+
+#include <base/bind.h>
+#include <base/bind_helpers.h>
 
 #include <media/stagefright/MediaDefs.h>
 #include <utils/Log.h>
 #include <utils/misc.h>
 
+#include <inttypes.h>
+#include <algorithm>
+
 #define UNUSED(expr)  \
     do {              \
         (void)(expr); \