// -----------------------------------------------------------------------------
// CCMRVideoCodecs::GetSupportedVideoCodecsL
// Get the supported & installed video codecs.
// This can be called also when the recorder is not open
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
void CCMRVideoCodecs::GetSupportedVideoCodecsL(CDesC8Array& aVideoMimeTypes) const
    {
    aVideoMimeTypes.Reset();

    // copy from iVideoMimeTypes
    TInt i;
    for ( i = 0; i < iVideoMimeTypes->Count(); i++ )
        {
        aVideoMimeTypes.AppendL( iVideoMimeTypes->MdcaPoint(i) );
        }

    }