1 /* ------------------------------------------------------------------ 2 * Copyright (C) 1998-2009 PacketVideo 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 13 * express or implied. 14 * See the License for the specific language governing permissions 15 * and limitations under the License. 16 * ------------------------------------------------------------------- 17 */ 18 19 #ifndef SDP_RETURN_CODE_H 20 #define SDP_RETURN_CODE_H 21 22 typedef enum 23 { 24 SDP_SUCCESS, 25 SDP_VALUE_OUT_OF_RANGE, 26 SDP_MISSING_ORIGIN_FIELD, 27 SDP_MISSING_SESSION_NAME_FIELD, 28 SDP_MISSING_AUTHOR_VERSION_FIELD, 29 SDP_MISSING_AUTHOR_FIELD, 30 SDP_MISSING_COPYRIGHT_FIELD, 31 SDP_MISSING_RATING_FIELD, 32 SDP_MISSING_CREATION_DATE_FIELD, 33 SDP_MISSING_RANGE_FIELD, 34 SDP_MISSING_WMF_VERSION_FIELD, 35 SDP_MISSING_CONTROL_URL_FIELD, 36 SDP_INVALID_MEDIA_PARAMETER, 37 SDP_MISSING_MEDIA_DESCRIPTION, 38 SDP_MISSING_RTP_MAP, 39 SDP_FAILURE 40 } SDPReturnCode; 41 #endif 42