Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7f75b3a3
Commit
7f75b3a3
authored
Nov 30, 2006
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uses correct buffer size with OSS output
parent
7e40556b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/audio_output/oss.c
modules/audio_output/oss.c
+5
-5
No files found.
modules/audio_output/oss.c
View file @
7f75b3a3
...
...
@@ -80,7 +80,7 @@ struct aout_sys_t
/* This must be a power of 2. */
#define FRAME_SIZE 1024
#define FRAME_COUNT
4
#define FRAME_COUNT
32
/*****************************************************************************
* Local prototypes
...
...
@@ -104,7 +104,7 @@ static mtime_t BufferDuration( aout_instance_t * p_aout );
vlc_module_begin
();
set_shortname
(
"OSS"
);
set_description
(
_
(
"
Linux
OSS audio output"
)
);
set_description
(
_
(
"
UNIX
OSS audio output"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
...
...
@@ -472,9 +472,9 @@ static int Open( vlc_object_t *p_this )
/* i_fragment = xxxxyyyy where: xxxx is fragtotal
* 1 << yyyy is fragsize */
i_fra
gments
=
0
;
i_fra
me_size
=
FRAME_SIZE
*
p_aout
->
output
.
output
.
i_bytes_per_frame
;
while
(
i_fra
me_size
>>=
1
)
i_fra
me_size
=
((
uint64_t
)
p_aout
->
output
.
output
.
i_bytes_per_frame
*
p_aout
->
output
.
output
.
i_rate
*
65536
)
/
(
48000
*
2
*
2
)
/
FRAME_COUNT
;
i_fra
gments
=
4
;
while
(
i_fra
gments
<
12
&&
(
1U
<<
i_fragments
)
<
i_frame_size
)
{
++
i_fragments
;
}
...
...
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