mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/rtsp/rtspconnection.c: Read the channel byte as an unsigned byte.
Original commit message from CVS: * gst/rtsp/rtspconnection.c: (rtsp_connection_receive): Read the channel byte as an unsigned byte.
This commit is contained in:
parent
24c5812d65
commit
a7531984c3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-04-25 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
|
||||||
|
Read the channel byte as an unsigned byte.
|
||||||
|
|
||||||
2007-04-25 Wim Taymans <wim@fluendo.com>
|
2007-04-25 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
|
* gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
|
||||||
|
|
|
@ -683,7 +683,7 @@ rtsp_connection_receive (RTSPConnection * conn, RTSPMessage * msg)
|
||||||
res = RTSP_OK;
|
res = RTSP_OK;
|
||||||
/* parse first line and headers */
|
/* parse first line and headers */
|
||||||
while (res == RTSP_OK) {
|
while (res == RTSP_OK) {
|
||||||
gchar c;
|
guint8 c;
|
||||||
|
|
||||||
/* read first character, this identifies data messages */
|
/* read first character, this identifies data messages */
|
||||||
RTSP_CHECK (rtsp_connection_read (conn, &c, 1), read_error);
|
RTSP_CHECK (rtsp_connection_read (conn, &c, 1), read_error);
|
||||||
|
|
Loading…
Reference in a new issue