mirror of
https://github.com/mpv-player/mpv
synced 2024-12-17 12:25:03 +00:00
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:
parent
22de9acca9
commit
34ef7517eb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user