Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
66f1e9dd
Commit
66f1e9dd
authored
Sep 25, 2005
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix several memory leaks and do a bit of coding style cleanup.
parent
3143ebce
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
946 additions
and
879 deletions
+946
-879
modules/access/rtsp/real.c
modules/access/rtsp/real.c
+338
-302
modules/access/rtsp/real_rmff.c
modules/access/rtsp/real_rmff.c
+336
-321
modules/access/rtsp/real_rmff.h
modules/access/rtsp/real_rmff.h
+3
-4
modules/access/rtsp/real_sdpplin.c
modules/access/rtsp/real_sdpplin.c
+263
-246
modules/access/rtsp/rtsp.c
modules/access/rtsp/rtsp.c
+6
-6
No files found.
modules/access/rtsp/real.c
View file @
66f1e9dd
This diff is collapsed.
Click to expand it.
modules/access/rtsp/real_rmff.c
View file @
66f1e9dd
This diff is collapsed.
Click to expand it.
modules/access/rtsp/real_rmff.h
View file @
66f1e9dd
...
...
@@ -82,7 +82,6 @@ typedef struct {
uint32_t
data_offset
;
uint16_t
num_streams
;
uint16_t
flags
;
}
rmff_prop_t
;
typedef
struct
{
...
...
@@ -125,11 +124,11 @@ typedef struct {
char
*
copyright
;
uint16_t
comment_len
;
char
*
comment
;
}
rmff_cont_t
;
typedef
struct
{
uint32_t
object_id
;
uint32_t
size
;
uint16_t
object_version
;
...
...
@@ -162,7 +161,7 @@ typedef struct {
/*
* constructors for header structs
*/
rmff_fileheader_t
*
rmff_new_fileheader
(
uint32_t
num_headers
);
rmff_prop_t
*
rmff_new_prop
(
...
...
modules/access/rtsp/real_sdpplin.c
View file @
66f1e9dd
This diff is collapsed.
Click to expand it.
modules/access/rtsp/rtsp.c
View file @
66f1e9dd
...
...
@@ -103,7 +103,7 @@ static char *rtsp_get( rtsp_client_t *rtsp )
/*
* rtsp_put puts a line on stream
*/
static
int
rtsp_put
(
rtsp_client_t
*
rtsp
,
const
char
*
psz_string
)
{
int
i_buffer
=
strlen
(
psz_string
);
...
...
@@ -128,7 +128,7 @@ static int rtsp_get_status_code( rtsp_client_t *rtsp, const char *psz_string )
{
char
psz_buffer
[
4
];
int
i_code
=
0
;
if
(
!
strncmp
(
psz_string
,
"RTSP/1.0"
,
sizeof
(
"RTSP/1.0"
)
-
1
)
)
{
memcpy
(
psz_buffer
,
psz_string
+
sizeof
(
"RTSP/1.0"
),
3
);
...
...
@@ -202,7 +202,7 @@ static void rtsp_schedule_standard( rtsp_client_t *rtsp )
/*
* get the answers, if server responses with something != 200, return NULL
*/
static
int
rtsp_get_answers
(
rtsp_client_t
*
rtsp
)
{
char
*
answer
=
NULL
;
...
...
@@ -210,7 +210,7 @@ static int rtsp_get_answers( rtsp_client_t *rtsp )
char
**
answer_ptr
=
rtsp
->
p_private
->
answers
;
int
code
;
int
ans_count
=
0
;
answer
=
rtsp_get
(
rtsp
);
if
(
!
answer
)
return
0
;
code
=
rtsp_get_status_code
(
rtsp
,
answer
);
...
...
@@ -222,7 +222,7 @@ static int rtsp_get_answers( rtsp_client_t *rtsp )
answer
=
rtsp_get
(
rtsp
);
if
(
!
answer
)
return
0
;
if
(
!
strncasecmp
(
answer
,
"Cseq:"
,
5
)
)
{
sscanf
(
answer
,
"%*s %u"
,
&
answer_seq
);
...
...
@@ -283,7 +283,7 @@ static int rtsp_get_answers( rtsp_client_t *rtsp )
int
rtsp_send_ok
(
rtsp_client_t
*
rtsp
)
{
char
cseq
[
16
];
rtsp_put
(
rtsp
,
"RTSP/1.0 200 OK"
);
sprintf
(
cseq
,
"CSeq: %u"
,
rtsp
->
p_private
->
cseq
);
rtsp_put
(
rtsp
,
cseq
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment