Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
75d42173
Commit
75d42173
authored
Aug 01, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: audio -> mpga
* demux/* : function name consistency.
parent
3051781d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
20 deletions
+18
-20
configure.ac
configure.ac
+2
-2
modules/demux/aac.c
modules/demux/aac.c
+8
-10
modules/demux/wav.c
modules/demux/wav.c
+8
-8
No files found.
configure.ac
View file @
75d42173
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.5
0 2003/08/01 00:26:22
fenrir Exp $
dnl $Id: configure.ac,v 1.5
1 2003/08/01 00:40:05
fenrir Exp $
AC_INIT(vlc,0.6.1)
...
...
@@ -767,7 +767,7 @@ dnl default modules
dnl
#AX_ADD_BUILTINS([mpeg_video_old idct idctclassic motion])
AX_ADD_PLUGINS([dummy rc logger gestures memcpy])
AX_ADD_PLUGINS([es
audio
m4v mpeg_system ps ts avi asf aac mp4 rawdv])
AX_ADD_PLUGINS([es
mpga
m4v mpeg_system ps ts avi asf aac mp4 rawdv])
AX_ADD_PLUGINS([spudec mpeg_audio lpcm a52 dts cinepak])
AX_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur])
AX_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32])
...
...
modules/demux/aac.c
View file @
75d42173
...
...
@@ -2,7 +2,7 @@
* aac.c : Raw aac Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: aac.c,v 1.
1 2003/08/01 00:08:3
5 fenrir Exp $
* $Id: aac.c,v 1.
2 2003/08/01 00:40:0
5 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -34,14 +34,13 @@
/*****************************************************************************
* Module descriptor
*****************************************************************************/
static
int
Activate
(
vlc_object_t
*
);
static
void
Deactivate
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"AAC demuxer"
)
);
set_capability
(
"demux"
,
10
);
set_callbacks
(
Activate
,
Deactivat
e
);
set_callbacks
(
Open
,
Clos
e
);
add_shortcut
(
"aac"
);
vlc_module_end
();
...
...
@@ -53,7 +52,6 @@ vlc_module_end();
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static
int
Demux
(
input_thread_t
*
);
struct
demux_sys_t
...
...
@@ -93,9 +91,9 @@ static inline int HeaderCheck( uint8_t *p )
/*****************************************************************************
*
Activate
: initializes AAC demux structures
*
Open
: initializes AAC demux structures
*****************************************************************************/
static
int
Activate
(
vlc_object_t
*
p_this
)
static
int
Open
(
vlc_object_t
*
p_this
)
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
demux_sys_t
*
p_sys
;
...
...
@@ -308,9 +306,9 @@ static int Demux( input_thread_t * p_input )
}
/*****************************************************************************
*
Deactivat
e: frees unused data
*
Clos
e: frees unused data
*****************************************************************************/
static
void
Deactivat
e
(
vlc_object_t
*
p_this
)
static
void
Clos
e
(
vlc_object_t
*
p_this
)
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
demux_sys_t
*
p_sys
=
p_input
->
p_demux_data
;
...
...
modules/demux/wav.c
View file @
75d42173
...
...
@@ -2,7 +2,7 @@
* wav.c : wav file input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: wav.c,v 1.
1 2003/08/01 00:09:37
fenrir Exp $
* $Id: wav.c,v 1.
2 2003/08/01 00:40:05
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -36,13 +36,13 @@
* Module descriptor
*****************************************************************************/
static
int
Activate
(
vlc_object_t
*
);
static
void
Deactivat
e
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
static
void
Clos
e
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"WAV demuxer"
)
);
set_capability
(
"demux"
,
142
);
set_callbacks
(
Activate
,
Deactivat
e
);
set_callbacks
(
Open
,
Clos
e
);
vlc_module_end
();
/*****************************************************************************
...
...
@@ -90,9 +90,9 @@ static void FrameInfo_MS_ADPCM ( input_thread_t *, unsigned int *, mtime_t * );
static
void
FrameInfo_PCM
(
input_thread_t
*
,
unsigned
int
*
,
mtime_t
*
);
/*****************************************************************************
*
Activate
: check file and initializes structures
*
Open
: check file and initializes structures
*****************************************************************************/
static
int
Activate
(
vlc_object_t
*
p_this
)
static
int
Open
(
vlc_object_t
*
p_this
)
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
demux_sys_t
*
p_sys
;
...
...
@@ -341,9 +341,9 @@ static int Demux( input_thread_t *p_input )
}
/*****************************************************************************
*
Deactivat
e: frees unused data
*
Clos
e: frees unused data
*****************************************************************************/
static
void
Deactivat
e
(
vlc_object_t
*
p_this
)
static
void
Clos
e
(
vlc_object_t
*
p_this
)
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
demux_sys_t
*
p_sys
=
p_input
->
p_demux_data
;
...
...
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