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
096fc22a
Commit
096fc22a
authored
Jan 28, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/audio_output/esd.c: fixed esd audio output (Closes: #139).
parent
b05a2422
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
79 deletions
+22
-79
modules/audio_output/esd.c
modules/audio_output/esd.c
+22
-79
No files found.
modules/audio_output/esd.c
View file @
096fc22a
...
@@ -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
6 2003/01/28 03:46:22
sam Exp $
* $Id: esd.c,v 1.1
7 2003/01/28 22:52:30
sam Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
*
*
...
@@ -47,7 +47,7 @@ struct aout_sys_t
...
@@ -47,7 +47,7 @@ struct aout_sys_t
esd_format_t
esd_format
;
esd_format_t
esd_format
;
int
i_fd
;
int
i_fd
;
mtime_t
latency
;
mtime_t
latency
;
/* unused, but we might do something with it */
};
};
/*****************************************************************************
/*****************************************************************************
...
@@ -56,8 +56,6 @@ struct aout_sys_t
...
@@ -56,8 +56,6 @@ struct aout_sys_t
static
int
Open
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Play
(
aout_instance_t
*
);
static
void
Play
(
aout_instance_t
*
);
static
int
ESDThread
(
aout_instance_t
*
);
static
void
ESDLoop
(
aout_instance_t
*
);
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -83,7 +81,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -83,7 +81,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_sys
==
NULL
)
if
(
p_sys
==
NULL
)
{
{
msg_Err
(
p_aout
,
"out of memory"
);
msg_Err
(
p_aout
,
"out of memory"
);
return
-
1
;
return
VLC_ENOMEM
;
}
}
p_aout
->
output
.
p_sys
=
p_sys
;
p_aout
->
output
.
p_sys
=
p_sys
;
...
@@ -124,7 +122,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -124,7 +122,7 @@ static int Open( vlc_object_t *p_this )
msg_Err
(
p_aout
,
"cannot open esound socket (format 0x%08x at %d Hz)"
,
msg_Err
(
p_aout
,
"cannot open esound socket (format 0x%08x at %d Hz)"
,
p_sys
->
esd_format
,
p_aout
->
output
.
output
.
i_rate
);
p_sys
->
esd_format
,
p_aout
->
output
.
output
.
i_rate
);
free
(
p_sys
);
free
(
p_sys
);
return
-
1
;
return
VLC_EGENERIC
;
}
}
p_aout
->
output
.
i_nb_samples
=
ESD_BUF_SIZE
*
2
;
p_aout
->
output
.
i_nb_samples
=
ESD_BUF_SIZE
*
2
;
...
@@ -140,17 +138,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -140,17 +138,7 @@ static int Open( vlc_object_t *p_this )
/
p_aout
->
output
.
output
.
i_bytes_per_frame
/
p_aout
->
output
.
output
.
i_bytes_per_frame
/
p_aout
->
output
.
output
.
i_rate
;
/
p_aout
->
output
.
output
.
i_rate
;
/* Create ESD thread and wait for its readiness. */
return
VLC_SUCCESS
;
if
(
vlc_thread_create
(
p_aout
,
"aout"
,
ESDThread
,
VLC_THREAD_PRIORITY_OUTPUT
,
VLC_FALSE
)
)
{
msg_Err
(
p_aout
,
"cannot create ESD thread (%s)"
,
strerror
(
errno
)
);
close
(
p_sys
->
i_fd
);
free
(
p_sys
);
return
-
1
;
}
return
0
;
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -158,80 +146,35 @@ static int Open( vlc_object_t *p_this )
...
@@ -158,80 +146,35 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
*****************************************************************************/
static
void
Play
(
aout_instance_t
*
p_aout
)
static
void
Play
(
aout_instance_t
*
p_aout
)
{
{
}
/*****************************************************************************
* Close: close the Esound socket
*****************************************************************************/
static
void
Close
(
vlc_object_t
*
p_this
)
{
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_buffer_t
*
p_buffer
;
int
i_tmp
;
p_aout
->
b_die
=
1
;
p_buffer
=
aout_FifoPop
(
p_aout
,
&
p_aout
->
output
.
fifo
);
vlc_thread_join
(
p_aout
);
close
(
p_sys
->
i_fd
);
free
(
p_sys
);
}
/*****************************************************************************
if
(
p_buffer
!=
NULL
)
* ESDThread: asynchronous thread used to DMA the data to the device
*****************************************************************************/
static
int
ESDThread
(
aout_instance_t
*
p_aout
)
{
while
(
!
p_aout
->
b_die
)
{
{
ESDLoop
(
p_aout
);
i_tmp
=
write
(
p_sys
->
i_fd
,
p_buffer
->
p_buffer
,
p_buffer
->
i_nb_bytes
);
}
if
(
i_tmp
<
0
)
{
msg_Err
(
p_aout
,
"write failed (%s)"
,
strerror
(
errno
)
);
}
return
0
;
aout_BufferFree
(
p_buffer
);
}
}
}
/*****************************************************************************
/*****************************************************************************
* ESDLoop: ESDThread's inner loop
* Close: close the Esound socket
*****************************************************************************
* This is a separate function because it makes use of alloca() which makes
* use of the caller's stack frame, which means we need to return after each
* iteration.
*****************************************************************************/
*****************************************************************************/
static
void
ESDLoop
(
aout_instance_t
*
p_aout
)
static
void
Close
(
vlc_object_t
*
p_this
)
{
{
aout_instance_t
*
p_aout
=
(
aout_instance_t
*
)
p_this
;
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_buffer_t
*
p_buffer
;
int
i_tmp
,
i_size
;
byte_t
*
p_bytes
=
NULL
;
/* Get the presentation date of the next write() operation. It
close
(
p_sys
->
i_fd
);
* is equal to the current date + buffered samples + esd latency */
free
(
p_sys
);
p_buffer
=
aout_OutputNextBuffer
(
p_aout
,
mdate
()
+
p_sys
->
latency
,
VLC_FALSE
);
if
(
p_buffer
!=
NULL
)
{
p_bytes
=
p_buffer
->
p_buffer
;
i_size
=
p_buffer
->
i_nb_bytes
;
}
else
{
i_size
=
ESD_BUF_SIZE
*
2
/
p_aout
->
output
.
output
.
i_frame_length
*
p_aout
->
output
.
output
.
i_bytes_per_frame
;
p_bytes
=
alloca
(
i_size
);
memset
(
p_bytes
,
0
,
i_size
);
}
i_tmp
=
write
(
p_sys
->
i_fd
,
p_bytes
,
i_size
);
if
(
i_tmp
<
0
)
{
msg_Err
(
p_aout
,
"write failed (%s)"
,
strerror
(
errno
)
);
}
if
(
p_buffer
!=
NULL
)
{
aout_BufferFree
(
p_buffer
);
}
}
}
#if 0
#if 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