mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
7b0104e9a1
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
59 lines
2 KiB
C
Executable file
59 lines
2 KiB
C
Executable file
/*
|
|
* mpadec - MPEG audio decoder
|
|
* Copyright (C) 2002-2004 Dmitriy Startsev (dstartsev@rambler.ru)
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* $Id: mp3dec.h,v 1.2 2004/08/02 09:38:09 metal_man Exp $ */
|
|
|
|
#ifndef __MP3DEC_H
|
|
#define __MP3DEC_H
|
|
|
|
#include "mpadec.h"
|
|
|
|
#define MP3DEC_RETCODE_OK 0
|
|
#define MP3DEC_RETCODE_INVALID_HANDLE 1
|
|
#define MP3DEC_RETCODE_BAD_STATE 2
|
|
#define MP3DEC_RETCODE_INVALID_PARAMETERS 3
|
|
#define MP3DEC_RETCODE_NOT_MPEG_STREAM 4
|
|
#define MP3DEC_RETCODE_SEEK_FAILED 5
|
|
#define MP3DEC_RETCODE_UNKNOWN 6
|
|
|
|
#define MP3DEC_SEEK_BYTES 0
|
|
#define MP3DEC_SEEK_SAMPLES 1
|
|
#define MP3DEC_SEEK_SECONDS 2
|
|
|
|
typedef void *mp3dec_t;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
mp3dec_t MPADECAPI mp3dec_init(void);
|
|
int MPADECAPI mp3dec_init_file(mp3dec_t mp3dec, int fd, int64_t length, int nogap);
|
|
int MPADECAPI mp3dec_uninit(mp3dec_t mp3dec);
|
|
int MPADECAPI mp3dec_reset(mp3dec_t mp3dec);
|
|
int MPADECAPI mp3dec_configure(mp3dec_t mp3dec, mpadec_config_t *cfg);
|
|
int MPADECAPI mp3dec_get_info(mp3dec_t mp3dec, void *info, int info_type);
|
|
int MPADECAPI mp3dec_decode(mp3dec_t mp3dec, uint8_t *buf, uint32_t bufsize, uint32_t *used);
|
|
int MPADECAPI mp3dec_seek(mp3dec_t mp3dec, int64_t pos, int units);
|
|
char * MPADECAPI mp3dec_error(int code);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|