summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2008-01-21 12:42:09 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2008-01-21 12:42:09 +0000
commitaa6d9fc5289adaf7e653fd190dc1180cb9e01466 (patch)
tree1d56f916b1a0b199673334490c11bc4ff7350aa8
parent6b773560f630dadfc266a817eee984ba0838f6d0 (diff)
downloadgst-plugins-bad-aa6d9fc5289adaf7e653fd190dc1180cb9e01466.tar.gz
gst-plugins-bad-aa6d9fc5289adaf7e653fd190dc1180cb9e01466.tar.bz2
gst-plugins-bad-aa6d9fc5289adaf7e653fd190dc1180cb9e01466.zip
gst/librfb/rfbdecoder.*: Don't use gtk-doc comment style for non gtk-doc comments.
Original commit message from CVS: * gst/librfb/rfbdecoder.c: * gst/librfb/rfbdecoder.h: Don't use gtk-doc comment style for non gtk-doc comments. Make one static function static.
-rw-r--r--ChangeLog7
-rw-r--r--gst/librfb/rfbdecoder.c18
-rw-r--r--gst/librfb/rfbdecoder.h2
3 files changed, 16 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index e3034d15..a6b48cc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-21 Stefan Kost <ensonic@users.sf.net>
+
+ * gst/librfb/rfbdecoder.c:
+ * gst/librfb/rfbdecoder.h:
+ Don't use gtk-doc comment style for non gtk-doc comments.
+ Make one static function static.
+
2008-01-21 Wim Taymans <wim.taymans@collabora.co.uk>
Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
diff --git a/gst/librfb/rfbdecoder.c b/gst/librfb/rfbdecoder.c
index 2c688f0c..009e291b 100644
--- a/gst/librfb/rfbdecoder.c
+++ b/gst/librfb/rfbdecoder.c
@@ -286,7 +286,7 @@ rfb_decoder_state_wait_for_protocol_version (RfbDecoder * decoder)
return TRUE;
}
-/**
+/*
* a string describing the reason (where a string is specified as a length followed
* by that many ASCII characters)
**/
@@ -314,7 +314,7 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
{
guint8 *buffer = NULL;
- /**
+ /*
* Version 3.3 The server decides the security type and sends a single word
*
* The security-type may only take the value 0, 1 or 2. A value of 0 means that the
@@ -347,10 +347,10 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
}
break;
case SECURITY_VNC:
- /**
- * VNC authentication is to be used and protocol data is to be sent unencrypted. The
- * server sends a random 16-byte challenge
- */
+ /*
+ * VNC authentication is to be used and protocol data is to be sent unencrypted. The
+ * server sends a random 16-byte challenge
+ */
GST_DEBUG ("Security type is VNC Authentication");
/* VNC Authentication can't be used if the password is not set */
if (!decoder->password) {
@@ -376,7 +376,7 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
return TRUE;
}
-/**
+/*
* The server sends a word to inform the client whether the security handshaking was
* successful.
*/
@@ -401,7 +401,7 @@ rfb_decoder_state_security_result (RfbDecoder * decoder)
return TRUE;
}
-guint8 *
+static guint8 *
rfb_decoder_message_set_encodings (GSList * encodings_list)
{
@@ -422,7 +422,7 @@ rfb_decoder_message_set_encodings (GSList * encodings_list)
return message;
}
-/**
+/*
* rfb_decoder_state_set_encodings:
* @decoder: The rfb context
*
diff --git a/gst/librfb/rfbdecoder.h b/gst/librfb/rfbdecoder.h
index b5c6cf2a..314504ad 100644
--- a/gst/librfb/rfbdecoder.h
+++ b/gst/librfb/rfbdecoder.h
@@ -105,8 +105,6 @@ void rfb_decoder_send_key_event (RfbDecoder * decoder,
guint key, gboolean down_flag);
void rfb_decoder_send_pointer_event (RfbDecoder * decoder,
gint button_mask, gint x, gint y);
-guint8 *
- rfb_decoder_message_set_encodings ( GSList *encodings_list);
G_END_DECLS
#endif