forked from mia/Aegisub
Update documentation according to changes in r3831.
Originally committed to SVN as r3832.
This commit is contained in:
parent
abd2597d0f
commit
e38b00fb51
2 changed files with 4 additions and 5 deletions
|
@ -84,9 +84,8 @@ public:
|
||||||
virtual wxString GetDecoderName() { return L"Unknown"; }
|
virtual wxString GetDecoderName() { return L"Unknown"; }
|
||||||
|
|
||||||
|
|
||||||
/// @brief // How many frames does this provider want Aegisub to cache? Set to 0 if it doesn't require caching.
|
/// @brief Does this provider want Aegisub to cache video frames?
|
||||||
/// @return
|
/// @return Returns true if caching is desired, false otherwise.
|
||||||
///
|
|
||||||
virtual bool WantsCaching() { return false; }
|
virtual bool WantsCaching() { return false; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -98,8 +98,8 @@ public:
|
||||||
/// @brief Gets the name of the provider
|
/// @brief Gets the name of the provider
|
||||||
/// @return Returns "FFmpegSource".
|
/// @return Returns "FFmpegSource".
|
||||||
wxString GetDecoderName() { return L"FFmpegSource"; }
|
wxString GetDecoderName() { return L"FFmpegSource"; }
|
||||||
/// @brief Gets the number of frames to cache.
|
/// @brief Gets the desired cache behavior.
|
||||||
/// @return Returns 8.
|
/// @return Returns true.
|
||||||
bool WantsCaching() { return true; }
|
bool WantsCaching() { return true; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue