mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gst/tcp/: Remove unused 'curoffset' structure member.
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.
This commit is contained in:
parent
f6b0ca0572
commit
ac29f18f79
5 changed files with 8 additions and 8 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue