diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2005-05-11 12:01:10 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2005-05-11 12:01:10 +0000 |
commit | 63177e073100ce81a14338c464bb1cb83c27c3a7 (patch) | |
tree | 469146b7fd30b5f34a9dbce9ec2455f59d8da294 /gst/rtsp/rtspmessage.h | |
parent | 91ce2b294e5538313bea3ddf7adaf1373d778384 (diff) |
gst/rtsp/: Added README
Original commit message from CVS:
* gst/rtsp/README:
* gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
(gst_rtspsrc_class_init), (gst_rtspsrc_create_stream),
(gst_rtspsrc_add_element), (gst_rtspsrc_set_state),
(gst_rtspsrc_stream_setup_rtp),
(gst_rtspsrc_stream_configure_transport), (find_stream),
(gst_rtspsrc_loop), (gst_rtspsrc_open), (gst_rtspsrc_play):
* gst/rtsp/rtsp.h:
* gst/rtsp/rtspconnection.c: (rtsp_connection_create),
(rtsp_connection_send), (read_line), (parse_request_line),
(parse_line), (read_body), (rtsp_connection_receive),
(rtsp_connection_free):
* gst/rtsp/rtspconnection.h:
* gst/rtsp/rtspdefs.c: (rtsp_find_method):
* gst/rtsp/rtspdefs.h:
* gst/rtsp/rtspmessage.c: (rtsp_message_set_body),
(rtsp_message_take_body):
* gst/rtsp/rtspmessage.h:
* gst/rtsp/rtspstream.h:
* gst/rtsp/sdpmessage.c: (sdp_parse_line):
Added README
Some cleanups.
Diffstat (limited to 'gst/rtsp/rtspmessage.h')
-rw-r--r-- | gst/rtsp/rtspmessage.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gst/rtsp/rtspmessage.h b/gst/rtsp/rtspmessage.h index 7bed76f9..60adb70c 100644 --- a/gst/rtsp/rtspmessage.h +++ b/gst/rtsp/rtspmessage.h @@ -73,13 +73,10 @@ RTSPResult rtsp_message_free (RTSPMessage *msg); RTSPResult rtsp_message_add_header (RTSPMessage *msg, RTSPHeaderField field, gchar *value); RTSPResult rtsp_message_remove_header (RTSPMessage *msg, RTSPHeaderField field); RTSPResult rtsp_message_get_header (RTSPMessage *msg, RTSPHeaderField field, gchar **value); -RTSPResult rtsp_message_get_header_copy (RTSPMessage *msg, RTSPHeaderField field, gchar **value); RTSPResult rtsp_message_set_body (RTSPMessage *msg, guint8 *data, guint size); -RTSPResult rtsp_message_set_body_copy (RTSPMessage *msg, guint8 *data, guint size); - +RTSPResult rtsp_message_take_body (RTSPMessage *msg, guint8 *data, guint size); RTSPResult rtsp_message_get_body (RTSPMessage *msg, guint8 **data, guint *size); -RTSPResult rtsp_message_get_body_copy (RTSPMessage *msg, guint8 **data, guint *size); RTSPResult rtsp_message_dump (RTSPMessage *msg); |