mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
gst/tcp/gsttcp.c: Return GST_FLOW_UNEXPECTED when we have an eos on the socket so basesrc can do its job correctly.
Original commit message from CVS: 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org> * gst/tcp/gsttcp.c: (gst_tcp_socket_read): Return GST_FLOW_UNEXPECTED when we have an eos on the socket so basesrc can do its job correctly.
This commit is contained in:
parent
9d3a69fc58
commit
25bd959adb
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
* gst/tcp/gsttcp.c: (gst_tcp_socket_read):
|
||||
Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
|
||||
basesrc can do its job correctly.
|
||||
|
||||
2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/alsa/Makefile.am:
|
||||
|
|
|
@ -200,7 +200,7 @@ ioctl_error:
|
|||
got_eos:
|
||||
{
|
||||
GST_DEBUG_OBJECT (this, "Got EOS on socket stream");
|
||||
return GST_FLOW_WRONG_STATE;
|
||||
return GST_FLOW_UNEXPECTED;
|
||||
}
|
||||
read_error:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue