Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Martin Finkel
VLC
Commits
52a47237
Commit
52a47237
authored
Oct 05, 2015
by
François Cartegnie
🤞
Browse files
demux: adaptative: fix format id sign
parent
b74c4c50
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/demux/adaptative/StreamFormat.cpp
View file @
52a47237
...
...
@@ -26,7 +26,7 @@ StreamFormat::operator unsigned() const
return
formatid
;
}
StreamFormat
::
StreamFormat
(
int
formatid_
)
StreamFormat
::
StreamFormat
(
unsigned
formatid_
)
{
formatid
=
formatid_
;
}
...
...
modules/demux/adaptative/StreamFormat.hpp
View file @
52a47237
...
...
@@ -28,7 +28,7 @@ namespace adaptative
public:
static
const
unsigned
UNSUPPORTED
=
0
;
StreamFormat
(
int
=
UNSUPPORTED
);
StreamFormat
(
unsigned
=
UNSUPPORTED
);
~
StreamFormat
();
operator
unsigned
()
const
;
bool
operator
==
(
const
StreamFormat
&
)
const
;
...
...
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