1000l; fixed wrong operator precedence

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21952 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2007-01-17 21:42:04 +00:00
parent 22de9acca9
commit 34ef7517eb
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ static void new_audio_stream(demuxer_t *demux, int aid){
else sh_a->format=0x2000;break; // ac3
}
//evo files
if(aid & 0xC0 == 0xC0) sh_a->format=0x2000;
if((aid & 0xC0) == 0xC0) sh_a->format=0x2000;
if (mpg_d) mpg_d->a_stream_ids[mpg_d->num_a_streams++] = aid;
}
if(demux->audio->id==-1) demux->audio->id=aid;