summaryrefslogtreecommitdiffstats
path: root/stream/realrtsp
diff options
context:
space:
mode:
Diffstat (limited to 'stream/realrtsp')
-rw-r--r--stream/realrtsp/real.c1
-rw-r--r--stream/realrtsp/real.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/stream/realrtsp/real.c b/stream/realrtsp/real.c
index 3ad4fa9a7f..99f203a3a6 100644
--- a/stream/realrtsp/real.c
+++ b/stream/realrtsp/real.c
@@ -649,6 +649,7 @@ init_real_rtsp_session (void)
real_rtsp_session = malloc (sizeof (struct real_rtsp_session_t));
real_rtsp_session->recv = xbuffer_init (BUF_SIZE);
+ real_rtsp_session->rdteof = 0;
return real_rtsp_session;
}
diff --git a/stream/realrtsp/real.h b/stream/realrtsp/real.h
index 447bb30de9..4abc58cbd1 100644
--- a/stream/realrtsp/real.h
+++ b/stream/realrtsp/real.h
@@ -45,6 +45,8 @@ struct real_rtsp_session_t {
uint8_t header[HEADER_SIZE];
int header_len;
int header_read;
+
+ int rdteof;
};
int real_get_rdt_chunk(rtsp_t *rtsp_session, char **buffer);