[Clientapps-cvs] symbianMmf hxmmfmetadata.cpp,1.9,1.10
gashish at helixcommunity.org gashish at helixcommunity.orgUpdate of /cvsroot/clientapps/symbianMmf In directory cvs:/tmp/cvs-serv32674 Modified Files: hxmmfmetadata.cpp Log Message: "Description" field missing in MetaData. "Nokia submits this code under the terms of a commercial contribution agreement with RealNetworks, and I am authorized to contribute this code under said agreement." Modified by: ashish.as.gupta at nokia.com Reviewed by: Date: 03-8-2006 Error ID: TSW ID=EHSG-6MHP24 Project: Helix plugin for Symbian Synopsis: "Description" field missing in MetaData. Missing "Description" field is added in the MetaData. 3GPP files provide this from the descrition atom. Similar other fields that might be required in future are also added. Files Modified: clientapps/symbianMmf/hxmmfmetadata.cpp Files Added: None. Image Size and Heap Use impact: Minor Platforms and Profiles Build Verified: helix-client-s60-mmf-mdf-basic Platforms and Profiles Functionality verified: armv5 Branch: head, hxclient_2_1_0_cayennes Index: hxmmfmetadata.cpp =================================================================== RCS file: /cvsroot/clientapps/symbianMmf/hxmmfmetadata.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- hxmmfmetadata.cpp 27 Feb 2006 16:16:48 -0000 1.9 +++ hxmmfmetadata.cpp 10 Mar 2006 15:17:56 -0000 1.10 @@ -135,6 +135,15 @@ if ( val::GetString( header, "Author", str, val::buffer ) ) AddToClipInfoL("Author", str); + if ( val::GetString( header, "Abstract", str, val::buffer ) ) + AddToClipInfoL("Description", str); + + if ( val::GetString( header, "Genre", str, val::buffer ) ) + AddToClipInfoL("Genre", str); + + if ( val::GetString( header, "Performer", str, val::buffer ) ) + AddToClipInfoL("Performer", str); + TInt isLive = m_clipHeader.IsLive(); if ( isLive )