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
6691d5b2
Commit
6691d5b2
authored
Jun 25, 2003
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/audio_output/esd: forced sample rate to ESD_DEFAULT_RATE
At last closes bug #625 !
parent
82aeb6d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
modules/audio_output/esd.c
modules/audio_output/esd.c
+16
-5
No files found.
modules/audio_output/esd.c
View file @
6691d5b2
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* esd.c : EsounD module
* esd.c : EsounD module
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* Copyright (C) 2000, 2001 VideoLAN
* $Id: esd.c,v 1.1
8 2003/03/30 18:14:36 gbazin
Exp $
* $Id: esd.c,v 1.1
9 2003/06/25 21:17:21 asmax
Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
*
*
...
@@ -34,6 +34,8 @@
...
@@ -34,6 +34,8 @@
#include <vlc/aout.h>
#include <vlc/aout.h>
#include "aout_internal.h"
#include "aout_internal.h"
#include <sys/socket.h>
#include <esd.h>
#include <esd.h>
/*****************************************************************************
/*****************************************************************************
...
@@ -75,6 +77,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -75,6 +77,7 @@ static int Open( vlc_object_t *p_this )
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
struct
aout_sys_t
*
p_sys
;
struct
aout_sys_t
*
p_sys
;
int
i_nb_channels
;
int
i_nb_channels
;
int
fl
;
/* Allocate structure */
/* Allocate structure */
p_sys
=
malloc
(
sizeof
(
aout_sys_t
)
);
p_sys
=
malloc
(
sizeof
(
aout_sys_t
)
);
...
@@ -113,6 +116,9 @@ static int Open( vlc_object_t *p_this )
...
@@ -113,6 +116,9 @@ static int Open( vlc_object_t *p_this )
break
;
break
;
}
}
/* Force the rate, otherwise the sound is very noisy */
p_aout
->
output
.
output
.
i_rate
=
ESD_DEFAULT_RATE
;
/* open a socket for playing a stream
/* open a socket for playing a stream
* and try to open /dev/dsp if there's no EsounD */
* and try to open /dev/dsp if there's no EsounD */
p_sys
->
i_fd
=
esd_play_stream_fallback
(
p_sys
->
esd_format
,
p_sys
->
i_fd
=
esd_play_stream_fallback
(
p_sys
->
esd_format
,
...
@@ -154,13 +160,18 @@ static void Play( aout_instance_t *p_aout )
...
@@ -154,13 +160,18 @@ static void Play( aout_instance_t *p_aout )
if
(
p_buffer
!=
NULL
)
if
(
p_buffer
!=
NULL
)
{
{
i_tmp
=
write
(
p_sys
->
i_fd
,
p_buffer
->
p_buffer
,
p_buffer
->
i_nb_bytes
);
int
pos
;
char
*
data
=
p_buffer
->
p_buffer
;
if
(
i_tmp
<
0
)
for
(
pos
=
0
;
pos
+
ESD_BUF_SIZE
<=
p_buffer
->
i_nb_bytes
;
pos
+=
ESD_BUF_SIZE
)
{
{
msg_Err
(
p_aout
,
"write failed (%s)"
,
strerror
(
errno
)
);
i_tmp
=
write
(
p_sys
->
i_fd
,
data
+
pos
,
ESD_BUF_SIZE
);
if
(
i_tmp
<
0
)
{
msg_Err
(
p_aout
,
"write failed (%s)"
,
strerror
(
errno
)
);
}
}
}
aout_BufferFree
(
p_buffer
);
aout_BufferFree
(
p_buffer
);
}
}
}
}
...
...
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