1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-01 20:52:05 +00:00

export fmt2str()

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8995 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2003-01-18 17:31:58 +00:00
parent 8fd2c262e4
commit 10a2ba079b
2 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,7 @@ static int str2fmt(char* str)
/* Convert format to str input str is a buffer for the
converted string, size is the size of the buffer */
static char* fmt2str(int format, char* str, size_t size)
char* fmt2str(int format, char* str, size_t size)
{
int i=0;
// Print endinaness

View File

@ -30,3 +30,6 @@
#define AF_FORMAT_AC3 (4<<3) // Dolby Digital AC3
#define AF_FORMAT_IMA_ADPCM AF_FORMAT_LE|AF_FORMAT_SI // Same as 16 bit signed int
#define AF_FORMAT_SPECIAL_MASK (7<<3)
extern char* fmt2str(int format, char* str, size_t size);