Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
20375e97
Commit
20375e97
authored
Aug 02, 2015
by
François Cartegnie
🤞
Browse files
demux: adaptative: remove unneeded hls temp var
parent
fe955928
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/hls/playlist/Tags.cpp
View file @
20375e97
...
...
@@ -69,7 +69,6 @@ std::vector<uint8_t> Attribute::hexSequence() const
std
::
pair
<
std
::
size_t
,
std
::
size_t
>
Attribute
::
getByteRange
()
const
{
std
::
pair
<
std
::
size_t
,
std
::
size_t
>
ret
;
std
::
size_t
length
=
0
;
std
::
size_t
offset
=
0
;
std
::
istringstream
is
(
value
);
...
...
@@ -85,8 +84,7 @@ std::pair<std::size_t,std::size_t> Attribute::getByteRange() const
}
}
ret
=
std
::
make_pair
(
offset
,
length
);
return
ret
;
return
std
::
make_pair
(
offset
,
length
);
}
std
::
pair
<
int
,
int
>
Attribute
::
getResolution
()
const
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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