use more correct case condition when consume input

InputMessage::TYPE_MOTION instead of AINPUT_EVENT_TYPE_MOTION
Although these two values are the same

Test: input

Change-Id: Ic1478cf2a5ef1706844d89428ef3a7e999877bcc
Signed-off-by: gaoshang <gaoshang@xiaomi.com>
diff --git a/libs/input/InputTransport.cpp b/libs/input/InputTransport.cpp
index 293bc25..8b3a1d0 100644
--- a/libs/input/InputTransport.cpp
+++ b/libs/input/InputTransport.cpp
@@ -446,7 +446,7 @@
             break;
         }
 
-        case AINPUT_EVENT_TYPE_MOTION: {
+        case InputMessage::TYPE_MOTION: {
             ssize_t batchIndex = findBatch(mMsg.body.motion.deviceId, mMsg.body.motion.source);
             if (batchIndex >= 0) {
                 Batch& batch = mBatches.editItemAt(batchIndex);