1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-01 04:31:39 +00:00

demux_audio: Set needs_parsing to 1 for DTS audio

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32668 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-11-29 18:56:21 +00:00 committed by Uoti Urpala
parent 831395e79b
commit 51830c3bff

View File

@ -467,8 +467,10 @@ static int demux_audio_open(demuxer_t* demuxer) {
break;
}
}
if (sh_audio->format == 0x2001)
if (sh_audio->format == 0x2001) {
sh_audio->needs_parsing = 1;
mp_msg(MSGT_DEMUX,MSGL_DBG2,"[demux_audio] DTS sync offset = %u\n", i);
}
}
stream_seek(s,demuxer->movi_start);