OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [first/] [mp3/] [sw/] [mad-xess/] [audio.h] - Diff between revs 769 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 769 Rev 1765
/*
/*
 * mad - MPEG audio decoder
 * mad - MPEG audio decoder
 * Copyright (C) 2000-2001 Robert Leslie
 * Copyright (C) 2000-2001 Robert Leslie
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * (at your option) any later version.
 *
 *
 * This program is distributed in the hope that it will be useful,
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * GNU General Public License for more details.
 *
 *
 * You should have received a copy of the GNU General Public License
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *
 * $Id: audio.h,v 1.1.1.1 2001-11-04 19:00:22 lampret Exp $
 * $Id: audio.h,v 1.1.1.1 2001-11-04 19:00:22 lampret Exp $
 */
 */
 
 
# ifndef AUDIO_H
# ifndef AUDIO_H
# define AUDIO_H
# define AUDIO_H
 
 
# include "mad.h"
# include "mad.h"
 
 
# define MAX_NSAMPLES   (1152 * 3)      /* allow for resampled frame */
# define MAX_NSAMPLES   (1152 * 3)      /* allow for resampled frame */
 
 
enum audio_command {
enum audio_command {
  AUDIO_COMMAND_INIT,
  AUDIO_COMMAND_INIT,
  AUDIO_COMMAND_CONFIG,
  AUDIO_COMMAND_CONFIG,
  AUDIO_COMMAND_FINISH
  AUDIO_COMMAND_FINISH
};
};
 
 
enum audio_mode {
enum audio_mode {
  AUDIO_MODE_ROUND  = 0x0001,
  AUDIO_MODE_ROUND  = 0x0001,
  AUDIO_MODE_DITHER = 0x0002
  AUDIO_MODE_DITHER = 0x0002
};
};
 
 
struct audio_stats {
struct audio_stats {
  unsigned long clipped_samples;
  unsigned long clipped_samples;
  mad_fixed_t peak_clipping;
  mad_fixed_t peak_clipping;
  mad_fixed_t peak_sample;
  mad_fixed_t peak_sample;
};
};
 
 
union audio_control {
union audio_control {
  enum audio_command command;
  enum audio_command command;
 
 
  struct audio_init {
  struct audio_init {
    enum audio_command command;
    enum audio_command command;
    char const *path;
    char const *path;
  } init;
  } init;
 
 
  struct audio_config {
  struct audio_config {
    enum audio_command command;
    enum audio_command command;
    unsigned int channels;
    unsigned int channels;
    unsigned int speed;
    unsigned int speed;
  } config;
  } config;
 
 
  struct audio_play {
  struct audio_play {
    enum audio_command command;
    enum audio_command command;
    unsigned int nsamples;
    unsigned int nsamples;
    mad_fixed_t const *samples[2];
    mad_fixed_t const *samples[2];
    enum audio_mode mode;
    enum audio_mode mode;
    struct audio_stats *stats;
    struct audio_stats *stats;
  } play;
  } play;
 
 
  struct audio_finish {
  struct audio_finish {
    enum audio_command command;
    enum audio_command command;
  } finish;
  } finish;
};
};
 
 
extern char const *audio_error;
extern char const *audio_error;
 
 
typedef int audio_ctlfunc_t(union audio_control *);
typedef int audio_ctlfunc_t(union audio_control *);
 
 
audio_ctlfunc_t *audio_output(char const **);
audio_ctlfunc_t *audio_output(char const **);
 
 
audio_ctlfunc_t audio_oss;
audio_ctlfunc_t audio_oss;
audio_ctlfunc_t audio_empeg;
audio_ctlfunc_t audio_empeg;
audio_ctlfunc_t audio_sun;
audio_ctlfunc_t audio_sun;
audio_ctlfunc_t audio_win32;
audio_ctlfunc_t audio_win32;
 
 
audio_ctlfunc_t audio_raw;
audio_ctlfunc_t audio_raw;
audio_ctlfunc_t audio_wave;
audio_ctlfunc_t audio_wave;
audio_ctlfunc_t audio_snd;
audio_ctlfunc_t audio_snd;
audio_ctlfunc_t audio_hex;
audio_ctlfunc_t audio_hex;
audio_ctlfunc_t audio_null;
audio_ctlfunc_t audio_null;
 
 
signed long audio_linear_round(unsigned int, mad_fixed_t,
signed long audio_linear_round(unsigned int, mad_fixed_t,
                               struct audio_stats *);
                               struct audio_stats *);
signed long audio_linear_dither(unsigned int, mad_fixed_t, mad_fixed_t *,
signed long audio_linear_dither(unsigned int, mad_fixed_t, mad_fixed_t *,
                                struct audio_stats *);
                                struct audio_stats *);
 
 
unsigned int audio_pcm_s16le(unsigned char *, unsigned int,
unsigned int audio_pcm_s16le(unsigned char *, unsigned int,
                             mad_fixed_t const *, mad_fixed_t const *);
                             mad_fixed_t const *, mad_fixed_t const *);
 
 
unsigned char audio_mulaw_round(mad_fixed_t);
unsigned char audio_mulaw_round(mad_fixed_t);
unsigned char audio_mulaw_dither(mad_fixed_t, mad_fixed_t *);
unsigned char audio_mulaw_dither(mad_fixed_t, mad_fixed_t *);
 
 
unsigned int audio_pcm_mulaw(unsigned char *, unsigned int,
unsigned int audio_pcm_mulaw(unsigned char *, unsigned int,
                             mad_fixed_t const *, mad_fixed_t const *,
                             mad_fixed_t const *, mad_fixed_t const *,
                             enum audio_mode, struct audio_stats *);
                             enum audio_mode, struct audio_stats *);
 
 
# endif
# endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.