gst/tcp/: Remove unused 'curoffset' structure member.
authorTim-Philipp Müller <tim@centricular.net>
Wed, 26 Oct 2005 11:43:49 +0000 (11:43 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 26 Oct 2005 11:43:49 +0000 (11:43 +0000)
Original commit message from CVS:
* gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
* gst/tcp/gsttcpclientsrc.h:
* gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
* gst/tcp/gsttcpserversrc.h:
Remove unused 'curoffset' structure member.

ChangeLog
gst/tcp/gsttcpclientsrc.c
gst/tcp/gsttcpclientsrc.h
gst/tcp/gsttcpserversrc.c
gst/tcp/gsttcpserversrc.h

index 6792c2c6700eb92ab72772a6f381d1428c5e345c..16e4c91e18803fd5c005809473f746cbc6fd9d81 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
+       * gst/tcp/gsttcpclientsrc.h:
+       * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
+       * gst/tcp/gsttcpserversrc.h:
+         Remove unused 'curoffset' structure member.
+
 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
 
        * gst-libs/gst/rtp/gstbasertpdepayload.c:
index 27f0bc0771eebad5f661cacd107ca665969b05f7..52abee788aefcfdffa51bc891c3b0499f97bc688 100644 (file)
@@ -153,7 +153,6 @@ gst_tcpclientsrc_init (GstTCPClientSrc * this, GstTCPClientSrcClass * g_class)
   this->sock_fd = -1;
   this->protocol = GST_TCP_PROTOCOL_NONE;
   this->caps = NULL;
-  this->curoffset = 0;
 
   READ_SOCKET (this) = -1;
   WRITE_SOCKET (this) = -1;
index 8972cfb156b9ced8a8a968e17949775e448e21ed..cb20f883f15f8e5af6f06afd66ae16192e6a5796 100644 (file)
@@ -67,9 +67,6 @@ struct _GstTCPClientSrc {
   int sock_fd;
   int control_fds[2];
 
-  /* number of bytes we've gotten */
-  off_t curoffset;
-
   GstTCPProtocol protocol; /* protocol used for reading data */
   gboolean caps_received;      /* if we have received caps yet */
   GstCaps *caps;
index d8627f1d774a96b2ca53ad89b3a4cfe3916f93dd..7558059115b4568fa522389723b50b4a022f2c0c 100644 (file)
@@ -148,7 +148,6 @@ gst_tcpserversrc_init (GstTCPServerSrc * src, GstTCPServerSrcClass * g_class)
   src->host = g_strdup (TCP_DEFAULT_HOST);
   src->server_sock_fd = -1;
   src->client_sock_fd = -1;
-  src->curoffset = 0;
   src->protocol = GST_TCP_PROTOCOL_NONE;
 
   READ_SOCKET (src) = -1;
index c96e11abd0e7c24a2f6ee9a7fe6b2eb14c2b5458..1fe65825cf6f9c37826a5be84e20e36ee99b4bea 100644 (file)
@@ -74,9 +74,6 @@ struct _GstTCPServerSrc {
 
   int control_fds[2];
 
-  /* number of bytes we've gotten */
-  off_t curoffset;
-
   GstTCPProtocol protocol; /* protocol used for reading data */
   gboolean caps_received;      /* if we have received caps yet */
 };