Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
94cc398e
Commit
94cc398e
authored
Dec 06, 2002
by
Laurent Aimar
Browse files
all: fix some minors warnings.
parent
64310cf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/codec/ffmpeg/audio.c
View file @
94cc398e
...
...
@@ -2,7 +2,7 @@
* audio.c: audio decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: audio.c,v 1.
6
2002/12/0
2 21:13:25 jlj
Exp $
* $Id: audio.c,v 1.
7
2002/12/0
6 14:22:55 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -58,7 +58,7 @@ int E_( InitThread_Audio ) ( adec_thread_t * );
void
E_
(
EndThread_Audio
)
(
adec_thread_t
*
);
void
E_
(
DecodeThread_Audio
)
(
adec_thread_t
*
);
static
int
pi_channels_maps
[
6
]
=
static
unsigned
int
pi_channels_maps
[
6
]
=
{
0
,
AOUT_CHAN_CENTER
,
AOUT_CHAN_LEFT
|
AOUT_CHAN_RIGHT
,
...
...
modules/codec/ffmpeg/video.c
View file @
94cc398e
...
...
@@ -2,7 +2,7 @@
* video.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: video.c,v 1.
9
2002/12/06 1
1:53:4
5 fenrir Exp $
* $Id: video.c,v 1.
10
2002/12/06 1
4:22:5
5 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -95,9 +95,9 @@ static vout_thread_t *ffmpeg_CreateVout( vdec_thread_t *p_vdec,
AVCodecContext
*
p_context
)
{
vout_thread_t
*
p_vout
;
int
i_width
=
p_vdec
->
p_context
->
width
;
int
i_height
=
p_vdec
->
p_context
->
height
;
uint32_t
i_chroma
=
ffmpeg_PixFmtToChroma
(
p_vdec
->
p_context
->
pix_fmt
);
int
i_width
=
p_context
->
width
;
int
i_height
=
p_context
->
height
;
uint32_t
i_chroma
=
ffmpeg_PixFmtToChroma
(
p_context
->
pix_fmt
);
int
i_aspect
;
if
(
!
i_width
||
!
i_height
)
...
...
@@ -115,12 +115,12 @@ static vout_thread_t *ffmpeg_CreateVout( vdec_thread_t *p_vdec,
}
#if LIBAVCODEC_BUILD >= 4640
if
(
(
i_aspect
=
(
int
)
(
VOUT_ASPECT_FACTOR
*
p_vdec
->
p_context
->
aspect_ratio
)
)
==
0
)
p_context
->
aspect_ratio
)
)
==
0
)
{
i_aspect
=
VOUT_ASPECT_FACTOR
*
i_width
/
i_height
;
}
#else
switch
(
p_vdec
->
p_context
->
aspect_ratio_info
)
switch
(
p_context
->
aspect_ratio_info
)
{
case
(
FF_ASPECT_4_3_625
):
case
(
FF_ASPECT_4_3_525
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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