mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
support mp3 decoding over libavcodec
This commit is contained in:
parent
90f0dedf83
commit
fc11dd059b
9 changed files with 342 additions and 158 deletions
|
@ -1,8 +1,19 @@
|
|||
#ifndef __COMMON_MP3_H__
|
||||
#define __COMMON_MP3_H__
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int mp3_find_sync_word(const unsigned char *buf, int size);
|
||||
|
||||
/* decoder */
|
||||
int mp3dec_start(void);
|
||||
int mp3dec_decode(FILE *f, int *file_pos, int file_len);
|
||||
|
||||
extern unsigned short mpeg1_l3_bitrates[16];
|
||||
|
||||
#ifdef __GP2X__
|
||||
void mp3_update_local(int *buffer, int length, int stereo);
|
||||
void mp3_start_play_local(void *f, int pos);
|
||||
#endif
|
||||
|
||||
#endif // __COMMON_MP3_H__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue