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
c7e83e1c
Commit
c7e83e1c
authored
Jul 23, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream: remove stream_BlockRemaining()
parent
71d71170
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
46 deletions
+0
-46
include/vlc_stream.h
include/vlc_stream.h
+0
-1
src/input/stream.c
src/input/stream.c
+0
-44
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_stream.h
View file @
c7e83e1c
...
@@ -118,7 +118,6 @@ VLC_API int stream_vaControl( stream_t *s, int i_query, va_list args );
...
@@ -118,7 +118,6 @@ VLC_API int stream_vaControl( stream_t *s, int i_query, va_list args );
VLC_API
void
stream_Delete
(
stream_t
*
s
);
VLC_API
void
stream_Delete
(
stream_t
*
s
);
VLC_API
int
stream_Control
(
stream_t
*
s
,
int
i_query
,
...
);
VLC_API
int
stream_Control
(
stream_t
*
s
,
int
i_query
,
...
);
VLC_API
block_t
*
stream_Block
(
stream_t
*
s
,
int
i_size
);
VLC_API
block_t
*
stream_Block
(
stream_t
*
s
,
int
i_size
);
VLC_API
block_t
*
stream_BlockRemaining
(
stream_t
*
s
,
int
i_max_size
);
VLC_API
char
*
stream_ReadLine
(
stream_t
*
);
VLC_API
char
*
stream_ReadLine
(
stream_t
*
);
VLC_API
input_item_t
*
stream_ReadDir
(
stream_t
*
);
VLC_API
input_item_t
*
stream_ReadDir
(
stream_t
*
);
...
...
src/input/stream.c
View file @
c7e83e1c
...
@@ -522,50 +522,6 @@ block_t *stream_Block( stream_t *s, int i_size )
...
@@ -522,50 +522,6 @@ block_t *stream_Block( stream_t *s, int i_size )
return
NULL
;
return
NULL
;
}
}
/**
* Read the remaining of the data if there is less than i_max_size bytes, otherwise
* return NULL.
*
* The stream position is unknown after the call.
*/
block_t
*
stream_BlockRemaining
(
stream_t
*
s
,
int
i_max_size
)
{
int
i_allocate
=
__MIN
(
1000000
,
i_max_size
);
int64_t
i_size
=
stream_Size
(
s
);
if
(
i_size
>
0
)
{
int64_t
i_position
=
stream_Tell
(
s
);
if
(
i_position
+
i_max_size
<
i_size
)
{
msg_Err
(
s
,
"Remaining stream size is greater than %d bytes"
,
i_max_size
);
return
NULL
;
}
i_allocate
=
i_size
-
i_position
;
}
if
(
i_allocate
<=
0
)
return
NULL
;
block_t
*
p_block
=
block_Alloc
(
i_allocate
);
int
i_index
=
0
;
while
(
p_block
)
{
int
i_read
=
stream_Read
(
s
,
&
p_block
->
p_buffer
[
i_index
],
p_block
->
i_buffer
-
i_index
);
if
(
i_read
<=
0
)
break
;
i_index
+=
i_read
;
i_max_size
-=
i_read
;
if
(
i_max_size
<=
0
)
break
;
p_block
=
block_Realloc
(
p_block
,
0
,
p_block
->
i_buffer
+
__MIN
(
1000000
,
i_max_size
)
);
}
if
(
p_block
)
p_block
->
i_buffer
=
i_index
;
return
p_block
;
}
/**
/**
* Read the next input_item_t from the directory stream. It returns the next
* Read the next input_item_t from the directory stream. It returns the next
* input item on success or NULL in case of error or end of stream. The item
* input item on success or NULL in case of error or end of stream. The item
...
...
src/libvlccore.sym
View file @
c7e83e1c
...
@@ -393,7 +393,6 @@ spu_Render
...
@@ -393,7 +393,6 @@ spu_Render
spu_RegisterChannel
spu_RegisterChannel
spu_ClearChannel
spu_ClearChannel
stream_Block
stream_Block
stream_BlockRemaining
stream_Control
stream_Control
stream_Delete
stream_Delete
stream_DemuxNew
stream_DemuxNew
...
...
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