equal
deleted
inserted
replaced
230 { |
230 { |
231 // find MIME type |
231 // find MIME type |
232 TInt slashPos = aRtpmapValue.Find( _L8( "/" ) ); |
232 TInt slashPos = aRtpmapValue.Find( _L8( "/" ) ); |
233 if ( slashPos != KErrNotFound ) |
233 if ( slashPos != KErrNotFound ) |
234 { |
234 { |
235 return aRtpmapValue.Left(slashPos).Compare( iSdpName ) == 0; |
235 return aRtpmapValue.Left(slashPos).CompareF( iSdpName ) == 0; |
236 } |
236 } |
237 |
237 |
238 return aRtpmapValue.FindF(iSdpName) == 0; |
238 return aRtpmapValue.FindF(iSdpName) == 0; |
239 } |
239 } |
240 |
240 |