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
989f6ff2
Commit
989f6ff2
authored
Oct 03, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: correct record stream filter name (fixes #9185)
parent
6e947739
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/input/stream_filter.c
src/input/stream_filter.c
+1
-2
No files found.
src/input/stream_filter.c
View file @
989f6ff2
...
...
@@ -111,8 +111,7 @@ stream_t *stream_FilterChainNew( stream_t *p_source,
/* Add record filter if useful */
if
(
b_record
)
{
stream_t
*
p_filter
=
stream_FilterNew
(
p_source
,
"stream_filter_record"
);
stream_t
*
p_filter
=
stream_FilterNew
(
p_source
,
"record"
);
if
(
p_filter
)
p_source
=
p_filter
;
}
...
...
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