Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
63af7c78
Commit
63af7c78
authored
13 years ago
by
Laurent Aimar
Browse files
Options
Downloads
Patches
Plain Diff
Added stream_BlockRemaining() helper.
It is usefull to load a whole file to memory.
parent
ea6be118
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/vlc_stream.h
+1
-0
1 addition, 0 deletions
include/vlc_stream.h
src/input/stream.c
+45
-0
45 additions, 0 deletions
src/input/stream.c
src/libvlccore.sym
+1
-0
1 addition, 0 deletions
src/libvlccore.sym
with
47 additions
and
0 deletions
include/vlc_stream.h
+
1
−
0
View file @
63af7c78
...
...
@@ -119,6 +119,7 @@ VLC_API int stream_vaControl( stream_t *s, int i_query, va_list args );
VLC_API
void
stream_Delete
(
stream_t
*
s
);
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_BlockRemaining
(
stream_t
*
s
,
int
i_max_size
);
VLC_API
char
*
stream_ReadLine
(
stream_t
*
);
/**
...
...
This diff is collapsed.
Click to expand it.
src/input/stream.c
+
45
−
0
View file @
63af7c78
...
...
@@ -1942,3 +1942,48 @@ block_t *stream_Block( stream_t *s, int i_size )
}
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_New
(
s
,
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
;
}
This diff is collapsed.
Click to expand it.
src/libvlccore.sym
+
1
−
0
View file @
63af7c78
...
...
@@ -405,6 +405,7 @@ spu_ClearChannel
sql_Create
sql_Destroy
stream_Block
stream_BlockRemaining
stream_Control
stream_Delete
stream_DemuxNew
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment