mmappcomponents/mmmtpdataprovider/mmmtpdpplugins/mediamtpdataprovider/src/cmediamtpdataproviderdescriptionutility.cpp
branchRCL_3
changeset 17 780c925249c1
parent 15 d240f0a77280
child 28 f56ec6ce2732
--- a/mmappcomponents/mmmtpdataprovider/mmmtpdpplugins/mediamtpdataprovider/src/cmediamtpdataproviderdescriptionutility.cpp	Mon Mar 15 12:42:31 2010 +0200
+++ b/mmappcomponents/mmmtpdataprovider/mmmtpdpplugins/mediamtpdataprovider/src/cmediamtpdataproviderdescriptionutility.cpp	Wed Mar 31 22:26:09 2010 +0300
@@ -120,7 +120,6 @@
         case EMTPObjectPropCodeArtist: // Artist
         case EMTPObjectPropCodeTrack: // Track
         case EMTPObjectPropCodeGenre: // Genre
-        case EMTPObjectPropCodeUseCount: // Use Count
         case EMTPObjectPropCodeAlbumName: // Album Name
         case EMTPObjectPropCodeAlbumArtist: // Album Artist
         case EMTPObjectPropCodeOriginalReleaseDate: // Original Release Date
@@ -531,16 +530,17 @@
     CMTPTypeObjectPropDescEnumerationForm* expectedForm =
         CMTPTypeObjectPropDescEnumerationForm::NewLC( EMTPTypeString ); // + expectedForm
 
-    CMTPTypeString* string = CMTPTypeString::NewLC( _L("SP@LL") );    // + string
+    CMTPTypeString* string = CMTPTypeString::NewLC( _L( "SP@LL" ) );    // + string
     expectedForm->AppendSupportedValueL( *string );
-    string->SetL( _L("SP@ML") );
+    string->SetL( _L("SP@ML"));
     expectedForm->AppendSupportedValueL( *string );
-    string->SetL( _L("MP@LL") );
+    string->SetL( _L("MP@LL"));
     expectedForm->AppendSupportedValueL( *string );
 
-    string->SetL( _L("MP@ML") );
+    // newly added to support 720p content as suggested by Helix team
+    string->SetL( _L("MP@ML"));
     expectedForm->AppendSupportedValueL( *string );
-    string->SetL( _L("MP@HL") );
+    string->SetL( _L("MP@HL"));
     expectedForm->AppendSupportedValueL( *string );
 
     CMTPTypeObjectPropDesc::TPropertyInfo propertyInfo;