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
872a08d5
Commit
872a08d5
authored
Jul 09, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smooth: remove unused cancellation preemption
vlc_cancel() is not used, so this was a no-op.
parent
5451f733
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
modules/stream_filter/smooth/downloader.c
modules/stream_filter/smooth/downloader.c
+0
-5
No files found.
modules/stream_filter/smooth/downloader.c
View file @
872a08d5
...
...
@@ -601,8 +601,6 @@ void* sms_Thread( void *p_this )
stream_t
*
s
=
(
stream_t
*
)
p_this
;
stream_sys_t
*
p_sys
=
s
->
p_sys
;
int
canc
=
vlc_savecancel
();
chunk_t
*
init_ck
=
build_init_chunk
(
s
);
if
(
!
init_ck
)
goto
cancel
;
...
...
@@ -682,12 +680,9 @@ void* sms_Thread( void *p_this )
}
else
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_testcancel
();
}
cancel:
msg_Dbg
(
s
,
"Canceling download thread!"
);
vlc_restorecancel
(
canc
);
return
NULL
;
}
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