Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
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
Show 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/10 20:49:07 hartman
Exp $
* $Id: libvlc.h,v 1.6
6 2003/05/14 21: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