whitespace fixes

Original commit message from CVS:
whitespace fixes
This commit is contained in:
Thomas Vander Stichele 2006-05-10 15:14:30 +00:00
parent f96d80accc
commit 125159cb2f
2 changed files with 17 additions and 17 deletions

View file

@ -481,9 +481,9 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
* @fd: the file descriptor that is to be removed from multifdsink * @fd: the file descriptor that is to be removed from multifdsink
* @status: the reason why the client was removed * @status: the reason why the client was removed
* *
* The given file descriptor is about to be removed from multifdsink. This * The given file descriptor is about to be removed from multifdsink. This
* signal will be emited from the streaming thread so applications should * signal will be emited from the streaming thread so applications should
* be prepared for that. * be prepared for that.
* *
* @gstmultifdsink still holds a handle to @fd so it is possible to call * @gstmultifdsink still holds a handle to @fd so it is possible to call
* the get-stats signal from this callback. For the same reason it is * the get-stats signal from this callback. For the same reason it is
@ -503,7 +503,7 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
* be emited from the streaming thread so applications should be prepared * be emited from the streaming thread so applications should be prepared
* for that. * for that.
* *
* In this callback, @gstmultifdsink has removed all the information * In this callback, @gstmultifdsink has removed all the information
* associated with @fd and it is therefore not possible to call get-stats * associated with @fd and it is therefore not possible to call get-stats
* with @fd. It is however safe to close() and reuse @fd in the callback. * with @fd. It is however safe to close() and reuse @fd in the callback.
* *
@ -1071,13 +1071,13 @@ done:
return result; return result;
} }
/* handle a write on a client, /* Handle a write on a client,
* which indicates a read request from a client. * which indicates a read request from a client.
* *
* The strategy is as follows, for each client we maintain a queue of GstBuffers * For each client we maintain a queue of GstBuffers that contain the raw bytes
* that contain the raw bytes we need to send to the client. In the case of the * we need to send to the client. In the case of the GDP protocol, we create
* GDP protocol, we create buffers out of the header bytes so that we can only * buffers out of the header bytes so that we can focus only on sending
* focus on sending buffers. * buffers.
* *
* We first check to see if we need to send caps (in GDP) and streamheaders. * We first check to see if we need to send caps (in GDP) and streamheaders.
* If so, we queue them. * If so, we queue them.
@ -1086,7 +1086,7 @@ done:
* possible. It will first exhaust the client->sending queue and if the queue * possible. It will first exhaust the client->sending queue and if the queue
* is empty, it will pick a buffer from the global queue. * is empty, it will pick a buffer from the global queue.
* *
* Sending the Buffers from the client->sending queue is basically writing * Sending the buffers from the client->sending queue is basically writing
* the bytes to the socket and maintaining a count of the bytes that were * the bytes to the socket and maintaining a count of the bytes that were
* sent. When the buffer is completely sent, it is removed from the * sent. When the buffer is completely sent, it is removed from the
* client->sending queue and we try to pick a new buffer for sending. * client->sending queue and we try to pick a new buffer for sending.
@ -1301,7 +1301,7 @@ gst_multi_fd_sink_recover_client (GstMultiFdSink * sink, GstTCPClient * client)
newbufpos = sink->units_soft_max; newbufpos = sink->units_soft_max;
break; break;
case GST_RECOVER_POLICY_RESYNC_KEYFRAME: case GST_RECOVER_POLICY_RESYNC_KEYFRAME:
/* find keyframe in buffers, we search backwards to find the /* find keyframe in buffers, we search backwards to find the
* closest keyframe relative to what this client already received. */ * closest keyframe relative to what this client already received. */
newbufpos = MIN (sink->bufqueue->len - 1, sink->units_soft_max - 1); newbufpos = MIN (sink->bufqueue->len - 1, sink->units_soft_max - 1);
@ -1324,11 +1324,11 @@ gst_multi_fd_sink_recover_client (GstMultiFdSink * sink, GstTCPClient * client)
return newbufpos; return newbufpos;
} }
/* Queue a buffer on the global queue. /* Queue a buffer on the global queue.
* *
* This functions adds the buffer to the front of a GArray. It removes the * This function adds the buffer to the front of a GArray. It removes the
* tail buffer if the max queue size is exceeded. Unreffing the buffer that * tail buffer if the max queue size is exceeded, unreffing the queued buffer.
* is queued. Note that unreffing the buffer is not a problem as clients who * Note that unreffing the buffer is not a problem as clients who
* started writing out this buffer will still have a reference to it in the * started writing out this buffer will still have a reference to it in the
* client->sending queue. * client->sending queue.
* *

View file

@ -42,7 +42,7 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTI_FD_SINK)) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTI_FD_SINK))
#define GST_MULTI_FD_SINK_GET_CLASS(klass) \ #define GST_MULTI_FD_SINK_GET_CLASS(klass) \
(G_TYPE_INSTANCE_GET_CLASS ((klass), GST_TYPE_MULTI_FD_SINK, GstMultiFdSinkClass)) (G_TYPE_INSTANCE_GET_CLASS ((klass), GST_TYPE_MULTI_FD_SINK, GstMultiFdSinkClass))
typedef struct _GstMultiFdSink GstMultiFdSink; typedef struct _GstMultiFdSink GstMultiFdSink;
typedef struct _GstMultiFdSinkClass GstMultiFdSinkClass; typedef struct _GstMultiFdSinkClass GstMultiFdSinkClass;
@ -78,7 +78,7 @@ typedef enum
* @GST_SYNC_METHOD_LATEST_KEYFRAME: client receives latest keyframe (burst) * @GST_SYNC_METHOD_LATEST_KEYFRAME: client receives latest keyframe (burst)
* *
* This enum defines the selection of the first buffer that is sent * This enum defines the selection of the first buffer that is sent
* to a new client. * to a new client.
*/ */
typedef enum typedef enum
{ {
@ -111,7 +111,7 @@ typedef enum
* @GST_CLIENT_STATUS_ERROR : client is in error * @GST_CLIENT_STATUS_ERROR : client is in error
* @GST_CLIENT_STATUS_DUPLICATE: same client added twice * @GST_CLIENT_STATUS_DUPLICATE: same client added twice
* *
* This specifies the reason why a client was removed from * This specifies the reason why a client was removed from
* multifdsink and is received in the "client-removed" signal. * multifdsink and is received in the "client-removed" signal.
*/ */
typedef enum typedef enum