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
d34d3528
Commit
d34d3528
authored
Feb 21, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtp sout: missing const
parent
969f38cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/stream_out/rtp.h
modules/stream_out/rtp.h
+1
-1
modules/stream_out/rtpfmt.c
modules/stream_out/rtpfmt.c
+2
-2
No files found.
modules/stream_out/rtp.h
View file @
d34d3528
...
@@ -86,7 +86,7 @@ typedef struct rtp_format_t
...
@@ -86,7 +86,7 @@ typedef struct rtp_format_t
pf_rtp_packetizer_t
pf_packetize
;
pf_rtp_packetizer_t
pf_packetize
;
}
rtp_format_t
;
}
rtp_format_t
;
int
rtp_get_fmt
(
vlc_object_t
*
obj
,
es_format_t
*
p_fmt
,
const
char
*
mux
,
int
rtp_get_fmt
(
vlc_object_t
*
obj
,
const
es_format_t
*
p_fmt
,
const
char
*
mux
,
rtp_format_t
*
p_rtp_fmt
);
rtp_format_t
*
p_rtp_fmt
);
/* Only used by rtp_packetize_rawvideo */
/* Only used by rtp_packetize_rawvideo */
...
...
modules/stream_out/rtpfmt.c
View file @
d34d3528
...
@@ -163,8 +163,8 @@ static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
...
@@ -163,8 +163,8 @@ static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
}
}
/* TODO: make this into something more clever than a big switch? */
/* TODO: make this into something more clever than a big switch? */
int
rtp_get_fmt
(
vlc_object_t
*
obj
,
es_format_t
*
p_fmt
,
const
char
*
mux
,
int
rtp_get_fmt
(
vlc_object_t
*
obj
,
const
es_format_t
*
p_fmt
,
const
char
*
mux
,
rtp_format_t
*
rtp_fmt
)
rtp_format_t
*
rtp_fmt
)
{
{
assert
(
p_fmt
!=
NULL
||
mux
!=
NULL
);
assert
(
p_fmt
!=
NULL
||
mux
!=
NULL
);
...
...
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