Fix copy and paste errors for mime type strings in the 3GP reader

Change-Id: Ia91b06f4dba9e4265260b28aabeeffeceff6d157
diff --git a/libvideoeditor/vss/stagefrightshells/src/VideoEditor3gpReader.cpp b/libvideoeditor/vss/stagefrightshells/src/VideoEditor3gpReader.cpp
index fd119b1..b91c2ee 100755
--- a/libvideoeditor/vss/stagefrightshells/src/VideoEditor3gpReader.cpp
+++ b/libvideoeditor/vss/stagefrightshells/src/VideoEditor3gpReader.cpp
@@ -1601,7 +1601,7 @@
                         (*pStreamHandler)->m_ESDSInfoSize = size;
                         (*pStreamHandler)->m_pESDSInfo = (M4OSA_UInt8*)\
                         M4OSA_32bitAlignedMalloc((*pStreamHandler)->m_ESDSInfoSize,
-                        M4READER_3GP, (M4OSA_Char*)"H263 DecoderSpecific" );
+                        M4READER_3GP, (M4OSA_Char*)"M4V DecoderSpecific" );
                         if (M4OSA_NULL == (*pStreamHandler)->m_pESDSInfo) {
                             return M4ERR_ALLOC;
                         }
@@ -1719,7 +1719,7 @@
                     if ((*pStreamHandler)->m_decoderSpecificInfoSize != 0) {
                         DecoderSpecific = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(
                             (*pStreamHandler)->m_decoderSpecificInfoSize,
-                            M4READER_3GP, (M4OSA_Char*)"H263 DecoderSpecific" );
+                            M4READER_3GP, (M4OSA_Char*)"AMR DecoderSpecific" );
                         if (M4OSA_NULL == DecoderSpecific) {
                             return M4ERR_ALLOC;
                         }
@@ -1737,7 +1737,7 @@
                     (*pStreamHandler)->m_decoderSpecificInfoSize = 9;
                     DecoderSpecific = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(
                         (*pStreamHandler)->m_decoderSpecificInfoSize,
-                        M4READER_3GP, (M4OSA_Char*)"H263 DecoderSpecific" );
+                        M4READER_3GP, (M4OSA_Char*)"PHLP DecoderSpecific" );
                     if (M4OSA_NULL == DecoderSpecific) {
                         return M4ERR_ALLOC;
                     }
@@ -1761,7 +1761,7 @@
                     (*pStreamHandler)->m_ESDSInfoSize = size;
                     (*pStreamHandler)->m_pESDSInfo = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(
                         (*pStreamHandler)->m_ESDSInfoSize, M4READER_3GP,
-                        (M4OSA_Char*)"H263 DecoderSpecific" );
+                        (M4OSA_Char*)"AAC DecoderSpecific" );
                     if (M4OSA_NULL == (*pStreamHandler)->m_pESDSInfo) {
                         return M4ERR_ALLOC;
                     }
@@ -1778,7 +1778,7 @@
                     if ((*pStreamHandler)->m_decoderSpecificInfoSize != 0) {
                         DecoderSpecific = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(
                             (*pStreamHandler)->m_decoderSpecificInfoSize,
-                            M4READER_3GP, (M4OSA_Char*)"H263 DecoderSpecific" );
+                            M4READER_3GP, (M4OSA_Char*)"AAC DecoderSpecific" );
                         if (M4OSA_NULL == DecoderSpecific) {
                             return M4ERR_ALLOC;
                         }