Blame gst-libs/gst/sdp/gstsdp.h

Packit 971217
/* GStreamer
Packit 971217
 * Copyright (C) <2005,2006> Wim Taymans <wim@fluendo.com>
Packit 971217
 *
Packit 971217
 * This library is free software; you can redistribute it and/or
Packit 971217
 * modify it under the terms of the GNU Library General Public
Packit 971217
 * License as published by the Free Software Foundation; either
Packit 971217
 * version 2 of the License, or (at your option) any later version.
Packit 971217
 *
Packit 971217
 * This library is distributed in the hope that it will be useful,
Packit 971217
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 971217
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 971217
 * Library General Public License for more details.
Packit 971217
 *
Packit 971217
 * You should have received a copy of the GNU Library General Public
Packit 971217
 * License along with this library; if not, write to the
Packit 971217
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Packit 971217
 * Boston, MA 02110-1301, USA.
Packit 971217
 */
Packit 971217
/*
Packit 971217
 * Unless otherwise indicated, Source Code is licensed under MIT license.
Packit 971217
 * See further explanation attached in License Statement (distributed in the file
Packit 971217
 * LICENSE).
Packit 971217
 *
Packit 971217
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
Packit 971217
 * this software and associated documentation files (the "Software"), to deal in
Packit 971217
 * the Software without restriction, including without limitation the rights to
Packit 971217
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 971217
 * of the Software, and to permit persons to whom the Software is furnished to do
Packit 971217
 * so, subject to the following conditions:
Packit 971217
 *
Packit 971217
 * The above copyright notice and this permission notice shall be included in all
Packit 971217
 * copies or substantial portions of the Software.
Packit 971217
 *
Packit 971217
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit 971217
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit 971217
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit 971217
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit 971217
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Packit 971217
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 971217
 * SOFTWARE.
Packit 971217
 */
Packit 971217
Packit 971217
#ifndef __GST_SDP_H__
Packit 971217
#define __GST_SDP_H__
Packit 971217
Packit 971217
/**
Packit 971217
 * GstSDPResult:
Packit 971217
 * @GST_SDP_OK: A successful return value
Packit 971217
 * @GST_SDP_EINVAL: a function was given invalid parameters
Packit 971217
 *
Packit 971217
 * Return values for the SDP functions.
Packit 971217
 */
Packit 971217
typedef enum {
Packit 971217
  GST_SDP_OK     = 0,
Packit 971217
  GST_SDP_EINVAL = -1
Packit 971217
} GstSDPResult;
Packit 971217
Packit 971217
#endif /* __GST_SDP_H__ */