mirror of https://github.com/mpv-player/mpv
Remove some pointless casts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25228 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9816936cb6
commit
45cfc7af1a
|
@ -824,9 +824,9 @@ static demuxer_t* demux_open_hack_avi(demuxer_t *demuxer)
|
|||
{
|
||||
sh_audio_t* sh_a;
|
||||
|
||||
demuxer = (demuxer_t*) demux_open_avi(demuxer);
|
||||
demuxer = demux_open_avi(demuxer);
|
||||
if(!demuxer) return NULL; // failed to open
|
||||
sh_a = (sh_audio_t*)demuxer->audio->sh;
|
||||
sh_a = demuxer->audio->sh;
|
||||
if(demuxer->audio->id != -2 && sh_a) {
|
||||
#ifdef HAVE_OGGVORBIS
|
||||
// support for Ogg-in-AVI:
|
||||
|
|
Loading…
Reference in New Issue