Commit 335bbdfe authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: move some internal defines to src/

parent ac898417
......@@ -153,9 +153,6 @@ typedef int32_t vlc_fixed_t;
/* Number of samples in an A/52 frame. */
#define A52_FRAME_NB 1536
/* Max input rate factor (1/4 -> 4) */
#define AOUT_MAX_INPUT_RATE (4)
/** audio output buffer FIFO */
struct aout_fifo_t
{
......@@ -167,10 +164,6 @@ struct aout_fifo_t
/* FIXME to remove once aout.h is cleaned a bit more */
#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 */
typedef struct aout_output_t
{
......
......@@ -24,6 +24,15 @@
#ifndef LIBVLC_AOUT_INTERNAL_H
# 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>
typedef struct
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment