Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
335bbdfe
Commit
335bbdfe
authored
Jul 25, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout: move some internal defines to src/
parent
ac898417
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
include/vlc_aout.h
include/vlc_aout.h
+0
-7
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+9
-0
No files found.
include/vlc_aout.h
View file @
335bbdfe
...
@@ -153,9 +153,6 @@ typedef int32_t vlc_fixed_t;
...
@@ -153,9 +153,6 @@ typedef int32_t vlc_fixed_t;
/* Number of samples in an A/52 frame. */
/* Number of samples in an A/52 frame. */
#define A52_FRAME_NB 1536
#define A52_FRAME_NB 1536
/* Max input rate factor (1/4 -> 4) */
#define AOUT_MAX_INPUT_RATE (4)
/** audio output buffer FIFO */
/** audio output buffer FIFO */
struct
aout_fifo_t
struct
aout_fifo_t
{
{
...
@@ -167,10 +164,6 @@ struct aout_fifo_t
...
@@ -167,10 +164,6 @@ struct aout_fifo_t
/* FIXME to remove once aout.h is cleaned a bit more */
/* FIXME to remove once aout.h is cleaned a bit more */
#include <vlc_block.h>
#include <vlc_block.h>
#define AOUT_RESAMPLING_NONE 0
#define AOUT_RESAMPLING_UP 1
#define AOUT_RESAMPLING_DOWN 2
/** an output stream for the audio output */
/** an output stream for the audio output */
typedef
struct
aout_output_t
typedef
struct
aout_output_t
{
{
...
...
src/audio_output/aout_internal.h
View file @
335bbdfe
...
@@ -24,6 +24,15 @@
...
@@ -24,6 +24,15 @@
#ifndef LIBVLC_AOUT_INTERNAL_H
#ifndef LIBVLC_AOUT_INTERNAL_H
# define LIBVLC_AOUT_INTERNAL_H 1
# define LIBVLC_AOUT_INTERNAL_H 1
/* Max input rate factor (1/4 -> 4) */
# define AOUT_MAX_INPUT_RATE (4)
enum
{
AOUT_RESAMPLING_NONE
=
0
,
AOUT_RESAMPLING_UP
,
AOUT_RESAMPLING_DOWN
};
# include <vlc_aout_mixer.h>
# include <vlc_aout_mixer.h>
typedef
struct
typedef
struct
...
...
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