forked from mia/Aegisub
Apply container audio delay when the FFMS2 version used supports it. Closes #1251.
Originally committed to SVN as r5058.
This commit is contained in:
parent
ce2adcea79
commit
bd7ac88f6b
1 changed files with 4 additions and 0 deletions
|
@ -179,7 +179,11 @@ void FFmpegSourceAudioProvider::LoadAudio(wxString filename) {
|
||||||
// warn user?
|
// warn user?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if FFMS_VERSION >= ((2 << 24) | (14 << 16) | (1 << 8) | 0)
|
||||||
|
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, -1, &ErrInfo);
|
||||||
|
#else
|
||||||
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, &ErrInfo);
|
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, &ErrInfo);
|
||||||
|
#endif
|
||||||
FFMS_DestroyIndex(Index);
|
FFMS_DestroyIndex(Index);
|
||||||
Index = NULL;
|
Index = NULL;
|
||||||
if (!AudioSource) {
|
if (!AudioSource) {
|
||||||
|
|
Loading…
Reference in a new issue