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
f9a82972
Commit
f9a82972
authored
Dec 07, 2003
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compilation warning fixes and if-deffed unused functions/variables.
parent
bc6298f9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
8 deletions
+16
-8
modules/packetizer/mpeg4video.c
modules/packetizer/mpeg4video.c
+10
-5
modules/stream_out/dummy.c
modules/stream_out/dummy.c
+3
-2
src/playlist/playlist.c
src/playlist/playlist.c
+3
-1
No files found.
modules/packetizer/mpeg4video.c
View file @
f9a82972
...
...
@@ -2,7 +2,7 @@
* mpeg4video.c: mpeg 4 video packetizer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4video.c,v 1.2
0 2003/11/30 22:59:10 gbazi
n Exp $
* $Id: mpeg4video.c,v 1.2
1 2003/12/07 19:06:21 jpsama
n Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -395,14 +395,19 @@ static int m4v_VOLParse( es_format_t *fmt, uint8_t *p_vol, int i_vol )
i_ar
=
bs_read
(
&
s
,
4
);
if
(
i_ar
==
0xf
)
{
int
i_ar_width
=
bs_read
(
&
s
,
8
);
int
i_ar_height
=
bs_read
(
&
s
,
8
);
int
i_ar_width
,
i_ar_height
;
i_ar_width
=
bs_read
(
&
s
,
8
);
i_ar_height
=
bs_read
(
&
s
,
8
);
}
if
(
bs_read1
(
&
s
)
)
{
int
i_chroma_format
;
int
i_low_delay
;
/* vol control parameter */
i
nt
i
_chroma_format
=
bs_read
(
&
s
,
2
);
i
nt
i
_low_delay
=
bs_read1
(
&
s
);
i_chroma_format
=
bs_read
(
&
s
,
2
);
i_low_delay
=
bs_read1
(
&
s
);
if
(
bs_read1
(
&
s
)
)
{
...
...
modules/stream_out/dummy.c
View file @
f9a82972
...
...
@@ -2,7 +2,7 @@
* dummy.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: dummy.c,v 1.
2 2003/11/21 15:32:08 fenrir
Exp $
* $Id: dummy.c,v 1.
3 2003/12/07 19:06:21 jpsaman
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -72,8 +72,9 @@ static int Open( vlc_object_t *p_this )
static
void
Close
(
vlc_object_t
*
p_this
)
{
#if 0
sout_stream_t *p_stream = (sout_stream_t*)p_this;
#endif
}
struct
sout_stream_id_t
...
...
src/playlist/playlist.c
View file @
f9a82972
...
...
@@ -2,7 +2,7 @@
* playlist.c : Playlist management functions
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: playlist.c,v 1.6
8 2003/12/04 16:02:54 sam
Exp $
* $Id: playlist.c,v 1.6
9 2003/12/07 19:06:21 jpsaman
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -44,7 +44,9 @@ static void RunThread ( playlist_t * );
static
void
SkipItem
(
playlist_t
*
,
int
);
static
void
PlayItem
(
playlist_t
*
);
#if 0
static void Poubellize ( playlist_t *, input_thread_t * );
#endif
/**
* Create playlist
...
...
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