From 945c1b2bcd19abdb531587019f82d8d26a1e0abc Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Sun, 19 Aug 2007 05:50:28 +0000 Subject: [PATCH] Added a new method to the video provider interface (unimplemented). Originally committed to SVN as r1516. --- aegisub/video_provider.h | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/video_provider.h b/aegisub/video_provider.h index 21698ebf9..e0fe44def 100644 --- a/aegisub/video_provider.h +++ b/aegisub/video_provider.h @@ -96,6 +96,7 @@ public: virtual void OverrideFrameTimeList(wxArrayInt list) {} // Override the list with the provided one, for VFR handling virtual bool IsNativelyByFrames() { return false; } virtual wxString GetWarning() { return _T(""); } + virtual wxString GetDecoderName() { return _("Unknown"); } };