Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
1071c1bc
Commit
1071c1bc
authored
Jul 05, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
000f1e1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+10
-10
No files found.
modules/stream_out/rtp.c
View file @
1071c1bc
...
...
@@ -234,7 +234,7 @@ static int MuxSend( sout_stream_t *, sout_stream_id_t *,
static
sout_access_out_t
*
GrabberCreate
(
sout_stream_t
*
p_sout
);
static
void
ThreadSend
(
vlc_object_t
*
p_this
);
static
void
SDPHandleUrl
(
sout_stream_t
*
,
char
*
);
static
void
SDPHandleUrl
(
sout_stream_t
*
,
c
onst
c
har
*
);
static
int
SapSetup
(
sout_stream_t
*
p_stream
);
static
int
FileSetup
(
sout_stream_t
*
p_stream
);
...
...
@@ -607,7 +607,7 @@ static void Close( vlc_object_t * p_this )
/*****************************************************************************
* SDPHandleUrl:
*****************************************************************************/
static
void
SDPHandleUrl
(
sout_stream_t
*
p_stream
,
char
*
psz_url
)
static
void
SDPHandleUrl
(
sout_stream_t
*
p_stream
,
c
onst
c
har
*
psz_url
)
{
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
vlc_url_t
url
;
...
...
@@ -1638,8 +1638,8 @@ static int MuxDel( sout_stream_t *p_stream, sout_stream_id_t *id )
}
static
in
t
AccessOutGrabberWriteBuffer
(
sout_stream_t
*
p_stream
,
const
block_t
*
p_buffer
)
static
ssize_
t
AccessOutGrabberWriteBuffer
(
sout_stream_t
*
p_stream
,
const
block_t
*
p_buffer
)
{
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
sout_stream_id_t
*
id
=
p_sys
->
es
[
0
];
...
...
@@ -1647,14 +1647,14 @@ static int AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
int64_t
i_dts
=
p_buffer
->
i_dts
;
uint8_t
*
p_data
=
p_buffer
->
p_buffer
;
unsigned
int
i_data
=
p_buffer
->
i_buffer
;
unsigned
int
i_max
=
id
->
i_mtu
-
12
;
size_t
i_data
=
p_buffer
->
i_buffer
;
size_t
i_max
=
id
->
i_mtu
-
12
;
unsigned
i_packet
=
(
p_buffer
->
i_buffer
+
i_max
-
1
)
/
i_max
;
size_t
i_packet
=
(
p_buffer
->
i_buffer
+
i_max
-
1
)
/
i_max
;
while
(
i_data
>
0
)
{
unsigned
in
t
i_size
;
size_
t
i_size
;
/* output complete packet */
if
(
p_sys
->
packet
&&
...
...
@@ -1689,8 +1689,8 @@ static int AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
}
static
in
t
AccessOutGrabberWrite
(
sout_access_out_t
*
p_access
,
block_t
*
p_buffer
)
static
ssize_
t
AccessOutGrabberWrite
(
sout_access_out_t
*
p_access
,
block_t
*
p_buffer
)
{
sout_stream_t
*
p_stream
=
(
sout_stream_t
*
)
p_access
->
p_sys
;
...
...
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