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
7a7541cf
Commit
7a7541cf
authored
Jun 19, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dead initialization.
parent
d89c5dc9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
modules/demux/avformat/demux.c
modules/demux/avformat/demux.c
+2
-2
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+2
-3
modules/mux/avi.c
modules/mux/avi.c
+2
-2
No files found.
modules/demux/avformat/demux.c
View file @
7a7541cf
/*****************************************************************************
* demux.c: demuxer using ffmpeg (libavformat).
*****************************************************************************
* Copyright (C) 2004-200
7
the VideoLAN team
* Copyright (C) 2004-200
9
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -718,7 +718,7 @@ static int64_t IOSeek( void *opaque, int64_t offset, int whence )
{
URLContext
*
p_url
=
opaque
;
demux_t
*
p_demux
=
p_url
->
priv_data
;
int64_t
i_absolute
=
(
int64_t
)
offset
;
int64_t
i_absolute
;
int64_t
i_size
=
stream_Size
(
p_demux
->
s
);
#ifdef AVFORMAT_DEBUG
...
...
modules/demux/avi/avi.c
View file @
7a7541cf
/*****************************************************************************
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001-200
4
the VideoLAN team
* Copyright (C) 2001-200
9
the VideoLAN team
* $Id$
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -222,8 +222,7 @@ static int Open( vlc_object_t * p_this )
bool
b_index
=
false
;
int
i_do_index
;
avi_chunk_t
ck_riff
;
avi_chunk_list_t
*
p_riff
=
(
avi_chunk_list_t
*
)
&
ck_riff
;
avi_chunk_list_t
*
p_riff
;
avi_chunk_list_t
*
p_hdrl
,
*
p_movi
;
avi_chunk_avih_t
*
p_avih
;
...
...
modules/mux/avi.c
View file @
7a7541cf
/*****************************************************************************
* avi.c
*****************************************************************************
* Copyright (C) 2001
, 2002
the VideoLAN team
* Copyright (C) 2001
-2009
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -138,7 +138,7 @@ static void SetFCC( uint8_t *p, char *fcc )
static
int
Open
(
vlc_object_t
*
p_this
)
{
sout_mux_t
*
p_mux
=
(
sout_mux_t
*
)
p_this
;
sout_mux_sys_t
*
p_sys
=
p_mux
->
p_sys
;
sout_mux_sys_t
*
p_sys
;
msg_Dbg
(
p_mux
,
"AVI muxer opened"
);
...
...
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