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
489ab5b3
Commit
489ab5b3
authored
Apr 01, 2007
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* backport [18854]
HTTP and UDP access outputs return byte count
parent
878f0a0d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
THANKS
THANKS
+1
-0
modules/access_output/http.c
modules/access_output/http.c
+3
-1
modules/access_output/udp.c
modules/access_output/udp.c
+6
-2
No files found.
THANKS
View file @
489ab5b3
...
...
@@ -117,6 +117,7 @@ Moritz Bunkus <moritz at bunkus dot org> - Matroska patches
Morten Brix Pedersen <morten at wtf.dk> - Danish translation
Nilmoni Deb <ndeb at ece.cmu.edu> - autoconf and Makefile fixes
Olivier Aubert <oaubert at bat710.univ-lyon1.fr> - clone list patch
Olivier Houchard <doginou @t dong d0t ci0 d0t org> - UDP & HTTP access output fix
Olivier Pomel <pomel at via.ecp.fr> - original VLC code
Ondrej Kuda aka Albert <kuda at natur dot cuni dot cz> - HTTP interface tips and fixes
Øyvind Kolbu <oyvindk at world-online.no> - FreeBSD patches
...
...
modules/access_output/http.c
View file @
489ab5b3
...
...
@@ -386,6 +386,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
{
sout_access_out_sys_t
*
p_sys
=
p_access
->
p_sys
;
int
i_err
=
0
;
int
i_len
=
0
;
while
(
p_buffer
)
{
...
...
@@ -421,6 +422,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
p_sys
->
i_header_size
);
}
i_len
+=
p_buffer
->
i_buffer
;
/* send data */
i_err
=
httpd_StreamSend
(
p_sys
->
p_httpd_stream
,
p_buffer
->
p_buffer
,
p_buffer
->
i_buffer
);
...
...
@@ -440,7 +442,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
block_ChainRelease
(
p_buffer
);
}
return
(
i_err
<
0
?
VLC_EGENERIC
:
VLC_SUCCESS
);
return
(
i_err
<
0
?
VLC_EGENERIC
:
i_len
);
}
/*****************************************************************************
...
...
modules/access_output/udp.c
View file @
489ab5b3
...
...
@@ -337,6 +337,7 @@ static void Close( vlc_object_t * p_this )
static
int
Write
(
sout_access_out_t
*
p_access
,
block_t
*
p_buffer
)
{
sout_access_out_sys_t
*
p_sys
=
p_access
->
p_sys
;
int
i_len
=
0
;
while
(
p_buffer
)
{
...
...
@@ -364,6 +365,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
p_sys
->
p_buffer
=
NULL
;
}
i_len
+=
p_buffer
->
i_buffer
;
while
(
p_buffer
->
i_buffer
)
{
int
i_write
=
__MIN
(
p_buffer
->
i_buffer
,
p_sys
->
i_mtu
);
...
...
@@ -409,7 +411,7 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
p_buffer
=
p_next
;
}
return
(
p_sys
->
p_thread
->
b_error
?
-
1
:
0
);
return
(
p_sys
->
p_thread
->
b_error
?
-
1
:
i_len
);
}
/*****************************************************************************
...
...
@@ -419,6 +421,7 @@ static int WriteRaw( sout_access_out_t *p_access, block_t *p_buffer )
{
sout_access_out_sys_t
*
p_sys
=
p_access
->
p_sys
;
block_t
*
p_buf
;
int
i_len
;
while
(
p_sys
->
p_thread
->
p_empty_blocks
->
i_depth
>=
MAX_EMPTY_BLOCKS
)
{
...
...
@@ -426,9 +429,10 @@ static int WriteRaw( sout_access_out_t *p_access, block_t *p_buffer )
block_Release
(
p_buf
);
}
i_len
=
p_buffer
->
i_buffer
;
block_FifoPut
(
p_sys
->
p_thread
->
p_fifo
,
p_buffer
);
return
(
p_sys
->
p_thread
->
b_error
?
-
1
:
0
);
return
(
p_sys
->
p_thread
->
b_error
?
-
1
:
i_len
);
}
/*****************************************************************************
...
...
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