Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
7f318cff
Commit
7f318cff
authored
May 12, 2014
by
Felix Abecassis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: fix declaration/definition mismatch of demux_sys_t
Kill many compiler warnings.
parent
eef98513
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/demux/mkv/chapter_command.hpp
modules/demux/mkv/chapter_command.hpp
+1
-1
modules/demux/mkv/demux.hpp
modules/demux/mkv/demux.hpp
+1
-1
modules/demux/mkv/mkv.cpp
modules/demux/mkv/mkv.cpp
+1
-1
No files found.
modules/demux/mkv/chapter_command.hpp
View file @
7f318cff
...
...
@@ -35,7 +35,7 @@ const binary MATROSKA_DVD_LEVEL_PG = 0x18;
const
binary
MATROSKA_DVD_LEVEL_PTT
=
0x10
;
const
binary
MATROSKA_DVD_LEVEL_CN
=
0x08
;
class
demux_sys_t
;
struct
demux_sys_t
;
class
chapter_codec_cmds_c
{
...
...
modules/demux/mkv/demux.hpp
View file @
7f318cff
...
...
@@ -326,7 +326,7 @@ private:
};
class
demux_sys_t
struct
demux_sys_t
{
public:
demux_sys_t
(
demux_t
&
demux
)
...
...
modules/demux/mkv/mkv.cpp
View file @
7f318cff
...
...
@@ -73,7 +73,7 @@ vlc_module_begin ()
add_shortcut
(
"mka"
,
"mkv"
)
vlc_module_end
()
class
demux_sys_t
;
struct
demux_sys_t
;
static
int
Demux
(
demux_t
*
);
static
int
Control
(
demux_t
*
,
int
,
va_list
);
...
...
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