more lvalue casts

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12378 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rfelker 2004-05-01 18:36:50 +00:00
parent 4ebc221760
commit 692e4b90f4
1 changed files with 2 additions and 2 deletions

View File

@ -52,10 +52,10 @@ static int preinit(sh_audio_t *sh) {
static int init(sh_audio_t *sh) { static int init(sh_audio_t *sh) {
switch (sh->format) { switch (sh->format) {
case mmioFOURCC('1','4','_','4'): case mmioFOURCC('1','4','_','4'):
(Real_144*)sh->context = init_144(); sh->context = init_144();
break; break;
case mmioFOURCC('2','8','_','8'): case mmioFOURCC('2','8','_','8'):
(Real_288*)sh->context = init_288(); sh->context = init_288();
break; break;
default: default:
mp_msg(MSGT_DECAUDIO,MSGL_ERR,"[ra1428] Unhandled format in init: %x\n", sh->format); mp_msg(MSGT_DECAUDIO,MSGL_ERR,"[ra1428] Unhandled format in init: %x\n", sh->format);