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
42e803f4
Commit
42e803f4
authored
Apr 21, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: add a notice about the gcc bug on Darwin
parent
e06c3861
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+5
-2
No files found.
modules/demux/mkv.cpp
View file @
42e803f4
...
@@ -468,7 +468,7 @@ public:
...
@@ -468,7 +468,7 @@ public:
,
psz_parent
(
NULL
)
,
psz_parent
(
NULL
)
{}
{}
~
chapter_item_c
()
virtual
~
chapter_item_c
()
{
{
std
::
vector
<
chapter_codec_cmds_c
*>::
iterator
index
=
codecs
.
begin
();
std
::
vector
<
chapter_codec_cmds_c
*>::
iterator
index
=
codecs
.
begin
();
while
(
index
!=
codecs
.
end
()
)
while
(
index
!=
codecs
.
end
()
)
...
@@ -489,7 +489,7 @@ public:
...
@@ -489,7 +489,7 @@ public:
chapter_item_c
*
FindTimecode
(
mtime_t
i_timecode
);
chapter_item_c
*
FindTimecode
(
mtime_t
i_timecode
);
void
Append
(
const
chapter_item_c
&
edition
);
void
Append
(
const
chapter_item_c
&
edition
);
chapter_item_c
*
FindChapter
(
const
chapter_item_c
&
chapter
);
chapter_item_c
*
FindChapter
(
const
chapter_item_c
&
chapter
);
chapter_item_c
*
BrowseCodecPrivate
(
unsigned
int
codec_id
,
virtual
chapter_item_c
*
BrowseCodecPrivate
(
unsigned
int
codec_id
,
bool
(
*
match
)(
const
chapter_codec_cmds_c
&
data
,
const
void
*
p_cookie
,
size_t
i_cookie_size
),
bool
(
*
match
)(
const
chapter_codec_cmds_c
&
data
,
const
void
*
p_cookie
,
size_t
i_cookie_size
),
const
void
*
p_cookie
,
const
void
*
p_cookie
,
size_t
i_cookie_size
);
size_t
i_cookie_size
);
...
@@ -648,6 +648,9 @@ public:
...
@@ -648,6 +648,9 @@ public:
char
*
psz_title
;
char
*
psz_title
;
char
*
psz_date_utc
;
char
*
psz_date_utc
;
/* !!!!! GCC 3.3 bug on Darwin !!!!! */
/* when you remove this variable the compiler issues an atomicity error */
/* this variable only works when using std::vector<chapter_edition_c> */
std
::
vector
<
chapter_edition_c
*>
stored_editions
;
std
::
vector
<
chapter_edition_c
*>
stored_editions
;
int
i_default_edition
;
int
i_default_edition
;
...
...
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