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
833b0c76
Commit
833b0c76
authored
Jan 24, 2012
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Jan 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hls: Cosmetics: removing useless casts.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
75fbc4d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/stream_filter/httplive.c
modules/stream_filter/httplive.c
+2
-2
No files found.
modules/stream_filter/httplive.c
View file @
833b0c76
...
...
@@ -293,7 +293,7 @@ static hls_stream_t *hls_Get(vlc_array_t *hls_stream, const int wanted)
static
inline
hls_stream_t
*
hls_GetFirst
(
vlc_array_t
*
hls_stream
)
{
return
(
hls_stream_t
*
)
hls_Get
(
hls_stream
,
0
);
return
hls_Get
(
hls_stream
,
0
);
}
static
hls_stream_t
*
hls_GetLast
(
vlc_array_t
*
hls_stream
)
...
...
@@ -302,7 +302,7 @@ static hls_stream_t *hls_GetLast(vlc_array_t *hls_stream)
if
(
count
<=
0
)
return
NULL
;
count
--
;
return
(
hls_stream_t
*
)
hls_Get
(
hls_stream
,
count
);
return
hls_Get
(
hls_stream
,
count
);
}
static
hls_stream_t
*
hls_Find
(
vlc_array_t
*
hls_stream
,
hls_stream_t
*
hls_new
)
...
...
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