Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
e89d6931
Commit
e89d6931
authored
Mar 29, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* avi: fixed a cast of lvalue.
* livedotcom, mkv: removed all TAB_*.
parent
0101fe51
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+2
-1
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+4
-1
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+3
-1
No files found.
modules/demux/avi/avi.c
View file @
e89d6931
...
...
@@ -343,7 +343,8 @@ static int Open( vlc_object_t * p_this )
tk
->
i_blockno
=
0
;
tk
->
i_blocksize
=
0
;
p_auds
=
(
void
*
)
p_vids
=
(
void
*
)
AVI_ChunkFind
(
p_strl
,
AVIFOURCC_strf
,
0
);
p_vids
=
(
avi_chunk_strf_vids_t
*
)
AVI_ChunkFind
(
p_strl
,
AVIFOURCC_strf
,
0
);
p_auds
=
(
avi_chunk_strf_auds_t
*
)
AVI_ChunkFind
(
p_strl
,
AVIFOURCC_strf
,
0
);
if
(
p_strl
==
NULL
||
p_strh
==
NULL
||
p_auds
==
NULL
||
p_vids
==
NULL
)
{
...
...
modules/demux/livedotcom.cpp
View file @
e89d6931
...
...
@@ -648,9 +648,12 @@ static int DemuxOpen ( vlc_object_t *p_this )
if
(
tk
->
p_es
||
tk
->
b_quicktime
||
tk
->
b_muxed
)
{
TAB_APPEND
(
p_sys
->
i_track
,
p_sys
->
track
,
tk
);
tk
->
readSource
=
sub
->
readSource
();
tk
->
rtpSource
=
sub
->
rtpSource
();
/* Append */
p_sys
->
track
=
(
live_track_t
**
)
realloc
(
p_sys
->
track
,
sizeof
(
live_track_t
)
*
(
p_sys
->
i_track
+
1
)
);
p_sys
->
track
[
p_sys
->
i_track
++
]
=
tk
;
}
else
{
...
...
modules/demux/mkv.cpp
View file @
e89d6931
...
...
@@ -2240,7 +2240,9 @@ static void InformationsCreate( input_thread_t *p_input )
mkv_track_t
*
tk
=
&
p_sys
->
track
[
i_track
];
vlc_meta_t
*
mtk
=
vlc_meta_New
();
TAB_APPEND
(
p_sys
->
meta
->
i_track
,
p_sys
->
meta
->
track
,
mtk
);
p_sys
->
meta
->
track
=
(
vlc_meta_t
**
)
realloc
(
p_sys
->
meta
->
track
,
sizeof
(
vlc_meta_t
*
)
*
(
p_sys
->
meta
->
i_track
+
1
)
);
p_sys
->
meta
->
track
[
p_sys
->
meta
->
i_track
++
]
=
mtk
;
if
(
tk
->
fmt
.
psz_description
)
{
...
...
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