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
20e17cf9
Commit
20e17cf9
authored
Jul 12, 2001
by
Renaud Dartus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I forgot to commit others aout plugins
parent
a25f41cb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
7 deletions
+21
-7
plugins/alsa/aout_alsa.c
plugins/alsa/aout_alsa.c
+3
-1
plugins/beos/aout_beos.cpp
plugins/beos/aout_beos.cpp
+3
-1
plugins/directx/aout_directx.c
plugins/directx/aout_directx.c
+3
-1
plugins/dsp/aout_dsp.c
plugins/dsp/aout_dsp.c
+3
-1
plugins/dummy/aout_dummy.c
plugins/dummy/aout_dummy.c
+3
-1
plugins/macosx/aout_macosx.c
plugins/macosx/aout_macosx.c
+3
-1
plugins/sdl/aout_sdl.c
plugins/sdl/aout_sdl.c
+3
-1
No files found.
plugins/alsa/aout_alsa.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_alsa.c : Alsa functions library
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: aout_alsa.c,v 1.1
7 2001/07/11 02:01:03 sam
Exp $
* $Id: aout_alsa.c,v 1.1
8 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Henri Fallon <henri@videolan.org> - Original Author
* Jeffrey Baker <jwbaker@acm.org> - Port to ALSA 1.0 API
...
...
@@ -284,6 +284,8 @@ static int aout_SetFormat( aout_thread_t *p_aout )
return
(
-
1
);
}
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
plugins/beos/aout_beos.cpp
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_beos.cpp: BeOS audio output
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: aout_beos.cpp,v 1.1
4 2001/05/31 03:57:54 sam
Exp $
* $Id: aout_beos.cpp,v 1.1
5 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -180,6 +180,8 @@ static int aout_Open( aout_thread_t *p_aout )
*****************************************************************************/
static
int
aout_SetFormat
(
aout_thread_t
*
p_aout
)
{
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
plugins/directx/aout_directx.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_directx.c: Windows DirectX audio output method
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: aout_directx.c,v 1.
4 2001/07/08 17:45:52 gbazin
Exp $
* $Id: aout_directx.c,v 1.
5 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -257,6 +257,8 @@ static int aout_SetFormat( aout_thread_t *p_aout )
intf_WarnMsg
(
3
,
"aout: DirectX aout_SetFormat cannot create buffer"
);
return
(
1
);
}
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
plugins/dsp/aout_dsp.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_dsp.c : dsp functions library
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: aout_dsp.c,v 1.1
3 2001/05/30 17:03:12 sam
Exp $
* $Id: aout_dsp.c,v 1.1
4 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -239,6 +239,8 @@ static int aout_SetFormat( aout_thread_t *p_aout )
p_aout
->
l_rate
=
l_rate
;
}
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
plugins/dummy/aout_dummy.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_dummy.c : dummy audio output plugin
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: aout_dummy.c,v 1.1
3 2001/06/14 01:49:44 sam
Exp $
* $Id: aout_dummy.c,v 1.1
4 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -114,6 +114,8 @@ static int aout_Open( aout_thread_t *p_aout )
*****************************************************************************/
static
int
aout_SetFormat
(
aout_thread_t
*
p_aout
)
{
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
plugins/macosx/aout_macosx.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_darwin.c : Darwin audio output plugin
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: aout_macosx.c,v 1.
2 2001/05/07 03:14:09 stef
Exp $
* $Id: aout_macosx.c,v 1.
3 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Colin Delacroix <colin@zoy.org>
*
...
...
@@ -337,6 +337,8 @@ static int aout_SetFormat( aout_thread_t *p_aout )
}
}
p_aout
->
i_latency
=
0
;
/* add callback */
err
=
AudioDeviceAddIOProc
(
p_aout
->
p_sys
->
device
,
(
AudioDeviceIOProc
)
appIOProc
,
...
...
plugins/sdl/aout_sdl.c
View file @
20e17cf9
...
...
@@ -2,7 +2,7 @@
* aout_sdl.c : audio sdl functions library
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: aout_sdl.c,v 1.1
3 2001/05/30 17:03:12 sam
Exp $
* $Id: aout_sdl.c,v 1.1
4 2001/07/12 20:44:52 reno
Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -237,6 +237,8 @@ static int aout_SetFormat( aout_thread_t *p_aout )
p_aout
->
p_sys
->
b_active
=
1
;
SDL_PauseAudio
(
0
);
p_aout
->
i_latency
=
0
;
return
(
0
);
}
...
...
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