diff --git a/aegisub/FFmpegSource2/ffms2.html b/aegisub/FFmpegSource2/ffms2.html
index c8bb7a508..84f71d8cf 100644
--- a/aegisub/FFmpegSource2/ffms2.html
+++ b/aegisub/FFmpegSource2/ffms2.html
@@ -13,8 +13,8 @@ Opens files using ffmpeg and nothing else. May be frame accurate on good days. T
Known issues
- Requires Haali's Media Splitter if ogm or mpeg ps/ts is to be opened.
-- Avi files with NVOPs (rarely occurs in xvid and such) will desync when these frames are encountered. Remux to mkv/mp4 before opening to solve it for now.
-- The audio sources still aren't sample accurate and sometimes exhibit many interesting issues. Dumping the audio during indexing is the only workaround.
+
- Avi files with NVOPs (sometimes occurs in xvid and such) will desync when these frames are encountered. Remux to mkv/mp4 before opening to solve it for now.
+- The audio sources still aren't sample accurate and sometimes exhibit many interesting issues. This is however more likely to be an issues when not using a 32bit windows compile. Dumping the audio during indexing is the only workaround.
Compatibility - Video
@@ -22,10 +22,10 @@ Opens files using ffmpeg and nothing else. May be frame accurate on good days. T
AVI, MKV, MP4, FLV: Frame accurate
WMV: Frame accurate(?) but avformat seems to pick keyframes relatively far away
OGM: Frame accurate(?)
-VOB: No rff flags applied, frame accurate?
+VOB: No rff flags applied
MPG: Seeking seems to be off by one or two frames now and then
M2TS, TS: Seeking seems to be off a few frames here and there
-Image files: Most formats can be opened if seekmode=-1 is set
+Image files: Most formats can be opened if seekmode=-1 is set, no animation support
Compatibility - Audio
@@ -237,7 +237,7 @@ Note that --enable-w32threads is required for multithreaded decoding to work.
Improved the audio decoding quality a lot by adding a simple cache, no more seeking is done when playing a file linearly and pops and other artifacts should be much more uncommon
Fixed a bug that would most of the time drop frame 0 and sometimes frame 1
Updated Haali's matroska parser code to the latest version
-Updated FFmpeg to rev X
+Updated FFmpeg to rev 18774
diff --git a/aegisub/FFmpegSource2/ffmsindex.cpp b/aegisub/FFmpegSource2/ffmsindex.cpp
index f33d3b944..12e59b8dd 100644
--- a/aegisub/FFmpegSource2/ffmsindex.cpp
+++ b/aegisub/FFmpegSource2/ffmsindex.cpp
@@ -24,10 +24,6 @@
#include
#include "ffms.h"
-#if _MSC_VER >= 1200
-#pragma comment(lib,"ffms2.lib")
-#endif /* _MSC_VER */
-
int TrackMask;
int DumpMask;
bool Overwrite;