Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
668ce22d
Commit
668ce22d
authored
May 14, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* aac: compilation fix.
* libvlc.h : set correct value for sout-a/vcodec
parent
8c59018c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
modules/demux/aac/demux.c
modules/demux/aac/demux.c
+4
-4
src/libvlc.h
src/libvlc.h
+4
-3
No files found.
modules/demux/aac/demux.c
View file @
668ce22d
...
...
@@ -2,7 +2,7 @@
* demux.c : Raw aac Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: demux.c,v 1.
9
2003/05/14
14:58:35
fenrir Exp $
* $Id: demux.c,v 1.
10
2003/05/14
21:29:42
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -409,9 +409,9 @@ static int Activate( vlc_object_t * p_this )
int
i_skip
;
int
b_forced
=
VLC_FALSE
;
if
(
*
p_input
->
psz_demux
!=
NULL
&&
!
strncmp
(
p_input
->
psz_demux
,
"aac"
,
3
)
)
if
(
p_input
->
psz_demux
&&
!
strncmp
(
p_input
->
psz_demux
,
"aac"
,
3
)
)
{
b_force
=
VLC_TRUE
;
b_force
d
=
VLC_TRUE
;
}
else
if
(
p_input
->
psz_name
)
{
...
...
@@ -419,7 +419,7 @@ static int Activate( vlc_object_t * p_this )
if
(
i_len
>
4
&&
!
strcasecmp
(
&
p_input
->
psz_name
[
i_len
-
4
],
".aac"
)
)
{
b_force
=
VLC_TRUE
;
b_force
d
=
VLC_TRUE
;
}
}
...
...
src/libvlc.h
View file @
668ce22d
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.6
5
2003/05/1
0
2
0:49:07 hartman
Exp $
* $Id: libvlc.h,v 1.6
6
2003/05/1
4
2
1:29:43 fenrir
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -25,8 +25,9 @@
#define Nothing here, this is just to prevent update-po from being stupid
static
char
*
ppsz_sout_acodec
[]
=
{
""
,
"mpeg1"
,
"mpeg2"
,
"mpeg4"
,
"vorbis"
,
NULL
};
static
char
*
ppsz_sout_vcodec
[]
=
{
""
,
"mpeg1"
,
"mpeg2"
,
"mpeg4"
,
NULL
};
static
char
*
ppsz_sout_acodec
[]
=
{
""
,
"mpga"
,
"a52"
,
NULL
};
static
char
*
ppsz_sout_vcodec
[]
=
{
""
,
"mpgv"
,
"mp4v"
,
"DIV3"
,
"h263"
,
NULL
};
static
char
*
ppsz_language
[]
=
{
"auto"
,
"de"
,
"en_GB"
,
"fr"
,
"it"
,
"ja"
,
"nl"
,
"no"
,
"pl"
,
"ru"
,
"sv"
,
NULL
};
...
...
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