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
f6777083
Commit
f6777083
authored
Jul 23, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
record: remove peek callback
parent
9ac96f62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
modules/stream_filter/record.c
modules/stream_filter/record.c
+0
-7
No files found.
modules/stream_filter/record.c
View file @
f6777083
...
@@ -65,7 +65,6 @@ struct stream_sys_t
...
@@ -65,7 +65,6 @@ struct stream_sys_t
* Local prototypes
* Local prototypes
****************************************************************************/
****************************************************************************/
static
int
Read
(
stream_t
*
,
void
*
p_read
,
unsigned
int
i_read
);
static
int
Read
(
stream_t
*
,
void
*
p_read
,
unsigned
int
i_read
);
static
int
Peek
(
stream_t
*
,
const
uint8_t
**
pp_peek
,
unsigned
int
i_peek
);
static
int
Control
(
stream_t
*
,
int
i_query
,
va_list
);
static
int
Control
(
stream_t
*
,
int
i_query
,
va_list
);
static
int
Start
(
stream_t
*
,
const
char
*
psz_extension
);
static
int
Start
(
stream_t
*
,
const
char
*
psz_extension
);
...
@@ -89,7 +88,6 @@ static int Open ( vlc_object_t *p_this )
...
@@ -89,7 +88,6 @@ static int Open ( vlc_object_t *p_this )
/* */
/* */
s
->
pf_read
=
Read
;
s
->
pf_read
=
Read
;
s
->
pf_peek
=
Peek
;
s
->
pf_control
=
Control
;
s
->
pf_control
=
Control
;
stream_FilterSetDefaultReadDir
(
s
);
stream_FilterSetDefaultReadDir
(
s
);
...
@@ -137,11 +135,6 @@ static int Read( stream_t *s, void *p_read, unsigned int i_read )
...
@@ -137,11 +135,6 @@ static int Read( stream_t *s, void *p_read, unsigned int i_read )
return
i_record
;
return
i_record
;
}
}
static
int
Peek
(
stream_t
*
s
,
const
uint8_t
**
pp_peek
,
unsigned
int
i_peek
)
{
return
stream_Peek
(
s
->
p_source
,
pp_peek
,
i_peek
);
}
static
int
Control
(
stream_t
*
s
,
int
i_query
,
va_list
args
)
static
int
Control
(
stream_t
*
s
,
int
i_query
,
va_list
args
)
{
{
if
(
i_query
!=
STREAM_SET_RECORD_STATE
)
if
(
i_query
!=
STREAM_SET_RECORD_STATE
)
...
...
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