more verbose messages

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14274 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2004-12-29 19:26:01 +00:00
parent 3786faae53
commit 3fe168658a
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ static int format2oss(int format)
case AF_FORMAT_AC3: return AFMT_AC3; case AF_FORMAT_AC3: return AFMT_AC3;
#endif #endif
} }
printf("Unknown format: %x\n", format); printf("Unknown/not supported internal format: %s\n", af_fmt2str_short(format));
return -1; return -1;
} }
@ -116,7 +116,7 @@ static int oss2format(int format)
case AFMT_AC3: return AF_FORMAT_AC3; case AFMT_AC3: return AF_FORMAT_AC3;
#endif #endif
} }
printf("Unknown format: %x\n", format); printf("Unknown/not supported OSS format: %x\n", format);
return -1; return -1;
} }