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
e21858e2
Commit
e21858e2
authored
Jul 23, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
archive: remove unimplemented peek callback
parent
757ced87
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
modules/access/archive/stream.c
modules/access/archive/stream.c
+0
-9
No files found.
modules/access/archive/stream.c
View file @
e21858e2
...
@@ -34,14 +34,6 @@ struct stream_sys_t
...
@@ -34,14 +34,6 @@ struct stream_sys_t
uint8_t
buffer
[
ARCHIVE_READ_SIZE
];
uint8_t
buffer
[
ARCHIVE_READ_SIZE
];
};
};
static
int
Peek
(
stream_t
*
p_stream
,
const
uint8_t
**
pp_peek
,
unsigned
int
i_peek
)
{
VLC_UNUSED
(
p_stream
);
VLC_UNUSED
(
pp_peek
);
VLC_UNUSED
(
i_peek
);
return
0
;
}
static
int
Control
(
stream_t
*
p_stream
,
int
i_query
,
va_list
args
)
static
int
Control
(
stream_t
*
p_stream
,
int
i_query
,
va_list
args
)
{
{
switch
(
i_query
)
switch
(
i_query
)
...
@@ -208,7 +200,6 @@ int StreamOpen(vlc_object_t *p_object)
...
@@ -208,7 +200,6 @@ int StreamOpen(vlc_object_t *p_object)
}
}
p_stream
->
pf_read
=
NULL
;
p_stream
->
pf_read
=
NULL
;
p_stream
->
pf_peek
=
Peek
;
p_stream
->
pf_control
=
Control
;
p_stream
->
pf_control
=
Control
;
p_stream
->
pf_readdir
=
Browse
;
p_stream
->
pf_readdir
=
Browse
;
...
...
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