Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // 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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __MMFERRORS_H__
17 #define __MMFERRORS_H__
22 Base of the Multimedia Subsystem error code allocation.
24 const TInt KErrMMBase = -12000;
27 // Error codes for the CVideoPlayerUtility API
29 Not enough network bandwidth.
31 const TInt KErrMMNotEnoughBandwidth = KErrMMBase;
34 Error locating network socket services.
36 const TInt KErrMMSocketServiceNotFound = KErrMMBase - 1;
39 An error occurred while reading data from the network.
41 const TInt KErrMMNetworkRead = KErrMMBase - 2;
44 An error occurred while writing data to the network.
46 const TInt KErrMMNetworkWrite = KErrMMBase - 3;
49 Invalid socket error or An error occurred while creating a network socket.
51 const TInt KErrMMServerSocket = KErrMMBase - 4;
54 Streaming Server not supported.
56 const TInt KErrMMServerNotSupported = KErrMMBase - 5;
61 const TInt KErrMMServerAlert = KErrMMBase - 6;
64 Player cannot receive UDP data packets.
66 const TInt KErrMMUDPReceive = KErrMMBase - 7;
69 Network transport not recognized.
71 const TInt KErrMMInvalidProtocol = KErrMMBase - 8;
76 const TInt KErrMMInvalidURL = KErrMMBase - 9;
79 An error occured attempting to join or access multicast session.
81 const TInt KErrMMMulticast = KErrMMBase - 10;
84 Proxy status error, Proxy invalid response error or Invalid hostname for proxy.
86 const TInt KErrMMProxyServer = KErrMMBase - 11;
89 Client cannot support proxy server.
91 const TInt KErrMMProxyServerNotSupported = KErrMMBase - 12;
94 Unable to locate proxy server or Proxy connection could not be established.
96 const TInt KErrMMProxyServerConnect = KErrMMBase - 13;
99 Cannot open audio device, or lost control of audiodevice.
101 const TInt KErrMMAudioDevice = KErrMMBase - 14;
104 Problem blitting video to display.
106 const TInt KErrMMVideoDevice = KErrMMBase - 15;
109 Invalid decoder, decoder not properly initialized, or appropriate decoder could not be found.
111 const TInt KErrMMDecoder = KErrMMBase - 16;
114 Only able to play either the audio or the video portion of the media file. Could be due to a
115 codec that isn't supported, the video frame size being too large etc.
117 const TInt KErrMMPartialPlayback = KErrMMBase - 17;
120 Digital Rights have expired.
122 const TInt KErrMMDRMNotAuthorized = KErrMMBase - 18;
124 //Error codes for Quality of Service
129 const TInt KErrMMQosLowBandwidth = KErrMMBase - 19;
132 Traffic Class not supported.
134 const TInt KErrMMQosUnsupportedTrafficClass = KErrMMBase - 20;
137 Poor or unsufficient Traffic Class.
139 const TInt KErrMMQosPoorTrafficClass = KErrMMBase - 21;
142 Parameters not supported.
144 const TInt KErrMMQosUnsupportedParameters = KErrMMBase - 22;
147 Poor or unsufficient Parameters.
149 const TInt KErrMMQosPoorParameters = KErrMMBase - 23;
154 const TInt KErrMMQosNotSupported = KErrMMBase - 24;