epoc32/include/mmf/common/mmfvideo.h
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
     1.1 --- a/epoc32/include/mmf/common/mmfvideo.h	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ b/epoc32/include/mmf/common/mmfvideo.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -1,9 +1,9 @@
     1.4  // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5  // All rights reserved.
     1.6  // This component and the accompanying materials are made available
     1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.8 +// under the terms of "Eclipse Public License v1.0"
     1.9  // which accompanies this distribution, and is available
    1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12  //
    1.13  // Initial Contributors:
    1.14  // Nokia Corporation - initial contribution.
    1.15 @@ -20,6 +20,10 @@
    1.16  
    1.17  #include <mmf/common/mmfutilities.h>
    1.18  
    1.19 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.20 +#include <mmf/common/mmfvideoenums.h>
    1.21 +#endif
    1.22 +
    1.23  class CFbsBitmap;
    1.24  
    1.25  /**
    1.26 @@ -309,7 +313,7 @@
    1.27  
    1.28  /**
    1.29  @publishedAll
    1.30 -@prototype
    1.31 +@released
    1.32  
    1.33  Represents the video aspect ratio as a fraction: iNumerator/iDenominator.
    1.34  */
    1.35 @@ -380,44 +384,10 @@
    1.36  	}
    1.37  
    1.38  /**
    1.39 -Video playback rate capabilities. This structure defines playback rate
    1.40 -capabilities for the current controller and video clip, and can be used
    1.41 -to determine if fast forward, rewind, step forward, or step backward
    1.42 -is possible.
    1.43 -
    1.44 -@publishedPartner
    1.45 -@prototype
    1.46 -
    1.47 -@see CVideoPlayerUtility::GetPlayRateCapabilitiesL, CVideoPlayerUtility::SetPlayVelocityL
    1.48 -*/
    1.49 -class TVideoPlayRateCapabilities
    1.50 -    {
    1.51 -public:
    1.52 -    /**
    1.53 -    ETrue if fast or slow play forward is possible (i.e. playback
    1.54 -    velocity 1-99 or 101-). Normal play forward (velocity 100) is
    1.55 -    supported by default.
    1.56 -    */
    1.57 -    TBool iPlayForward;
    1.58 -
    1.59 -    /**
    1.60 -    ETrue if play backward is possible (i.e. playback velocity below0).
    1.61 -    This includes normal speed, slow, and fast reverse playback.
    1.62 -    */
    1.63 -    TBool iPlayBackward;
    1.64 -
    1.65 -    /** ETrue if step forward is possible */
    1.66 -    TBool iStepForward;
    1.67 -
    1.68 -    /** Etrue if step backward is possible */
    1.69 -    TBool iStepBackward;
    1.70 -    };
    1.71 -    
    1.72 -/**
    1.73  Automatic scaling type.
    1.74  
    1.75 -@publishedPartner
    1.76 -@prototype
    1.77 +@publishedAll
    1.78 +@released
    1.79  
    1.80  @see CVideoPlayerUtility::SetAutoScaleL
    1.81  */
    1.82 @@ -453,8 +423,8 @@
    1.83  /**
    1.84  Horizontal alignment for automatic scaling.
    1.85  
    1.86 -@publishedPartner
    1.87 -@prototype
    1.88 +@publishedAll
    1.89 +@released
    1.90  
    1.91  @see SetAutoScaleL
    1.92  */
    1.93 @@ -471,8 +441,8 @@
    1.94  /**
    1.95  Vertical alignment for automatic scaling.
    1.96  
    1.97 -@publishedPartner
    1.98 -@prototype
    1.99 +@publishedAll
   1.100 +@released
   1.101  
   1.102  @see SetAutoScaleL
   1.103  */
   1.104 @@ -485,21 +455,5 @@
   1.105  	/** The picture is bottom-aligned */
   1.106  	EVerticalAlignBottom 
   1.107  	};
   1.108 -
   1.109 -/**
   1.110 -Video quality.
   1.111 -
   1.112 -@publishedPartner
   1.113 -@prototype
   1.114 -
   1.115 -@see CVideoPlayerUtility::SetVideoQualityL
   1.116 -*/
   1.117 -enum TVideoQuality 
   1.118 -	{
   1.119 -	EVideoQualityLow = 25,
   1.120 -	EVideoQualityNormal = 50,
   1.121 -	EVideoQualityHigh = 75,
   1.122 -	EVideoQualityLossless = 100
   1.123 -	};
   1.124  	
   1.125  #endif