Initial release including wifi display based on gst-rtsp-server-1.4.1
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-params.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 /**
20  * SECTION:rtsp-params
21  * @short_description: Param get and set implementation
22  * @see_also: #GstRTSPClient
23  *
24  * Last reviewed on 2013-07-11 (1.0.0)
25  */
26
27 #include <string.h>
28
29 #include "rtsp-params.h"
30
31 /**
32  * gst_rtsp_params_set:
33  * @client: a #GstRTSPClient
34  * @ctx: (transfer none): a #GstRTSPContext
35  *
36  * Set parameters (not implemented yet)
37  *
38  * Returns: a #GstRTSPResult
39  */
40 GstRTSPResult
41 gst_rtsp_params_set (GstRTSPClient * client, GstRTSPContext * ctx)
42 {
43   GstRTSPStatusCode code;
44
45   /* FIXME, actually parse the request based on the mime type and try to repond
46    * with a list of the parameters */
47   code = GST_RTSP_STS_PARAMETER_NOT_UNDERSTOOD;
48
49   gst_rtsp_message_init_response (ctx->response, code,
50       gst_rtsp_status_as_text (code), ctx->request);
51
52   return GST_RTSP_OK;
53 }
54
55 /**
56  * gst_rtsp_params_get:
57  * @client: a #GstRTSPClient
58  * @ctx: (transfer none): a #GstRTSPContext
59  *
60  * Get parameters (not implemented yet)
61  *
62  * Returns: a #GstRTSPResult
63  */
64 GstRTSPResult
65 gst_rtsp_params_get (GstRTSPClient * client, GstRTSPContext * ctx)
66 {
67   GstRTSPStatusCode code;
68
69   /* FIXME, actually parse the request based on the mime type and try to repond
70    * with a list of the parameters */
71   code = GST_RTSP_STS_PARAMETER_NOT_UNDERSTOOD;
72
73   gst_rtsp_message_init_response (ctx->response, code,
74       gst_rtsp_status_as_text (code), ctx->request);
75
76   return GST_RTSP_OK;
77 }